/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 10px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
  transition: 1s;
  overflow-x: clip;
}

.navbar-light .navbar-brand img {
  max-height: 70px;
  transition: 0.5s;
}

.nav-bar .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
  white-space: nowrap;
  line-height: 1.1;
}

.navbar .navbar-nav .nav-link {
  white-space: nowrap;
}

.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  flex-wrap: nowrap;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--bs-primary);
}

@media (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 0;
  }

  .navbar .navbar-nav .nav-item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .navbar .navbar-nav .nav-btn {
    display: flex;
    justify-content: start;
  }

  .navbar .navbar-nav {
    width: 100%;
    display: flex;
    margin-top: 20px;
    padding-bottom: 20px;
    background: var(--bs-light);
    border-radius: 10px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

@media (min-width: 992px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar > .container,
  .navbar > .container-fluid {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .navbar .navbar-brand {
    flex: 0 0 auto;
    margin-right: 0;
  }

  .navbar .navbar-collapse {
    min-width: 0;
    flex: 1 1 auto;
    margin-left: 0.5rem;
  }

  .navbar .nav-btn {
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .navbar .navbar-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
    background: var(--bs-light);
    border-radius: 10px;
    min-width: 0;
    padding: 0 0.75rem;
  }

  .navbar .navbar-nav .nav-btn {
    width: auto;
    flex: 0 0 auto;
    display: flex;
    margin-left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 20px;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
  }
}
/*** Navbar End ***/

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar .navbar-nav .nav-item {
    padding: 15px 8px;
  }

  .navbar .navbar-nav .nav-link {
    font-size: 15px;
  }

  .navbar-contact-cta {
    padding-left: 1rem !important;
  }

  .navbar-contact-cta .btn-lg-square {
    width: 56px;
    height: 56px;
  }

  .navbar-contact-cta span,
  .navbar-contact-cta a span {
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar .navbar-collapse {
    margin-left: 0.25rem;
  }

  .navbar .navbar-nav {
    padding: 0 0.5rem;
  }

  .navbar .navbar-nav .nav-item {
    padding: 15px 7px;
  }

  .navbar .navbar-nav .nav-link {
    font-size: 0.95rem;
  }
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--bs-light);
  color: var(--bs-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  right: 50%;
  transform: translateX(-50%);
  margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-secondary);
  color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }

  .header-carousel .header-carousel-item {
    height: 1300px;
  }
}

@media (max-width: 767px) {
  .header-carousel .header-carousel-item {
    height: 950px;
  }

  .header-carousel .owl-nav .owl-prev {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),
    url(../img/bg-breadcrumb.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.feature .feature-item:hover {
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
  position: relative;
  width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
  z-index: 9;
}

.feature .feature-item .feature-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-dark);
  transition: 0.5s;
  z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
  height: 100%;
}

.feature .feature-item .feature-icon {
  color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
  color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
  color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
  background: var(--bs-white);
  color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}
/*** Feature End ***/

/*** Service Start ***/
.service .service-item {
  border-radius: 10px;
}
.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.1);
}

.service .service-item .service-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(1, 95, 201, 0.2);
  transition: 0.5s;
  z-index: 1;
}

.service .service-item:hover .service-img::after {
  height: 100%;
}

.service .service-item .service-img .service-icon {
  position: absolute;
  width: 70px;
  bottom: 0;
  right: 25px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--bs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 9;
}

.service .service-item .service-img .service-icon i {
  color: var(--bs-primary);
  transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
  transform: rotateX(360deg);
  color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
  bottom: 0;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.service .service-content {
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
  position: relative;
  z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
  transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
  color: var(--bs-white);
}

.service
  .service-item:hover
  .service-content
  .service-content-inner
  .btn.btn-primary {
  color: var(--bs-primary);
  background: var(--bs-white);
}

.service
  .service-item:hover
  .service-content
  .service-content-inner
  .btn.btn-primary:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
  color: var(--bs-dark);
}

