/*
Template Name: Maxton Landing Page
Author: codervent
Email: codervent@gmail.com
File: main.scss

Table of Index 

  --Genral
  --aligns
  --dropdown animation
  --header
  --mini sidebar
  --main content
  --page footer
  --Metis Menu
  --order offcanvas
  --utilities
  --alerts
  --authentication
  --switcher

*/
/* Genral*/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
body {
  position: relative;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.5px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

input::-moz-placeholder {
  color: #000 !important;
  opacity: 0.3 !important;
}

input::placeholder {
  color: #000 !important;
  opacity: 0.3 !important;
}

/* aligns */
.bg-section {
  background-color: #f8f9fa !important;
}

/* dropdown animation */
@keyframes animdropdown {
  from {
    transform: translate3d(0, 6px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/*header*/
.top-header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  height: 70px;
  position: fixed;
  border-bottom: 0px solid var(--bs-border-color);
  left: 0px;
  right: 0;
  top: 0;
  padding: 0 0rem;
  z-index: 11;
  transition: ease-out 0.3s;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.top-header .navbar {
  width: 100%;
}
.top-header .navbar .logo-header {
  width: auto;
  height: auto;
  padding: 0;
  gap: 0.5rem;
  z-index: 5;
  position: relative;
  border-right: 0px solid var(--bs-border-color-translucent);
  border-left: 0px solid var(--bs-border-color-translucent);
}
.top-header .navbar .dropdown-menu {
  border-radius: 1rem;
  border: 0;
  animation: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s normal forwards 1 animdropdown;
}
.top-header .btn-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.top-header .btn-toggle a:hover, .top-header .btn-toggle a:focus {
  background-color: #efefef;
}
.top-header .nav-right-links .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.top-header .nav-right-links .nav-link:hover, .top-header .nav-right-links .nav-link:focus {
  background-color: #efefef;
}

.dropdown-menu {
  border-radius: 1rem;
  border: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.chip {
  display: inline-block;
  height: 32px;
  padding: 0 12px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  background-color: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  transition: all 0.3s linear;
  box-shadow: none;
}
.chip img {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 8px 0 -12px;
  border-radius: 50%;
}

.chip.chip-md {
  height: 42px;
  line-height: 42px;
  border-radius: 21px;
}
.chip.chip-md img {
  height: 42px;
  width: 42px;
}

/* main content */
.main-wrapper {
  margin-top: 70px;
  transition: ease-out 0.3s;
}
.main-wrapper .main-content {
  padding: 0rem;
}
.main-wrapper .main-content .breadcrumb-title {
  font-size: 20px;
  border-right: 1.5px solid #aaa4a4;
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb li.breadcrumb-item {
  font-size: 16px;
}
.main-wrapper .main-content .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  font-family: "Material Icons Outlined";
  content: "\e88a";
}
.main-wrapper .main-content .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #f2f2f3;
  cursor: pointer;
}
.main-wrapper .main-content .badge-icon .badge-number {
  width: 20px;
  height: 20px;
  background-color: #ff1717;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  padding: 1px;
}
.main-wrapper .main-content .sharelink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.main-wrapper .main-content .sharelink:hover, .main-wrapper .main-content .sharelink:focus {
  background-color: #efefef;
}
.main-wrapper .main-content .options {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
}
.main-wrapper .main-content .options:hover, .main-wrapper .main-content .options:focus {
  background-color: #efefef;
}
.main-wrapper .main-content .dropdown-menu-share {
  width: -moz-max-content;
  width: max-content;
}
.main-wrapper .main-content .vertical-pills button {
  width: 100%;
  text-align: left;
  border-radius: 0%;
}
.main-wrapper .main-content .vertical-pills .nav-link {
  border-bottom: 1px solid #dee2e6;
  color: #5d5d5d;
}
.main-wrapper .main-content .vertical-pills .nav-link:last-child {
  border-bottom: 0px solid #dee2e6;
}
.main-wrapper .main-content .vertical-pills .nav-link.active {
  color: #ffffff;
}
.main-wrapper .main-content .customer-notes {
  height: 480px;
  position: relative;
  overflow-y: scroll;
}
.main-wrapper .main-content .lable-table {
  text-transform: uppercase;
  padding: 1px 8px;
}
.main-wrapper .main-content .customer-table table thead {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
}
.main-wrapper .main-content .customer-table table .customer-name {
  color: #000000;
}
.main-wrapper .main-content .product-table table thead {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
}
.main-wrapper .main-content .product-table table .product-category {
  font-size: 0.8rem;
  color: #878d96;
}
.main-wrapper .main-content .product-table table .product-title {
  font-size: 0.97rem;
  color: #2f353c;
}
.main-wrapper .main-content .product-table table .product-tags {
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.main-wrapper .main-content .product-table table .product-tags .btn-tags {
  font-size: 0.75rem;
  background-color: #f6f6f6;
  color: #000000;
  padding: 2px 10px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}
.main-wrapper .main-content .product-table table .product-rating {
  font-size: 0.8rem;
  background-color: #ffffff;
  padding: 2px 5px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  font-weight: 500;
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.section-title .section-title-name:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background-color: #474747;
  left: 0;
  right: 0;
  bottom: 0;
  top: 60px;
  margin: auto;
}

.separator {
  display: flex;
  align-items: center;
}
.separator .line {
  height: 1px;
  flex: 1;
  background-color: #dee2e6;
}
.separator p {
  padding: 0 1rem;
}

.review-desc {
  width: 400px;
}

.auth-cover-left, .auth-cover-right {
  display: flex;
  background-color: #ffffff;
  min-height: 100vh;
}

.auth-cover-right {
  background-color: #ffffff;
}

.auth-social-login {
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: start;
}

.order-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.order-delete:hover, .order-delete:focus {
  background-color: #efefef;
}

/*page footer*/
.page-footer {
  background-color: #ffffff;
}
.page-footer .footer-links a {
  color: #212529;
}

.back-to-top {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 26px;
  color: #fff;
  position: fixed;
  border-radius: 10px;
  bottom: 20px;
  right: 12px;
  background-image: linear-gradient(310deg, #00c6fb 0%, #005bea 100%) !important;
  background-color: #008cff;
  z-index: 5;
}
.back-to-top:hover {
  color: #fff;
  background-color: #000;
  transition: all 0.5s;
}

.btn-switcher {
  transform: rotate(90deg);
  right: -50px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.user-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  right: -50px;
  top: 16px;
  background-color: #050505;
}

/* order offcanvas */
.order-title {
  font-size: 15px;
}

/* utilities */
.subscribe-control .form-control {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.subscribe-control .btn {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.bg-call-to-action {
  background-image: url(https://placehold.co/1200x800/png);
  background-attachment: fixed;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #005bea;
}

.primaery-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}
.primaery-menu-close:hover, .primaery-menu-close:focus {
  background-color: #efefef;
}

.dropdown-toggle-nocaret:after {
  display: none;
}

.dropup .dropdown-toggle-nocaret:after {
  display: none;
}

.w-260 {
  width: 300px !important;
}

.h-70 {
  height: 70px !important;
}

.h-370 {
  height: 370px;
}

.f-14 {
  font-size: 14px;
}

.raised {
  box-shadow: var(--mdc-protected-button-container-elevation, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));
}

.wh-42 {
  width: 42px;
  height: 42px;
}

.wh-48 {
  width: 48px;
  height: 48px;
}

.wh-64 {
  width: 64px;
  height: 64px;
}

.wh-120 {
  width: 120px;
  height: 120px;
}

.font-45 {
  font-size: 45px;
}

.font-text1 {
  font-size: 0.8rem;
}

.font-text2 {
  font-size: 0.7rem;
}

.piechart-legend {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

.theme-icons {
  background-color: #fff;
}

.user-list {
  position: relative;
  height: 400px;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error {
  color: #fe1010;
}

.dash-lable {
  font-size: 14px;
  padding: 2px 7px;
  background-color: #f3f3f3;
  width: -moz-max-content;
  width: max-content;
}

form select.error,
form textarea.error,
form input.error,
form input.error:focus,
form textarea.error:focus,
form select.error:focus {
  border-color: #fe1010 !important;
}

/* alerts */
.alert-border-primary {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #008cff;
}

.alert-border-secondary {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #6c757d;
}

.alert-border-success {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #02c27a;
}

.alert-border-danger {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #fc185a;
}

.alert-border-warning {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #fbb513;
}

.alert-border-info {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #0dcaf0;
}

.alert-border-dark {
  border: 1px solid var(--bs-gray-400);
  border-left: 5px solid #212529;
}

.bg-error {
  background-image: url("../assets/images/auth/error-bg.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.error-title {
  font-size: 140px;
  line-height: 140px;
  text-transform: uppercase;
  font-weight: bold;
}

.error-sub-title {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
}

.contacts-social a {
  font-size: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: #fff;
  border: 1px solid #eeecec;
  text-align: center;
  border-radius: 50%;
  color: #2b2a2a;
}

.chart-container1 {
  position: relative;
  height: 350px;
}

.chart-container2 {
  position: relative;
  height: 138px;
}

.gmaps,
.gmaps-panaroma {
  height: 400px;
  background: #eee;
  border-radius: 3px;
}

/* authentication */
.border-gradient-1 {
  -o-border-image: linear-gradient(to right, #7928ca, #ff0080, #04e09a, #e0d504) 1;
     border-image: linear-gradient(to right, #7928ca, #ff0080, #04e09a, #e0d504) 1;
}

.auth-basic-wrapper {
  width: auto;
  height: auto;
}
@media (min-width: 1024px) {
  .auth-basic-wrapper {
    height: 100vh;
  }
}

.bg-login, .bg-reset-password, .bg-forgot-password, .bg-register {
  background-image: url(../assets/images/auth/bg-login.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-register {
  background-image: url(../assets/images/auth/bg-register.png);
}

.bg-forgot-password {
  background-image: url(../assets/images/auth/bg-forgot.png);
}

.bg-reset-password {
  background-image: url(../assets/images/auth/bg-reset-password.png);
}

/* email box */
.email-wrapper {
  width: auto;
  height: 600px;
  overflow: hidden;
  border-radius: 0.25rem;
  position: relative;
  background: #fff;
  box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);
}

.email-sidebar {
  width: 250px;
  height: 100%;
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.email-sidebar-header {
  width: auto;
  height: auto;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 0 solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  padding: 15px;
}

.email-navigation {
  position: relative;
  padding: 0;
  height: 345px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.email-navigation a.list-group-item {
  color: #404142;
  padding: 0.35rem 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease-out;
}
.email-navigation a.list-group-item:hover {
  background-color: rgba(13, 110, 253, 0.12);
}
.email-navigation a.list-group-item.active {
  color: #0b5ed7;
  font-weight: 600;
  background-color: rgba(13, 110, 253, 0.12);
}

.email-header {
  position: absolute;
  height: 70px;
  left: 250px;
  right: 0;
  top: 0;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-right-radius: 0.25rem;
  z-index: 1;
}

.email-content {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  top: 70px;
  height: auto;
  margin-left: 250px;
  padding: 0;
  background: #fff;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.email-meeting {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.email-meeting a.list-group-item {
  color: #404142;
  padding: 0.35rem 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.email-meeting a.list-group-item:hover {
  background-color: rgba(0, 123, 255, 0.15);
  transition: all 0.3s ease-out;
}

.email-hangout .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 45px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}

.email-toggle-btn {
  width: auto;
  height: auto;
  margin-right: 10px;
  text-align: center;
  font-size: 24px;
  color: #404142;
  border-radius: 0;
  cursor: pointer;
  background-color: #fff;
  border: 0 solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  .email-toggle-btn {
    display: none;
  }
}

.email-actions {
  width: 230px;
}

.email-time {
  font-size: 13px;
  color: #6c757d;
}

.email-list {
  position: relative;
  height: 530px;
}
.email-list div.email-message {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #383a3c;
}
.email-list div.email-message:hover {
  transition: all 0.2s ease-out;
  background-color: #eceef1;
}

.email-star {
  color: #6c757d;
}

.email-read-box {
  position: relative;
  height: 530px;
}

.compose-mail-popup {
  width: 42%;
  position: fixed;
  bottom: -30px;
  right: 30px;
  z-index: 15;
  display: none;
}

.compose-mail-toggled {
  display: block;
}

.compose-mail-title {
  font-size: 16px;
}

.compose-mail-close {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0);
}
.compose-mail-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* chat box */
.chat-wrapper {
  width: auto;
  height: 600px;
  border-radius: 0.25rem;
  position: relative;
  background: #fff;
  box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.1);
}

.chat-sidebar {
  width: 340px;
  height: 100%;
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.chat-sidebar-header {
  width: auto;
  height: auto;
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 0 solid rgba(0, 0, 0, 0.125);
  border-top-left-radius: 0.25rem;
  padding: 15px;
}
.chat-sidebar-header .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}

.chat-sidebar-content {
  padding: 0;
}

.chat-user-online {
  position: relative;
}

.chat-list {
  position: relative;
  height: 300px;
}
.chat-list .chat-user-online:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 36px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  background: #16e15e;
}
.chat-list .list-group-item {
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: transparent;
}
.chat-list .list-group-item:hover {
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: rgba(13, 110, 253, 0.12);
}
.chat-list .list-group-item.active {
  background-color: rgba(13, 110, 253, 0.12);
}

.chat-content {
  margin-left: 340px;
  padding: 85px 15px 15px 15px;
  position: relative;
  width: auto;
  height: 520px;
}

.chat-header {
  position: absolute;
  height: 70px;
  left: 340px;
  right: 0;
  top: 0;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top-right-radius: 0.25rem;
  z-index: 1;
}

.chat-footer {
  position: absolute;
  height: 70px;
  left: 340px;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom-right-radius: 0.25rem;
}

.chat-footer-menu {
  display: none;
}
.chat-footer-menu a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  border-radius: 50%;
  margin: 3px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  .chat-footer-menu {
    display: block;
  }
}

.chat-tab-menu li a.nav-link {
  padding: 0.3rem 0.2rem;
  line-height: 1.2;
  color: #4a4b4c;
}

.chat-tab-menu .nav-pills .nav-link.active,
.chat-tab-menu .nav-pills .show > .nav-link {
  color: #008cff;
  background-color: rgba(0, 123, 255, 0);
}

.chat-title {
  font-size: 14px;
  color: #272b2f;
}

.chat-msg {
  font-size: 13px;
  color: #6c757d;
}

.chat-time {
  font-size: 13px;
  color: #6c757d;
}

.chart-online {
  color: #16e15e;
}

.chat-top-header-menu {
  display: none;
}
.chat-top-header-menu a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  border-radius: 50%;
  margin: 3px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  .chat-top-header-menu {
    display: block;
  }
}

.chat-content-leftside .chat-left-msg {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eff2f5;
  padding: 0.8rem;
  border-radius: 12px;
  max-width: 480px;
  text-align: left;
  border-top-left-radius: 0;
  color: #fff;
}

.chat-content-rightside .chat-right-msg {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #dcedff;
  padding: 0.8rem;
  border-radius: 12px;
  float: right;
  max-width: 480px;
  text-align: left;
  border-bottom-right-radius: 0;
  color: #fff;
}

.chat-toggle-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  text-align: center;
  font-size: 24px;
  color: #6c757d;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (min-width: 1280px) {
  .chat-toggle-btn {
    display: none;
  }
}

/* file manager */
.fm-menu .list-group a {
  font-size: 16px;
  color: #5f5f5f;
  display: flex;
  align-items: center;
}
.fm-menu .list-group a i {
  font-size: 23px;
}
.fm-menu .list-group a:hover {
  background: #008cff;
  color: #fff;
  transition: all 0.2s ease-out;
}

.fm-file-box {
  font-size: 25px;
  background: #e9ecef;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.fm-icon-box {
  font-size: 32px;
  background: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.user-plus {
  width: 33px;
  height: 33px;
  margin-left: -14px;
  line-height: 33px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  cursor: pointer;
  border: 1px dotted #a9b2bb;
  color: #404142;
}

.user-groups img {
  margin-left: -14px;
  border: 1px solid #e4e4e4;
  padding: 2px;
  cursor: pointer;
}

/* switcher */
.form-check-img {
  max-width: 100%;
  height: auto;
}

.form-check-label-highlighter .form-check-input:checked[type=checkbox] ~ .form-check-label,
.form-check-label-highlighter .form-check-input:checked[type=radio] ~ .form-check-label {
  border-color: #377dff;
}

.welcome-back-img {
  position: relative;
}
@media (min-width: 1280px) {
  .welcome-back-img {
    position: absolute;
    bottom: 0;
    right: 2rem;
  }
}

/* DESCARD landing modernization */
:root,
[data-bs-theme=light] {
  --des-surface-page: #f4f7fb;
  --des-surface-muted: #eef3f9;
  --des-surface-card: #ffffff;
  --des-surface-elevated: #ffffff;
  --des-border: #dbe4ef;
  --des-text-primary: #0f172a;
  --des-text-secondary: #475569;
  --des-accent: #2563eb;
  --des-accent-soft: #dbeafe;
  --des-section-edge: rgba(37, 99, 235, 0.14);
  --des-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --des-shadow-elevated: 0 14px 28px rgba(15, 23, 42, 0.08);
  --des-shadow-inset: inset 0 8px 18px rgba(148, 163, 184, 0.18), inset 0 -6px 14px rgba(255, 255, 255, 0.65);
  --des-shadow-card-hover: 0 16px 30px rgba(15, 23, 42, 0.12);
  --des-radius-sm: 0.75rem;
  --des-radius-md: 1rem;
  --des-radius-lg: 1.15rem;
}

[data-bs-theme=dark] {
  --des-surface-page: #04070d;
  --des-surface-muted: #090f17;
  --des-surface-card: #111822;
  --des-surface-elevated: #0b1320;
  --des-border: #1f2d3f;
  --des-text-primary: #e8f1ff;
  --des-text-secondary: #9eb4cc;
  --des-accent: #7cc4ff;
  --des-accent-soft: rgba(124, 196, 255, 0.2);
  --des-section-edge: rgba(124, 196, 255, 0.22);
  --des-shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.45);
  --des-shadow-elevated: 0 16px 32px rgba(0, 0, 0, 0.46);
  --des-shadow-inset: inset 0 10px 20px rgba(3, 8, 16, 0.78), inset 0 -8px 16px rgba(30, 41, 59, 0.42);
  --des-shadow-card-hover: 0 20px 36px rgba(0, 0, 0, 0.54);
}

html {
  scroll-padding-top: 90px;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  background: radial-gradient(circle at top right, var(--des-accent-soft) 0, transparent 45%), var(--des-surface-page);
  color: var(--des-text-secondary);
  font-size: clamp(15px, 0.35vw + 14px, 16px);
  line-height: 1.65;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title-name,
.brand-wordmark {
  color: var(--des-text-primary);
}

.brand-wordmark {
  letter-spacing: 0.06em;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 25px;
  object-fit: contain;
}

.offcanvas .offcanvas-header .brand-logo {
  max-height: 21px;
}

.banner-heading {
  font-size: clamp(1.85rem, 2.4vw + 1rem, 3rem);
}

.banner-paragraph {
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.25rem);
  color: color-mix(in srgb, var(--des-text-secondary) 92%, var(--des-text-primary));
}

.top-header {
  background-color: color-mix(in srgb, var(--des-surface-card) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--des-border);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--des-surface-page) 70%, transparent) !important;
}

.main-wrapper {
  margin-top: 70px;
}

.main-wrapper section.py-5 {
  position: relative;
  background-color: var(--des-surface-elevated);
  border: 1px solid color-mix(in srgb, var(--des-border) 75%, transparent);
  border-radius: var(--des-radius-lg);
  box-shadow: var(--des-shadow-elevated);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.main-wrapper section.py-5:first-of-type {
  margin-top: 0;
}

.main-wrapper section.py-5 + section.py-5 {
  margin-top: 0;
}

.main-wrapper section.py-5:last-of-type {
  margin-bottom: 0;
}

.main-wrapper section.py-5:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0, var(--des-section-edge) 50%, transparent 100%);
  opacity: 0.28;
  pointer-events: none;
}

.main-wrapper section.py-5:nth-of-type(even) {
  background-color: color-mix(in srgb, var(--des-surface-muted) 62%, var(--des-surface-page));
  box-shadow: var(--des-shadow-inset);
}

.main-wrapper section.py-5:nth-of-type(odd) {
  box-shadow: var(--des-shadow-elevated);
}

.main-wrapper section.py-5.bg-section {
  background-color: color-mix(in srgb, var(--des-surface-muted) 72%, var(--des-surface-page)) !important;
}

#home.hero-section {
  background: radial-gradient(circle at 22% 18%, color-mix(in srgb, var(--des-accent) 28%, #ffffff) 0, transparent 44%), radial-gradient(circle at 82% 24%, color-mix(in srgb, #7fd4ff 34%, transparent) 0, transparent 46%), radial-gradient(circle at 58% 78%, color-mix(in srgb, #b7deff 26%, transparent) 0, transparent 42%), linear-gradient(135deg, color-mix(in srgb, var(--des-surface-elevated) 88%, #ffffff) 0, color-mix(in srgb, var(--des-surface-page) 92%, #f2f8ff) 100%);
  border-color: color-mix(in srgb, var(--des-accent) 26%, var(--des-border));
  box-shadow: 0 26px 58px color-mix(in srgb, var(--des-accent) 18%, transparent), var(--des-shadow-elevated);
}

#home.hero-section:before,
#home.hero-section:after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

#home.hero-section:before {
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--des-accent) 46%, #ffffff) 0, transparent 74%);
}

#home.hero-section:after {
  bottom: -220px;
  right: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--des-accent) 42%, #bfe4ff) 0, transparent 76%);
}

#home.hero-section > .container:before {
  content: "";
  position: absolute;
  top: 42%;
  left: 46%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--des-accent) 32%, #d9ecff) 0, transparent 74%);
  filter: blur(58px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

#home.hero-section .banner-heading {
  line-height: 1.15;
  letter-spacing: -0.01em;
}

#home.hero-section .banner-paragraph {
  max-width: 38ch;
}

.card {
  background: var(--des-surface-card);
  border: 1px solid var(--des-border);
  box-shadow: var(--des-shadow-soft);
  border-radius: var(--des-radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--des-shadow-card-hover);
}

.btn-grd,
.btn-grd-primary,
.btn-grd-info,
.btn-grd-success,
.btn-grd-danger {
  background-image: none !important;
  border: 1px solid color-mix(in srgb, var(--des-accent) 45%, var(--des-border));
  background-color: var(--des-accent);
  color: #fff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--des-accent) 30%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  border-radius: 0.9rem;
}

.btn-grd:hover,
.btn-grd-primary:hover,
.btn-grd-info:hover,
.btn-grd-success:hover,
.btn-grd-danger:hover {
  background-color: color-mix(in srgb, var(--des-accent) 85%, #000);
  box-shadow: 0 12px 22px color-mix(in srgb, var(--des-accent) 34%, transparent);
  transform: translateY(-1px);
  color: #fff;
}

.btn-light {
  border-color: var(--des-border);
  background-color: var(--des-surface-card);
  color: var(--des-text-primary);
  border-radius: 0.9rem;
}

.btn-outline-light {
  border-color: color-mix(in srgb, var(--des-accent) 50%, var(--des-border));
  color: var(--des-text-primary);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-light:hover,
.btn-light:hover {
  background-color: var(--des-accent-soft);
  border-color: color-mix(in srgb, var(--des-accent) 45%, var(--des-border));
  color: var(--des-text-primary);
}

[data-bs-theme=dark] .btn-outline-light {
  color: var(--des-text-primary);
}

[data-bs-theme=dark] .btn-light {
  background-color: var(--des-surface-muted);
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--des-text-secondary) 60%, transparent) !important;
  opacity: 1 !important;
}

.form-control,
.form-select {
  background-color: var(--des-surface-card);
  border-color: var(--des-border);
  color: var(--des-text-primary);
}

.form-control:focus,
.form-select:focus {
  border-color: color-mix(in srgb, var(--des-accent) 60%, var(--des-border));
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--des-accent) 22%, transparent);
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: clamp(0.98rem, 0.24vw + 0.92rem, 1.08rem);
}

