@charset "UTF-8";
.header {
  background-color: #1D1D1D;
}
.header .header-top {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(49.4, 49.4, 49.4);
}
.header .header-top .navbar-brand .logo-img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}
.header .header-top .navbar-brand .logo-img:hover {
  transform: scale(1.05);
}
.header .header-bottom {
  padding: 0.5rem 0;
}

.header-contacts {
  gap: 2rem;
}
.header-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.header-contacts .contact-item:not(:last-child) {
  position: relative;
  padding-right: 2rem;
}
.header-contacts .contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #505050;
}

.btn-call {
  background-color: #43DDFF;
  color: #1D1D1D;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1rem;
}
.btn-call:hover {
  background-color: rgb(118, 230.2234042553, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 221, 255, 0.3);
}
.btn-call:active {
  transform: translateY(0);
}

.header-bottom .navbar-nav {
  gap: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}
.header-bottom .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border-top-color: #FFFFFF;
  transition: border-top-color 0.3s ease;
  margin-left: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after {
  border-top-color: #43DDFF;
}
.header-bottom .navbar-nav .nav-item.show .nav-link {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}

.dropdown-menu {
  background-color: rgb(41.75, 41.75, 41.75);
  border: 1px solid rgb(67.25, 67.25, 67.25);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem !important;
}
.dropdown-menu .dropdown-item {
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #43DDFF;
  color: #1D1D1D;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
  width: 30px;
  height: 30px;
  position: relative;
}
.navbar-toggler .burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.navbar-toggler:hover .burger-line {
  background-color: #43DDFF;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1399.98px) {
  .header-bottom .navbar-collapse {
    display: none !important;
  }
  .logo-img {
    max-width: 150px !important;
  }
}
@media (max-width: 768px) {
  .logo-img {
    max-width: 130px !important;
  }
}
@media (min-width: 1400px) {
  .navbar-toggler {
    display: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu {
  animation: fadeIn 0.3s ease;
}

.offcanvas {
  background-color: #1D1D1D;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid rgb(54.5, 54.5, 54.5);
  padding: 1.5rem;
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: #FFFFFF;
  font-weight: 600;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
}
.offcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.offcanvas-menu .offcanvas-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(41.75, 41.75, 41.75);
  transition: all 0.3s ease;
  position: relative;
}
.offcanvas-menu .offcanvas-link:hover {
  color: #43DDFF;
  background-color: rgb(36.65, 36.65, 36.65);
}
.offcanvas-menu .offcanvas-link.dropdown-toggle::after {
  content: "›";
  position: absolute;
  right: 1.5rem;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  border: 0 none;
}
.offcanvas-menu .offcanvas-dropdown.active .offcanvas-link.dropdown-toggle::after {
  transform: rotate(-90deg);
}

.offcanvas-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgb(36.65, 36.65, 36.65);
  display: none;
}
.offcanvas-submenu.show {
  display: block;
}
.offcanvas-submenu .offcanvas-link {
  padding-left: 2.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgb(34.1, 34.1, 34.1);
}

.offcanvas-contacts {
  padding: 1.5rem;
  border-top: 1px solid rgb(54.5, 54.5, 54.5);
  background-color: rgb(34.1, 34.1, 34.1);
}
.offcanvas-contacts .contact-item {
  margin-bottom: 1rem;
}
.offcanvas-contacts .contact-item:last-child {
  margin-bottom: 1.5rem;
}
.offcanvas-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.offcanvas-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.offcanvas-contacts .btn-call {
  width: 100%;
  padding: 0.75rem;
  margin-left: 0;
}