.service .service-item .service-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service .service-item:hover .service-content::after {
  height: 100%;
}
/*** Service End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-white);
  background: rgba(1, 95, 201, 0.8);
  font-size: 18px;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--bs-primary);
  background: var(--bs-light);
}
/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover .blog-content {
  background: var(--bs-white);
}

.blog .blog-item .blog-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(1, 95, 201, 0.2);
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  display: inline-flex;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 9;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
  color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-bottom: -100%;
  transition: 0.5s;
  z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
  margin-bottom: 0;
}

.team .team-item .team-title {
  color: var(--bs-white);
  background: var(--bs-primary);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.5s;
}

.team .team-item .team-title h4 {
  color: var(--bs-white);
}

.team .team-item:hover .team-title {
  background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-top: 58px;
  margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}
/*** Testimonial End ***/

/* Custom Slider Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.testimonial-animate-next {
  animation: slideInRight 0.5s ease-out;
}

.testimonial-animate-prev {
  animation: slideInLeft 0.5s ease-out;
}

/*** Contact Start ***/
.contact .contact-img {
  position: relative;
}

.contact .contact-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  animation-name: image-efects;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 0.5s;
}

@keyframes image-efects {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
  }

  50% {
    border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
  }

  75% {
    border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.contact .contact-img .contact-img-inner {
  position: relative;
  z-index: 9;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer.footer-pro {
  background: #ffffff;
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer.footer-pro .footer-item a {
  line-height: 32px;
  color: #5d7392;
  transition: 0.5s;
}

.footer .footer-item a {
  line-height: 32px;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.5s;
}

.footer.footer-pro .footer-item p {
  line-height: 1.7;
  color: #5d7392;
}

.footer .footer-item p {
  line-height: 30px;
}

.footer.footer-pro .footer-item a:hover {
  color: #015fc9;
}

.footer .footer-item a:hover {
  color: #7cc4ff;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
  position: relative;
  overflow: hidden;
}

.footer .footer-item .footer-instagram img {
  transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
  transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
  background: var(--bs-light);
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-white);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: var(--bs-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** copyright end ***/

.hero-premium {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(1, 95, 201, 0.96), rgba(3, 25, 52, 0.96)),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.16),
      transparent 35%
    );
}

.hero-premium::before,
.hero-premium::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-premium::before {
  width: 280px;
  height: 280px;
  top: 40px;
  left: -70px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-premium::after {
  width: 340px;
  height: 340px;
  right: -110px;
  bottom: 10px;
  background: rgba(91, 182, 255, 0.16);
}

.premium-carousel-indicators {
  bottom: -40px;
}

.premium-carousel-indicators-static {
  position: static;
  justify-content: flex-start;
  margin-top: 24px;
}

.premium-carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
}

.premium-carousel-indicators button.active {
  background: #fff;
}

.premium-carousel-control {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.premium-panel,
.premium-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(1, 95, 201, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(14, 30, 68, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.premium-panel::after,
.premium-card::after,
.premium-list-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -34%;
  width: 46%;
  height: 165%;
  transform: rotate(24deg) translate3d(-185%, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(1, 95, 201, 0) 0%,
    rgba(91, 182, 255, 0.08) 18%,
    rgba(1, 95, 201, 0.18) 38%,
    rgba(91, 182, 255, 0.34) 50%,
    rgba(1, 95, 201, 0.18) 64%,
    rgba(91, 182, 255, 0.08) 82%,
    rgba(1, 95, 201, 0) 100%
  );
  box-shadow: 0 0 34px rgba(1, 95, 201, 0.16);
  opacity: 0;
  pointer-events: none;
}

.premium-hero-stage {
  position: relative;
  min-height: 540px;
  width: 100%;
  overflow-x: clip;
}

.hero-glass-panel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 34px 36px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(3, 16, 40, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    transparent 42%
  );
  pointer-events: none;
}

.hero-glass-panel::after,
.hero-glass-card::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -42%;
  width: 72%;
  height: 210%;
  transform: rotate(24deg) translate3d(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(255, 255, 255, 0.28) 48%,
    rgba(255, 255, 255, 0.08) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.9;
  pointer-events: none;
  animation: heroGlassShine 2.1s ease-in-out infinite alternate;
}

.hero-glass-card {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(244, 249, 255, 0.72)
  );
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 64px rgba(3, 16, 40, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-glass-card::after {
  top: 0;
  left: -120%;
  width: 85%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: heroCardGlassSweep 2.4s ease-in-out infinite alternate;
}

.hero-glass-card .btn-lg-square {
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 12px 24px rgba(1, 95, 201, 0.1);
}

.premium-hero-animate {
  animation: premiumFadeUp 0.6s ease;
}

.premium-hero-stage .row {
  --bs-gutter-x: clamp(1.5rem, 3vw, 3rem);
}

.premium-hero-stage [class*="col-"] {
  min-width: 0;
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlassShine {
  0% {
    transform: rotate(24deg) translate3d(-165%, -8%, 0);
    opacity: 0.18;
  }
  50% {
    opacity: 0.92;
  }
  100% {
    transform: rotate(24deg) translate3d(170%, 10%, 0);
    opacity: 0.2;
  }
}

@keyframes heroCardGlassSweep {
  0% {
    transform: skewX(-22deg) translate3d(0, 0, 0);
    opacity: 0.22;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: skewX(-22deg) translate3d(250%, 0, 0);
    opacity: 0.18;
  }
}

.premium-panel:hover,
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(14, 30, 68, 0.14);
  border-color: rgba(1, 95, 201, 0.35);
}

.premium-panel:hover::after,
.premium-card:hover::after,
.premium-list-card:hover::after {
  opacity: 1;
  animation: cardGlassShine 1.45s ease-in-out 1;
}

.hero-glass-card:hover::after {
  opacity: 0.9;
  animation: heroCardGlassSweep 2.4s ease-in-out infinite alternate;
}

.premium-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(1, 95, 201, 0.12),
    rgba(1, 95, 201, 0.22)
  );
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.premium-card:hover .premium-icon,
.premium-panel:hover .premium-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--bs-primary), #0b1938);
  color: #fff;
}