.main-wrapper section.py-5 > .container {
  position: relative;
  z-index: 1;
}

.section-title .section-title-name {
  position: relative;
  display: inline-block;
  font-size: clamp(1.45rem, 1.25vw + 1rem, 2.15rem);
}

.section-title .section-title-name:after {
  background-color: var(--des-accent);
  height: 2px;
  top: auto;
  bottom: -6px;
}

.feature-icon {
  width: 56px;
  height: 56px;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--des-radius-md);
  border: 1px solid var(--des-border);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-grid a:hover img {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--des-accent) 30%, var(--des-border));
  box-shadow: 0 16px 28px color-mix(in srgb, var(--des-accent) 11%, transparent);
}

.hero-media {
  min-height: 440px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.4rem 0.5rem 0.4rem 1rem;
}

.hero-media img {
  width: min(100%, 540px);
  height: clamp(320px, 40vw, 500px);
  padding: 16px 14px 16px 20px;
  box-sizing: border-box;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--des-accent) 25%, var(--des-border));
  object-fit: contain;
  object-position: right center;
  background-color: transparent;
  box-shadow: var(--des-shadow-soft);
}

#home.hero-section .hero-media img {
  mix-blend-mode: multiply;
  box-shadow: 0 26px 54px color-mix(in srgb, var(--des-accent) 17%, transparent), var(--des-shadow-soft);
}

