@font-face {
  font-family: 'Capture it';
  src: url('/fonts/captureit.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #F5B800;
  --dark: #1a1a1a;
  --darker: #111111;
  --gray: #2d2d2d;
  --light-gray: #3d3d3d;
  --telegram: #0088cc;
  --whatsapp: #25D366;
  --max: #F5B800;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Font classes */
.font-capture {
  font-family: 'Capture it', 'Oswald', sans-serif;
  letter-spacing: 2px;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

/* Striped bar */
.striped-bar {
  background: repeating-linear-gradient(
    45deg,
    var(--yellow),
    var(--yellow) 10px,
    var(--dark) 10px,
    var(--dark) 20px
  );
  height: 12px;
  width: 100%;
}

/* Header - Sticky */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
  background: #fff;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  background: var(--yellow);
  padding: 8px 16px;
}

.logo-text {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #000;
  letter-spacing: 3px;
}

.logo-subtext {
  display: flex;
  flex-direction: column;
}

.logo-subtext span {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-btn.max {
  background: var(--max);
  border: 1px solid var(--max);
}

.social-btn.max:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.social-btn.telegram {
  background: var(--telegram);
  border: 1px solid var(--telegram);
}

.social-btn.telegram:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.social-btn.whatsapp {
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
}

.social-btn.whatsapp:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--yellow);
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

/* Navigation */
.nav {
  background: var(--gray);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  padding: 15px 25px;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: #e0a800;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: 20px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--yellow);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(245, 184, 0, 0.2) 10px,
    rgba(245, 184, 0, 0.2) 20px
  );
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--yellow);
}

.hero-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.benefit-content h3 {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--yellow);
  font-size: 14px;
}

.hero-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-phone-main {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.hero-phone-main:hover {
  color: var(--yellow);
}

.hero-phone-main svg {
  width: 24px;
  height: 24px;
}

.hero-phone-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.hero-phone-secondary:hover {
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  padding: 15px 30px;
  margin-bottom:5px;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e0a800;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  top:-20px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), transparent);
  border-radius: 8px;
  opacity: 0.5;
}

/* Decorative elements with pulse animation */
.decor-square {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  opacity: 0.2;
  top: -5px;
  right: -5px;
  animation: pulse 2s ease-in-out infinite;
}

.decor-border {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid var(--yellow);
  opacity: 0.3;
  bottom: -20px;
  left: -20px;
  animation: pulse 2s ease-in-out infinite 0.5s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

/* Scroll to section button (like reference site) */
.scroll-section {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.scroll-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 10px;
  transition: color 0.3s ease;
}

.scroll-link:hover {
  color: var(--yellow);
}

/* About Section */
.about {
  background: var(--gray);
  padding: 80px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--yellow);
}

.about-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.about-feature-text {
  color: #fff;
  font-size: 14px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: var(--dark);
  padding: 25px;
  text-align: center;
}

.stat-number {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Partners Section */
.partners {
  background: var(--dark);
  padding: 80px 0;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title span {
  color: var(--yellow);
}

.section-subtitle {
  color: #999;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partner-card {
  background: var(--gray);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: scale(1.02);
}

.partner-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-image img {
  transform: scale(1.1);
}

.partner-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--gray), transparent);
}

.partner-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  z-index: 1;
}

.partner-content {
  padding: 25px;
}

.partner-category {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partner-title {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.partner-description {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.partner-feature {
  background: var(--dark);
  color: #ccc;
  padding: 5px 12px;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--yellow);
  color: #000;
  padding: 15px;
  text-decoration: none;
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.partner-link:hover {
  background: #e0a800;
}

.partner-link svg {
  width: 16px;
  height: 16px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray);
}

.cta-text {
  color: #999;
  margin-bottom: 25px;
}

/* Footer */
.footer {
  background: var(--darker);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-badge {
  background: var(--yellow);
  padding: 8px 16px;
}

.footer-logo-text {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
}

.footer-about {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-requisites {
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.footer-title {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-phone {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--yellow);
}

.footer-schedule {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--yellow);
}

.footer-email svg {
  width: 18px;
  height: 18px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

.footer-address svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 30px 0;
}

.footer-sites {
  margin-bottom: 20px;
}

.footer-sites-title {
  font-family: 'Capture it', 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.footer-sites-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-sites-list a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-sites-list a:hover {
  color: var(--yellow);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  color: #666;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-contacts {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gray);
    flex-direction: column;
    margin: 0;
    padding: 10px 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    padding: 12px 20px;
    border-top: 1px solid var(--light-gray);
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-title, h1 {
    font-size: 24px!important;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .scroll-section {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-phone-main {
    font-size: 22px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.slider-container {
  position: relative;
  height: 350px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d2d2d;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible; /* Только активный доступен для hover */
  z-index: 2;
}

.slide img {
  max-width: 100%;
  max-height: 95%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
  cursor: pointer;
}

/* Hover работает на любом слайде (но видим только активный) */
.slide:hover img {
  filter: grayscale(0%);
}


.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: #f5b800;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #F5B800;
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .slider-container { height: 360px; }
  .slider-btn { width: 32px; height: 32px; font-size: 14px; }
  .slide img { max-width: 100%; }
}

@media (max-width: 480px) {
  .slider-container { height: 200px; }
  .hero-slider { border-radius: 8px; }
}


.btn_max, .btn_phone {
    position: fixed;
    right: 15px;
    width: 60px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 0;
}
.btn_max { bottom: 140px; }
.btn_phone { bottom: 70px; }

/* Полупрозрачная подложка */
.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    z-index: -1;
}

.btn_max svg, .btn_phone svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}

   .btn_max { color: #FF6B00; bottom: 145px;}
   .btn_phone { color: #4CAF50;bottom: 70px; }


.btn-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

#maxCaptchaOverlay {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: Arial,Helvetica,sans-serif;
}
#maxCaptchaBox {
    background: #fff;
    color: #000;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,.3);
    position: relative;
}
#maxCaptchaClose {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #555;
    cursor: pointer;
}
#maxCaptchaBox h4{margin-top:0;font-size:20px;color: #000;}
#maxCaptchaBox input{
    padding: 8px 12px;
    font-size: 18px;
    width: 90px;
    text-align: center;
    margin: 10px 5px;
}
#maxCaptchaBox button{
    padding: 8px 18px;
    font-size: 16px;
    cursor: pointer;
}
#maxCaptchaMsg{
    margin-top: 12px;
    font-weight: 700;
    color: #e60000;
    text-transform: uppercase;
    font-size: 15px;
}
#maxCaptchaRefresh:hover{color:#000;transform:rotate(180deg);transition:transform .25s}