

.visitor-map-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

.map-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 2rem auto;
  align-items: stretch;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #000000;
}

body.dark-mode .subsection-title {
  color: #ffffff;
}

.visitor-map-wrapper,
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .map-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.visitor-map-container {
  width: 100%;
  flex: 1;
  position: relative;
  min-height: 500px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.visitor-map-container:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

#visitor-globe {
  width: 100%;
  flex: 1;
  position: relative;
}

.visitor-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  flex-wrap: wrap;
  background: transparent;
}

.stat-item {
  text-align: center;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 200;
  color: #000000;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.dark-mode .visitor-map-container {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(187, 134, 252, 0.2);
}

body.dark-mode .visitor-map-container:hover {
  border-color: rgba(187, 134, 252, 0.5);
  box-shadow: 0 8px 32px rgba(187, 134, 252, 0.15);
}

body.dark-mode .visitor-stats {
  background: transparent;
}

body.dark-mode .stat-item {
  background: rgba(187, 134, 252, 0.08);
  border-color: rgba(187, 134, 252, 0.15);
}

body.dark-mode .stat-item:hover {
  background: rgba(187, 134, 252, 0.15);
  box-shadow: 0 4px 12px rgba(187, 134, 252, 0.1);
}

body.dark-mode .stat-number {
  color: #f0f0f0;
}

.nav-music-player {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  cursor: grab;
  width: 280px;
  max-width: 280px;
  display: none;
  opacity: 0;
  box-sizing: border-box;
}

.nav-music-player.visible {
  display: block;
  opacity: 1;
}

.nav-music-player:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.player-header {
  display: none;
}

.player-content {
  transition: all 0.3s ease;
}

.music-player.minimized .player-content {
  display: none;
}

.track-info {
  margin-bottom: 1rem;
  text-align: center;
}

.track-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #333;
}