#home .hero-highlights .card {
  border: 1px solid color-mix(in srgb, var(--des-accent) 26%, var(--des-border));
  background: linear-gradient(165deg, color-mix(in srgb, var(--des-surface-card) 96%, #ffffff) 0, color-mix(in srgb, var(--des-surface-page) 88%, #ffffff) 100%);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--des-accent) 12%, transparent), var(--des-shadow-soft);
  border-radius: 1.1rem;
}

#home .hero-highlights .card .card-body h5 {
  color: var(--des-text-primary);
  letter-spacing: 0.01em;
}

#home .hero-highlights .card .card-body p {
  color: var(--des-text-secondary);
  line-height: 1.65;
}

.stat-card {
  border: 1px solid var(--des-border);
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  background: color-mix(in srgb, var(--des-surface-card) 88%, transparent);
}

.cta-card {
  border-radius: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--des-accent) 40%, var(--des-border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--des-accent) 12%, var(--des-surface-card)) 0, var(--des-surface-card) 75%);
}

.contact-link {
  text-decoration: none;
  color: var(--des-text-primary);
  overflow-wrap: anywhere;
}

.contact-link:hover {
  color: var(--des-accent);
}

.pricing-section {
  background: #ffffff !important;
  border-color: color-mix(in srgb, var(--des-accent) 18%, var(--des-border));
  box-shadow: 0 24px 44px color-mix(in srgb, var(--des-accent) 10%, transparent), 0 -14px 30px color-mix(in srgb, var(--des-accent) 7%, transparent);
  z-index: 3;
}

