/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2025 | 01:00:48 */
.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.button-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.button-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.btn {
  background-color: #061767;
  color: white;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 300px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-large {
  width: 350px;
  padding: 55px 30px;
  font-size: 18px;
}

.btn:hover {
  background-color: #ffaa00;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .button-col {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn, .btn-large {
    width: 450px;
  }

  .btn-large {
    padding: 20px 30px;
  }

  .button-center {
    margin: 20px 0;
  }
}


/* Responsive Mobile */
@media (max-width: 768px) {
  .button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .button-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn, .btn-large {
    width: 450px;
  }

  .btn-large {
    padding: 20px 30px;
  }

  .button-center {
    margin: 20px 0;
  }
}