.track-artist {
  font-size: 0.75rem;
  opacity: 0.6;
  color: #666;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.control-btn {
  background: none;
  border: none;
  color: #000000;
  cursor: none !important;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.control-btn:active {
  transform: scale(0.95);
}

.control-btn svg {
  pointer-events: none;
}

.control-btn.play-pause {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
}

.control-btn.play-pause:hover {
  background: rgba(0, 0, 0, 0.12);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.volume-icon {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.volume-slider {
  flex: 1;
  height: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1px;
  outline: none;
  cursor: none !important;
  transition: box-shadow 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  cursor: none !important;
  transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  cursor: none !important;
  border: none;
  transition: all 0.3s ease;
}

.volume-slider:hover::-webkit-slider-thumb {
  transform: scale(1.15);
}

.volume-slider:hover::-moz-range-thumb {
  transform: scale(1.15);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.progress-bar:hover {
  height: 8px;
}

.progress-fill {
  height: 100%;
  background: #000000;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.close-player-btn {
  display: block;
  width: 100%;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  cursor: none !important;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-align: center;
  box-sizing: border-box;
}

.close-player-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-music-player {
  background: linear-gradient(135deg, rgba(18, 18, 20, 0.98), rgba(12, 12, 15, 0.98));
  border-color: rgba(187, 134, 252, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-music-player:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(187, 134, 252, 0.1);
}

body.dark-mode .track-name {
  color: #e0e0e0;
}

body.dark-mode .track-artist {
  color: #b0b0b0;
}

body.dark-mode .control-btn {
  color: #e8e8e8;
}

body.dark-mode .control-btn:hover {
  background: rgba(187, 134, 252, 0.08);
}

body.dark-mode .control-btn.play-pause {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .control-btn.play-pause:hover {
  background: rgba(187, 134, 252, 0.12);
}

body.dark-mode .volume-icon {
  color: #e8e8e8;
}

body.dark-mode .volume-control {
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .volume-slider {
  background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .volume-slider::-webkit-slider-thumb {
  background: #d0a6ff;
}

body.dark-mode .volume-slider::-moz-range-thumb {
  background: #d0a6ff;
}

body.dark-mode .progress-bar {
  background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .progress-fill {
  background: linear-gradient(90deg, #bb86fc, #d0a6ff);
}

body.dark-mode .time-info {
  color: #b0b0b0;
}

body.dark-mode .close-player-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .close-player-btn:hover {
  background: rgba(187, 134, 252, 0.08);
  border-color: rgba(187, 134, 252, 0.2);
}

.contact-form-container {
  width: 100%;
  height: 100%;
  padding: 2rem;
  padding-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-form-container:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: #333;
  cursor: none !important;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #000000;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-textarea {
  min-height: 200px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.submit-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

.submit-btn .btn-text {
  position: relative;
  z-index: 1;
}

.submit-btn .btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  display: block;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.85rem;
  text-align: center;
  display: none;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.form-message.success {
  color: #000000;
}

.form-message.error {
  color: #f44336;
}

.form-message.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.char-count {
  font-size: 0.75rem;
  color: #666;
  text-align: right;
  margin-top: 0.3rem;
}

body.dark-mode .contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(187, 134, 252, 0.2);
}

body.dark-mode .contact-form-container:hover {
  border-color: rgba(187, 134, 252, 0.4);
  box-shadow: 0 8px 32px rgba(187, 134, 252, 0.1);
}

body.dark-mode .form-label {
  color: #e0e0e0;
}

body.dark-mode .form-input,
body.dark-mode .form-textarea,
body.dark-mode .form-select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(187, 134, 252, 0.2);
  color: #e0e0e0;
}

body.dark-mode .form-input:focus,
body.dark-mode .form-textarea:focus,
body.dark-mode .form-select:focus {
  border-color: #bb86fc;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.1);
}

body.dark-mode .submit-btn {
  color: #ffffff;
  border-color: #bb86fc;
  background: transparent;
}

body.dark-mode .submit-btn:hover {
  background: rgba(187, 134, 252, 0.1);
  border-color: #d0a6ff;
}

body.dark-mode .char-count {
  color: #b0b0b0;
}

body.dark-mode .form-message.success {
  color: #bb86fc;
}

body.dark-mode .form-message.error {
  color: #e57373;
}

@media screen and (max-width: 1200px) {
  .visitor-map-section {
    padding: 3rem 1.5rem;
  }

  .map-contact-container {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .visitor-map-section {
    padding: 2rem 1rem 1rem 1rem;
  }

  .map-contact-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .visitor-map-wrapper {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }

  .contact-form-wrapper {
    width: 100% !important;
    margin-top: 2rem !important;
  }

  .subsection-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .visitor-map-container {
    height: 300px;
    min-height: 300px;
  }

  .visitor-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .stat-item {
    padding: 0.8rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .nav-music-player {
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    right: auto !important;
    width: 240px !important;
    max-width: 240px !important;
    padding: 1rem !important;
    font-size: 0.85rem !important;
    box-sizing: border-box !important;
  }

  .track-info {
    margin-bottom: 0.8rem !important;
  }

  .track-name {
    font-size: 0.8rem !important;
  }

  .track-artist {
    font-size: 0.7rem !important;
  }

  .player-title {
    font-size: 0.7rem !important;
  }

  .player-controls {
    gap: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .control-btn {
    padding: 0.4rem !important;
    width: 36px !important;
    height: 36px !important;
  }

  .control-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  .control-btn.play-pause {
    width: 42px !important;
    height: 42px !important;
  }

  .control-btn.play-pause svg {
    width: 20px !important;
    height: 20px !important;
  }

  .volume-control {
    padding: 0.6rem !important;
    gap: 0.6rem !important;
    margin-top: 0.8rem !important;
  }

  .progress-bar {
    margin-top: 0.8rem !important;
  }

  .close-player-btn {
    font-size: 0.75rem !important;
    padding: 0.5rem !important;
    text-align: center !important;
  }

  .contact-form-wrapper {
    padding: 0;
    margin: 0 0 2rem 0;
  }

  .contact-form-container {
    padding: 1.2rem;
    padding-bottom: 2rem;
    margin: 0;
    border-radius: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }

  .form-textarea {
    min-height: 140px;
  }

  .submit-btn {
    padding: 0.9rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .char-count {
    font-size: 0.7rem;
  }

  .nav-music-player {
    width: 220px;
  }
}

@media screen and (max-width: 600px) {
  .visitor-map-section {
    padding: 1.5rem 0.75rem 1rem 0.75rem !important;
  }

  .map-contact-container {
    gap: 4rem !important;
  }

  .visitor-map-wrapper {
    margin-bottom: 3rem !important;
  }

  .visitor-map-container {
    height: 280px;
    min-height: 280px;
  }

  .contact-form-wrapper {
    margin-top: 3rem !important;
    margin-bottom: 4rem !important;
  }

  .contact-form-container {
    padding: 1.2rem !important;
    padding-bottom: 2.5rem !important;
    margin-bottom: 2rem !important;
    min-height: auto !important;
    height: auto !important;
  }

  .form-group {
    margin-bottom: 1.2rem !important;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.75rem 0.9rem !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
  }

  .form-textarea {
    min-height: 120px !important;
    max-height: 200px !important;
    resize: vertical !important;
    margin-bottom: 0.5rem !important;
  }

  .char-count {
    margin-bottom: 0.8rem !important;
  }

  .submit-btn {
    padding: 0.9rem !important;
    font-size: 0.95rem !important;
    margin-top: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-message {
    margin-top: 1rem !important;
  }

  .nav-music-player {
    width: 220px !important;
    max-width: 220px !important;
    padding: 0.9rem !important;
    left: 0.75rem !important;
    right: auto !important;
    bottom: 0.75rem !important;
    box-sizing: border-box !important;
  }

  .track-info {
    margin-bottom: 0.7rem !important;
  }

  .track-name {
    font-size: 0.75rem !important;
  }

  .track-artist {
    font-size: 0.65rem !important;
  }

  .player-title {
    font-size: 0.65rem !important;
  }

  .player-controls {
    gap: 0.6rem !important;
    margin-bottom: 0.7rem !important;
  }

  .control-btn {
    padding: 0.35rem !important;
    width: 32px !important;
    height: 32px !important;
  }

  .control-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  .control-btn.play-pause {
    width: 38px !important;
    height: 38px !important;
  }

  .control-btn.play-pause svg {
    width: 18px !important;
    height: 18px !important;
  }

  .volume-control {
    display: none !important;
  }

  .progress-bar {
    margin-top: 0.7rem !important;
    height: 5px !important;
  }

  .time-info {
    font-size: 0.65rem !important;
  }

  .close-player-btn {
    font-size: 0.7rem !important;
    padding: 0.45rem !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .visitor-map-section {
    padding: 1.5rem 0.5rem 1rem 0.5rem !important;
  }

  .map-contact-container {
    gap: 4rem !important;
  }

  .visitor-map-wrapper {
    margin-bottom: 3.5rem !important;
  }

  .subsection-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .visitor-map-container {
    height: 250px;
    min-height: 250px;
    border-radius: 8px;
  }

  .visitor-stats {
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .stat-item {
    padding: 0.6rem 1rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .nav-music-player {
    width: 200px !important;
    max-width: 200px !important;
    left: 0.5rem !important;
    right: auto !important;
    bottom: 0.5rem !important;
    padding: 0.8rem !important;
    font-size: 0.75rem !important;
    box-sizing: border-box !important;
  }

  .track-info {
    margin-bottom: 0.6rem !important;
  }

  .player-title {
    font-size: 0.6rem !important;
    margin-bottom: 0.3rem !important;
  }

  .track-name {
    font-size: 0.7rem !important;
    margin-bottom: 0.3rem !important;
  }

  .track-artist {
    font-size: 0.6rem !important;
  }

  .player-controls {
    gap: 0.5rem !important;
    margin-bottom: 0.6rem !important;
  }

  .control-btn {
    padding: 0.3rem !important;
    width: 30px !important;
    height: 30px !important;
  }

  .control-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  .control-btn.play-pause {
    width: 36px !important;
    height: 36px !important;
  }

  .control-btn.play-pause svg {
    width: 16px !important;
    height: 16px !important;
  }

  .progress-bar {
    height: 4px !important;
    margin-top: 0.6rem !important;
  }

  .time-info {
    font-size: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .volume-control {
    display: none !important;
  }

  .close-player-btn {
    font-size: 0.65rem !important;
    padding: 0.4rem !important;
    width: 100% !important;
    height: auto !important;
    text-align: center !important;
    margin-top: 0.4rem !important;
  }

  .contact-form-wrapper {
    margin-bottom: 3.5rem !important;
  }

  .contact-form-container {
    padding: 1rem !important;
    padding-bottom: 2.5rem !important;
    border-radius: 6px !important;
    margin-bottom: 2rem !important;
    box-sizing: border-box !important;
  }

  .form-group {
    margin-bottom: 1rem !important;
  }

  .form-label {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.7rem 0.85rem !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
  }

  .form-textarea {
    min-height: 100px !important;
    max-height: 180px !important;
    resize: vertical !important;
    margin-bottom: 0.5rem !important;
  }

  .char-count {
    font-size: 0.7rem !important;
    margin-top: 0.3rem !important;
    margin-bottom: 1rem !important;
  }

  .submit-btn {
    padding: 0.85rem !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    margin-top: 1.2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-message {
    padding: 0.8rem !important;
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
  }
}