.pricing-section .section-subtitle {
  max-width: 700px;
}

.pricing-card {
  border: 1px solid color-mix(in srgb, var(--des-border) 86%, transparent);
  box-shadow: var(--des-shadow-soft);
}

.pricing-featured {
  border-color: color-mix(in srgb, var(--des-accent) 44%, var(--des-border));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--des-accent) 18%, transparent), var(--des-shadow-soft);
  transform: translateY(-6px);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  color: var(--des-accent);
  background-color: color-mix(in srgb, var(--des-accent) 14%, #ffffff);
}

.pricing-price {
  font-size: clamp(1.65rem, 1.4vw + 1rem, 2.25rem);
  font-weight: 700;
  color: var(--des-text-primary);
  line-height: 1.1;
}

.pricing-price span {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--des-text-secondary);
  margin-left: 0.15rem;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--des-text-secondary);
}

.pricing-list li:last-child {
  margin-bottom: 0;
}

.pricing-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--des-accent) 78%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--des-accent) 16%, transparent);
}

.map-card {
  border-color: color-mix(in srgb, var(--des-accent) 20%, var(--des-border));
  overflow: hidden;
}

.contact-map-embed {
  width: 100%;
  min-height: 300px;
  height: 100%;
  border: 0;
  display: block;
}