.services {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.services .services-slider-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.services .services-slider-heading .const-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services .services-slider-heading .const-heading span {
  color: #43DDFF;
}
.services .services-slider {
  position: relative;
  min-height: 400px;
}
.services .services-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.services .services-slider .slide.active {
  opacity: 1;
  visibility: visible;
}
.services .services-slider .slide .slide-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services .services-slider .slide .slide-content .heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.services .services-slider .slide .slide-content .text {
  font-size: 1.1rem;
  color: #ADB5BD;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.services .panel {
  margin-top: 2rem;
}
.services .panel .panel-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.services .panel .panel-bg .btn-slide {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.services .panel .panel-bg .btn-slide.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.services .panel .panel-bg .btn-slide.glass-effect:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.services .panel .panel-bg .btn-slide.glass-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 221, 255, 0.3);
  border-color: rgba(67, 221, 255, 0.4);
}
.services .panel .panel-bg .btn-slide.glass-effect:hover:before {
  left: 100%;
}
.services .panel .panel-bg .btn-slide.glass-effect:hover i {
  transform: translateX(3px);
  color: #43DDFF;
}
.services .panel .panel-bg .btn-slide.glass-effect i {
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.services .panel .panel-bg .btn-slide.glass-effect span {
  font-size: 0.95rem;
  font-weight: 500;
}
.services .panel .panel-bg .btn-slide:active {
  transform: translateY(0);
}
.services .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.services .slider-nav .nav-btn {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}
.services .slider-nav .nav-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.services .slider-nav .nav-btn i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1;
}
.services .slider-nav .nav-btn:hover {
  border-color: #43DDFF;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(67, 221, 255, 0.4);
}
.services .slider-nav .nav-btn:hover:before {
  left: 100%;
}
.services .slider-nav .nav-btn:hover i {
  color: #43DDFF;
}
.services .slider-nav .nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.services .slider-nav .nav-btn:disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.2);
}
.services .slider-nav .slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.services .slider-nav .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ADB5BD;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.services .slider-nav .slider-dots .dot.active {
  background: #43DDFF;
  transform: scale(1.2);
}
.services .slider-nav .slider-dots .dot.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid #43DDFF;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.services .slider-nav .slider-dots .dot:hover:not(.active) {
  background: #FFFFFF;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 1rem 0;
  }
  .services .services-slider-heading .const-heading {
    font-size: 2rem;
  }
  .services .services-slider .slide .slide-content .heading {
    font-size: 1.8rem;
  }
  .services .services-slider .slide .slide-content .text {
    font-size: 1rem;
  }
  .services .panel .panel-bg {
    gap: 1rem;
  }
  .services .panel .panel-bg .btn-slide {
    padding: 0.8rem 1.5rem;
  }
  .services .panel .panel-bg .btn-slide i {
    font-size: 0.9rem;
  }
  .services .panel .panel-bg .btn-slide span {
    font-size: 0.85rem;
  }
  .services .slider-nav {
    gap: 1.5rem;
  }
  .services .slider-nav .nav-btn {
    width: 50px;
    height: 50px;
  }
  .services .slider-nav .nav-btn i {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .services .services-slider-heading .const-heading {
    font-size: 1.6rem;
  }
  .services .services-slider .slide .slide-content .heading {
    font-size: 1.4rem;
  }
  .services .services-slider .slide .slide-content .text {
    font-size: 0.9rem;
  }
  .services .panel .panel-bg {
    flex-direction: column;
    align-items: center;
  }
  .services .panel .panel-bg .btn-slide {
    width: 220px;
    justify-content: center;
  }
  .services .slider-nav {
    gap: 1rem;
  }
}
.sphere {
  position: relative;
  background: #1D1D1D;
  overflow: hidden;
  box-shadow: 0px 15px 20px 0px rgba(30, 29, 29, 0.2);
  background-image: URL("/assets/images/header.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 50%;
}
.sphere .sphere-col {
  height: calc(100svh - 141.16px);
  position: relative;
  padding: 0;
}
.sphere #sphere-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100svh - 141.16px);
  z-index: 1;
}
.sphere #sphere-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.sphere .services {
  position: relative;
  z-index: 2;
}

@media (max-width: 1400px) {
  .sphere {
    background-size: 100%;
  }
  .sphere .sphere-col {
    height: calc(100svh - 66px);
  }
  .sphere #sphere-wrap {
    height: calc(100svh - 66px);
  }
}
.modern-footer {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  color: #A1A7AF;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
}
.modern-footer .footer-main {
  margin-bottom: 3rem;
}
.modern-footer .footer-main .footer-brand .company-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.modern-footer .footer-main .footer-brand .company-badge .company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFFFFF 0%, #A1A7AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modern-footer .footer-main .footer-brand .company-badge .logo-wrapper .footer-logo {
  height: 40px;
  width: auto;
}
.modern-footer .footer-main .footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.modern-footer .footer-main .footer-actions .privacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(67, 221, 255, 0.1);
  border: 1px solid rgba(67, 221, 255, 0.2);
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.modern-footer .footer-main .footer-actions .privacy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover {
  background: rgba(67, 221, 255, 0.2);
  border-color: #43DDFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 221, 255, 0.15);
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover::before {
  left: 100%;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover .fa.arrow {
  transform: translateX(3px);
}
.modern-footer .footer-main .footer-actions .privacy-btn .fa.arrow {
  transition: transform 0.3s ease;
}
.modern-footer .footer-main .footer-actions .footer-tagline {
  color: #A1A7AF;
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}
.modern-footer .footer-divider {
  margin: 2rem 0 3rem;
}
.modern-footer .footer-divider .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 221, 255, 0.3) 50%, transparent 100%);
}
.modern-footer .fa {
  font-style: normal;
  font-size: 1.25rem;
  opacity: 0.8;
}
.modern-footer .footer-info-grid {
  margin-bottom: 3rem;
}
.modern-footer .footer-info-grid .info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.modern-footer .footer-info-grid .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modern-footer .footer-info-grid .info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(67, 221, 255, 0.2);
  transform: translateY(-5px);
}
.modern-footer .footer-info-grid .info-card:hover::before {
  opacity: 1;
}
.modern-footer .footer-info-grid .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.modern-footer .footer-info-grid .info-card .card-header .card-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-value {
  color: #A1A7AF;
  font-size: 0.8rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A1A7AF;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link:hover {
  color: #43DDFF;
  transform: translateX(5px);
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link.small {
  font-size: 0.75rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .email-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-city {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.modern-footer .footer-bottom .tech-info .tech-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}
.modern-footer .footer-bottom .footer-meta {
  text-align: right;
}
.modern-footer .footer-bottom .footer-meta .meta-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .modern-footer {
    padding: 3rem 0 1.5rem;
  }
  .modern-footer .footer-main .footer-brand .company-badge {
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .modern-footer .footer-main .footer-actions {
    align-items: center;
    text-align: center;
  }
  .modern-footer .footer-bottom .footer-meta {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .modern-footer .footer-main .footer-brand .company-badge {
    text-align: center;
  }
  .modern-footer .info-card {
    text-align: center;
  }
  .modern-footer .info-card .card-header {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .modern-footer {
    padding: 2rem 0 1rem;
  }
  .modern-footer .footer-main .footer-actions .privacy-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .modern-footer .footer-info-grid .info-card {
    padding: 1.25rem;
  }
}/*# sourceMappingURL=landing-page.css.map */