.premium-list-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(1, 95, 201, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(14, 30, 68, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.premium-list-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 95, 201, 0.3);
  box-shadow: 0 20px 40px rgba(14, 30, 68, 0.1);
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(1, 95, 201, 0.12);
  box-shadow: 0 8px 24px rgba(14, 30, 68, 0.05);
  transition: all 0.3s ease;
}

.partner-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 95, 201, 0.28);
  color: var(--bs-primary);
}

.calc-note-box {
  background: rgba(1, 95, 201, 0.06);
  border: 1px solid rgba(1, 95, 201, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
}

.calc-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-chart-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.calc-chart-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #edf3fb;
  overflow: hidden;
}

.calc-line-chart {
  width: 100%;
  height: auto;
  min-height: 240px;
  overflow: visible;
}

.calc-axis {
  stroke: rgba(1, 95, 201, 0.18);
  stroke-width: 1;
}

.calc-svg-label {
  fill: #6c7a92;
  font-size: 10px;
}

.calc-doughnut-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-doughnut-svg {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: block;
}

.calc-doughnut-bg {
  fill: none;
  stroke: #e7f0fb;
  stroke-width: 24;
}

.calc-doughnut-segment {
  fill: none;
  stroke-width: 24;
}

.calc-doughnut-total {
  font-size: 11px;
  font-weight: 700;
  fill: #0b1938;
}

.calc-doughnut-subtitle {
  font-size: 10px;
  fill: #6c7a92;
}

.calc-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.calc-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(1, 95, 201, 0.04);
  flex-wrap: wrap;
}

.calc-legend-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calc-chart-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bs-primary), #0b1938);
}

.calc-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c7a92;
  border-bottom: 1px solid rgba(1, 95, 201, 0.12);
}

.calc-table tbody td {
  border-color: rgba(1, 95, 201, 0.08);
}

.footer .footer-item.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer .footer-item.footer-nav a:hover {
  color: #7cc4ff;
}

.footer-brand {
  max-width: 360px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-pro .footer-title {
  position: relative;
  color: #0b1938;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 18px;
  margin-bottom: 34px;
  padding-left: 40px;
}

.footer-pro .footer-nav {
  padding-left: 8px;
}

.footer-pro .footer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: #4b6488 !important;
  margin-bottom: 10px;
  line-height: 1.5;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-pro .footer-nav a::before {
  content: "\2022";
  color: #b7c6dc;
  flex: 0 0 auto;
}

.footer-pro .footer-nav a span {
  display: inline-block;
  color: #4b6488 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-pro .footer-nav a:hover {
  color: #015fc9 !important;
  transform: translateX(3px);
}

.footer-pro .footer-nav a:hover span,
.footer-pro .footer-nav a:focus span,
.footer-pro .footer-nav a:visited span {
  color: inherit !important;
}

.footer-pro .footer-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 2px;
  background: #2962ff;
}

.footer-brand-card {
  display: inline-flex;
  max-width: 100%;
  overflow: hidden;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef5ff 55%, #fdfefe 100%);
  border: 1px solid #dbe7f7;
  box-shadow: 0 18px 36px rgba(22, 55, 107, 0.08);
}

.footer-brand-card-link {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
}

.footer-brand-card-link img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 18px;
  max-width: 280px;
  text-align: justify;
}

.footer-cert-card {
  width: 100%;
  max-width: 290px;
  padding: 20px;
  border-radius: 28px;
  background: #f8fbff;
  border: 1px solid #e6edf7;
  box-shadow: 0 14px 28px rgba(22, 55, 107, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.footer-mini-label,
.footer-line-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a9ab6;
}

.footer-section-kicker {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a9ab6;
  text-align: center;
}

.footer-cert-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6edf7;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.footer-cert-box strong {
  color: #0b1938;
}

.footer-person-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-person-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-person-card strong,
.footer-line-group strong,
.footer-quick-connect a {
  color: #0b1938;
  font-size: 16px;
  font-weight: 700;
}

.footer-strong-wrap {
  line-height: 1.6;
}

.footer-email-link {
  display: inline-block;
  max-width: 100%;
  color: #0b1938;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e6edf7;
  color: #2962ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-line-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-quick-connect {
  padding: 22px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef5ff 100%);
  border: 1px solid #dbe7f7;
  box-shadow: 0 14px 28px rgba(22, 55, 107, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.footer-quick-connect a {
  display: inline-block;
  margin-top: 18px;
  color: #2d4f86;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.35s ease;
}

.footer-cert-card:hover,
.footer-quick-connect:hover {
  transform: translateY(-8px);
  border-color: #b7cced;
  box-shadow: 0 24px 44px rgba(22, 55, 107, 0.14);
}

.footer-cert-card:hover .footer-cert-box {
  transform: translateY(-2px);
  border-color: #c5d7f0;
  box-shadow: 0 14px 26px rgba(41, 98, 255, 0.08);
}

.footer-quick-connect:hover a {
  color: #015fc9;
}

.footer-line-label {
  color: #2962ff;
}

.footer-line-label-green {
  color: #00b26f;
}

.footer-quick-connect {
  padding: 22px 24px;
  border-radius: 28px;
  background: #f8fbff;
  border: 1px solid #e6edf7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-recharts-shell {
  width: 100%;
  height: 280px;
}

.calculator-shell {
  background:
    radial-gradient(
      circle at top right,
      rgba(91, 182, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.calculator-form-zone {
  position: relative;
}

.calculator-form-zone::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: calc(100% - 56px);
  background: linear-gradient(
    180deg,
    rgba(1, 95, 201, 0.05),
    rgba(1, 95, 201, 0.18),
    rgba(1, 95, 201, 0.05)
  );
}

.calculator-aside {
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(1, 95, 201, 0.05) 0%,
    rgba(91, 182, 255, 0.1) 100%
  );
}

.calc-intro-copy {
  color: #5d7392;
  font-size: 17px;
  line-height: 1.8;
}

.calculator-input-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 95, 201, 0.12);
  box-shadow: 0 14px 34px rgba(14, 30, 68, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.calculator-input-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 95, 201, 0.28);
  box-shadow: 0 20px 40px rgba(14, 30, 68, 0.1);
}

.calculator-input-card .form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a8eaf;
  margin-bottom: 12px;
}

.calculator-input-card .form-control {
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(1, 95, 201, 0.14);
  background: #f9fbff;
  color: #0b1938;
  font-size: 18px;
  font-weight: 700;
  box-shadow: none;
}

.calculator-input-card .form-control:focus {
  border-color: rgba(1, 95, 201, 0.35);
  box-shadow: 0 0 0 4px rgba(1, 95, 201, 0.08);
  background: #ffffff;
}

.calc-note-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-summary-card {
  position: relative;
  overflow: hidden;
}

.calc-summary-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #015fc9 0%, #5bb6ff 100%);
}

.calc-summary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(1, 95, 201, 0.08);
  color: #015fc9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.calc-summary-foot {
  color: #7a8eaf;
  font-size: 14px;
}

.calc-chart-card {
  position: relative;
  overflow: hidden;
}

.calc-chart-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(91, 182, 255, 0.16) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.calc-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.calc-panel-copy {
  color: #6c7a92;
  max-width: 420px;
}

.calc-series-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-series-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f9ff;
  border: 1px solid rgba(1, 95, 201, 0.1);
  color: #466287;
  font-size: 13px;
  font-weight: 700;
}

.calc-series-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calc-doughnut-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.calc-doughnut-canvas {
  position: relative;
  flex: 0 0 280px;
}

.calc-doughnut-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  padding: 0 72px 34px;
}

.calc-doughnut-overlay span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a8eaf;
}

.calc-doughnut-overlay strong {
  font-size: 18px;
  color: #0b1938;
  text-align: center;
  max-width: 110px;
  line-height: 1.2;
  font-weight: 800;
  word-break: keep-all;
}

.calc-table thead th {
  background: #f8fbff;
}

.calc-table tbody tr:nth-child(even) td {
  background: rgba(248, 251, 255, 0.75);
}

.calc-tool-card {
  position: relative;
  overflow: hidden;
}

.calc-tool-card::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 95, 201, 0.16), transparent 68%);
}

.calc-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #015fc9;
}

.download-app-card {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(1, 95, 201, 0.14);
  box-shadow: 0 26px 60px rgba(14, 30, 68, 0.1);
}

.download-app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 74px rgba(14, 30, 68, 0.14);
}

.download-app-icon {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: linear-gradient(145deg, #edf5ff, #dbeaff);
  color: #2962ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 16px 32px rgba(41, 98, 255, 0.12);
}

.download-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f5f9ff;
  color: #8aa0c1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-app-copy {
  color: #5d7392;
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
}

.download-store-btn {
  min-width: 240px;
  padding: 20px 28px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.download-store-btn i {
  font-size: 24px;
}

.download-store-btn-dark {
  background: #121b32;
  color: #fff;
  box-shadow: 0 18px 38px rgba(18, 27, 50, 0.22);
}

.download-store-btn-light {
  background: #fff;
  color: #121b32;
  border: 2px solid #1d2a48;
}

.download-store-btn:hover {
  transform: translateY(-8px);
}

.download-store-btn-dark:hover {
  color: #fff;
  box-shadow: 0 24px 44px rgba(18, 27, 50, 0.3);
}

.download-store-btn-light:hover {
  color: #015fc9;
  border-color: #015fc9;
  box-shadow: 0 20px 38px rgba(1, 95, 201, 0.14);
}

.download-device-panel {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(1, 95, 201, 0.05),
    rgba(91, 182, 255, 0.12)
  );
  border: 1px solid rgba(1, 95, 201, 0.12);
  box-shadow: 0 20px 40px rgba(14, 30, 68, 0.08);
}

.download-device-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 20px;
}

.download-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(1, 95, 201, 0.1);
  color: #0b1938;
  font-weight: 700;
}

.download-iframe-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(1, 95, 201, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 38px rgba(14, 30, 68, 0.08);
  background: #f8fbff;
}

.download-iframe {
  width: 100%;
  height: 680px;
  border: 0;
  background: #fff;
}

.chart-tooltip {
  background: #ffffff;
  border: 1px solid #dfe9f8;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(14, 30, 68, 0.12);
}

.chart-tooltip-label {
  margin: 0 0 6px;
  color: #0b1938;
  font-weight: 700;
}

.chart-tooltip-value {
  margin: 0;
  color: #5d7392;
}

@media (min-width: 992px) {
  .navbar .navbar-nav {
    gap: 2px;
  }
}

@media (max-width: 1199.98px) {
  .premium-hero-stage {
    min-height: auto;
  }

  .hero-glass-panel,
  .hero-glass-card {
    padding-left: 28px;
    padding-right: 28px;
  }

  .calculator-form-zone::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-glass-panel,
  .hero-glass-card {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 22px;
  }

  .calculator-input-card {
    padding: 16px;
  }

  .calculator-input-card .form-control {
    font-size: 16px;
    height: 52px;
  }

  .calc-doughnut-overlay strong {
    font-size: 16px;
    max-width: 96px;
  }
}

@keyframes cardGlassShine {
  0% {
    transform: rotate(24deg) translate3d(-185%, 0, 0);
    opacity: 0.05;
  }

  35% {
    opacity: 0.9;
  }

  100% {
    transform: rotate(24deg) translate3d(250%, 0, 0);
    opacity: 0;
  }
}