.theme-toggle-btn {
  min-height: 42px;
  border-color: color-mix(in srgb, var(--des-border) 80%, transparent);
}

.mobile-theme-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
}

.mobile-theme-toggle i {
  font-size: 20px;
  line-height: 1;
}

.top-header .btn-toggle {
  display: inline-flex;
}

.top-header .btn-toggle a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--des-border);
  border-radius: 999px;
  color: var(--des-text-primary);
  background-color: var(--des-surface-card);
}

.top-header .btn-toggle a:hover {
  background-color: var(--des-accent-soft);
}

.offcanvas {
  --bs-offcanvas-bg: var(--des-surface-card);
  background-color: var(--des-surface-card);
  color: var(--des-text-primary);
}

.offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--des-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.offcanvas .offcanvas-body {
  padding-top: 0.75rem;
  padding-bottom: 0.9rem;
  overflow-y: auto;
  display: block !important;
  min-height: calc(100dvh - 70px);
  background-color: var(--des-surface-card);
}

.offcanvas .navbar-nav {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.offcanvas .navbar-nav .nav-item {
  width: 100%;
  display: block !important;
}

.offcanvas .navbar-nav .nav-link {
  display: flex !important;
  align-items: center;
  min-height: 46px;
  border-radius: 0.75rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--des-text-primary);
}

.offcanvas .navbar-nav .nav-link .menu-title {
  width: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

.offcanvas .primary-menu {
  background-color: var(--des-surface-card);
}

[data-bs-theme=dark] {
  color-scheme: dark;
}

[data-bs-theme=dark] body {
  background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.2) 0, transparent 45%), var(--des-surface-page);
}

[data-bs-theme=dark] .top-header,
[data-bs-theme=dark] .offcanvas,
[data-bs-theme=dark] .page-footer,
[data-bs-theme=dark] .card,
[data-bs-theme=dark] .stat-card,
[data-bs-theme=dark] .cta-card {
  box-shadow: none;
}

[data-bs-theme=dark] .offcanvas .btn-close {
  filter: invert(1) grayscale(100%) brightness(180%);
}

[data-bs-theme=dark] .main-wrapper section.py-5 {
  background-color: #060b12;
  border-color: color-mix(in srgb, var(--des-border) 78%, transparent);
}

[data-bs-theme=dark] .main-wrapper section.py-5.bg-section {
  background-color: #0a111b !important;
}

[data-bs-theme=dark] .main-wrapper section.py-5:nth-of-type(even) {
  background-color: #0b121d;
}

.hero-cta-group .btn,
.contact-cta-group .btn {
  justify-content: center;
  border-radius: 0.9rem !important;
}

.primary-menu .navbar-nav .nav-link.active {
  background-color: color-mix(in srgb, var(--des-accent) 18%, transparent);
  color: var(--des-text-primary);
}

.page-footer {
  position: relative;
  margin-top: 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--des-accent) 28%, var(--des-border));
  border-radius: 1.15rem 1.15rem 0 0;
  background: radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--des-accent) 22%, transparent) 0, transparent 42%), radial-gradient(circle at 88% 0, color-mix(in srgb, #8ed8ff 26%, transparent) 0, transparent 40%), linear-gradient(140deg, color-mix(in srgb, var(--des-surface-card) 96%, #ffffff) 0, color-mix(in srgb, var(--des-surface-muted) 84%, #ffffff) 100%);
  box-shadow: 0 -10px 28px color-mix(in srgb, var(--des-accent) 10%, transparent);
  overflow: hidden;
}

.page-footer:before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--des-accent) 26%, #d9ecff) 0, transparent 72%);
  filter: blur(44px);
  opacity: 0.75;
  pointer-events: none;
}

.footer-strip {
  position: relative;
  background: linear-gradient(90deg, color-mix(in srgb, var(--des-surface-muted) 90%, #ffffff) 0, color-mix(in srgb, var(--des-surface-card) 92%, #ffffff) 100%);
  border-top: 1px solid color-mix(in srgb, var(--des-accent) 18%, var(--des-border));
}

.footer-links a,
.page-footer a {
  color: var(--des-text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.page-footer a:hover {
  color: var(--des-accent);
  transform: translateX(2px);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.store-badge-link {
  display: inline-flex;
  border-radius: 0.65rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.store-badge-image {
  display: block;
  width: auto;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
}

#contact .card {
  border-color: color-mix(in srgb, var(--des-accent) 20%, var(--des-border));
}

#contact .form-label {
  font-weight: 600;
  color: var(--des-text-primary);
}

.back-to-top {
  background-image: none !important;
  background-color: var(--des-accent);
}

.back-to-top:hover {
  background-color: color-mix(in srgb, var(--des-accent) 80%, #000);
}

.primary-menu .navbar-nav .nav-link {
  border-bottom: 1px solid var(--des-border);
  color: var(--des-text-secondary);
}

.primary-menu .navbar-nav .nav-link:hover,
.primary-menu .navbar-nav .nav-link:focus {
  background-color: var(--des-accent-soft);
  color: var(--des-text-primary);
}

@media (min-width: 1200px) {
  .top-header .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  .top-header .offcanvas .offcanvas-header {
    display: none;
  }

  .top-header .offcanvas .offcanvas-body {
    display: flex !important;
    align-items: center;
    flex-grow: 1;
    min-height: auto;
    overflow: visible;
    padding: 0 !important;
    background-color: transparent !important;
  }

  .top-header .offcanvas .primary-menu {
    background-color: transparent;
  }

  .top-header .primary-menu .navbar-nav {
    width: auto;
    flex-direction: row !important;
    align-items: center;
  }

  .top-header .primary-menu .navbar-nav .nav-item {
    width: auto;
  }

  .primary-menu .navbar-nav .nav-link {
    border: 0;
    border-radius: 10px;
  }
}

@media (max-width: 1199.98px) {
  .brand-logo {
    max-height: 30px;
  }

  .pricing-featured {
    transform: none;
  }

  .contact-map-embed {
    min-height: 260px;
  }

  .top-header .offcanvas {
    --bs-offcanvas-bg: var(--des-surface-card);
    background-color: var(--des-surface-card) !important;
  }

  .top-header .offcanvas .offcanvas-header,
  .top-header .offcanvas .offcanvas-body,
  .top-header .offcanvas .primary-menu {
    background-color: var(--des-surface-card) !important;
  }

  .top-header .navbar {
    min-height: 70px;
  }

  .top-header .logo-header {
    margin-right: auto;
  }

  .top-header .d-flex.align-items-center.gap-2 {
    margin-left: auto;
  }

  .top-header .btn-toggle a {
    width: 44px;
    height: 44px;
  }

  .primary-menu .navbar-nav .nav-link {
    min-height: 46px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  #home .btn-lg {
    width: 100%;
  }

  #home.hero-section > .container:before {
    width: 220px;
    height: 220px;
    left: 50%;
    top: 38%;
    opacity: 0.42;
  }

  #home .hero-cta-group {
    margin-top: 1.75rem !important;
  }

  #home .hero-highlights {
    margin-top: 1.25rem !important;
  }

  #home .hero-highlights .card .card-body {
    padding: 1.1rem !important;
  }

  .section-subtitle {
    max-width: 100%;
    padding-inline: 0.15rem;
  }
}

@media (max-width: 767.98px) {
  .pricing-section {
    box-shadow: 0 14px 28px color-mix(in srgb, var(--des-accent) 9%, transparent), 0 -10px 22px color-mix(in srgb, var(--des-accent) 6%, transparent);
  }

  .contact-map-embed {
    min-height: 220px;
  }

  .section-title {
    margin-bottom: 0.8rem;
    padding-bottom: 1.2rem;
  }

  .section-title .section-title-name:after {
    bottom: 0;
  }

  .hero-media {
    min-height: auto;
    justify-content: center;
    padding: 0.25rem 0 0.5rem 0;
  }

  .hero-media img {
    width: min(100%, 360px);
    height: auto;
    max-height: 300px;
    padding: 10px;
    object-position: center center;
  }

  #home.hero-section:before,
  #home.hero-section:after {
    width: 300px;
    height: 300px;
    filter: blur(58px);
    opacity: 0.58;
  }

  #home.hero-section:before {
    top: -120px;
    left: -80px;
  }

  #home.hero-section:after {
    bottom: -140px;
    right: -90px;
  }

  #home.hero-section > .container:before {
    width: 180px;
    height: 180px;
    opacity: 0.34;
    filter: blur(44px);
  }

  #home.hero-section .hero-media img {
    mix-blend-mode: normal;
    box-shadow: 0 16px 30px color-mix(in srgb, var(--des-accent) 12%, transparent), var(--des-shadow-soft);
  }

  .card .card-body {
    padding: 1rem !important;
  }

  #about p,
  #use-cases p,
  #features p {
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    max-height: 27px;
  }

  .store-badges {
    gap: 0.55rem;
  }

  .store-badge-image {
    height: 36px;
    max-width: 132px;
  }

  body {
    font-size: 15px;
  }

  #home.hero-section .banner-heading {
    font-size: 1.7rem;
  }

  #home.hero-section .banner-paragraph {
    font-size: 0.98rem;
  }

  .main-wrapper section.py-5 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
    border-radius: 0.9rem;
  }

  .main-wrapper section.py-5 > .container.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .gallery-grid img {
    aspect-ratio: 4/3;
  }

  #contact .contact-cta-group .btn {
    width: 100%;
  }

  .offcanvas .offcanvas-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .offcanvas .offcanvas-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */