.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

@media (min-width: 300px) {
  .hero-section {
    background-repeat: no-repeat;
    /*justify-content: center;*/
    color: white;
    text-align: center;
    position: relative;
    background-image: url('../../assets/img/Logos/fields.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    flex-direction: column;
    /*align-content: center;*/
  }
}

@media (min-width: 768px) {
  .brand-logo {
    max-width: 400px;
    /*filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));*/
  }
}

.main-logo {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  margin: 3px;
}

@media (max-width: 577px) {
  .brand-logo {
    max-width: 200px;
  }
}

@media (min-width: 768px) {
  .brand-logo {
    max-width: 300px;
  }
}

.reduced-space {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2rem;
}

@media (min-width: 576px) {
  .hero-section {
    background-repeat: no-repeat;
    /*justify-content: center;*/
    color: white;
    text-align: center;
    position: relative;
    background-image: url('../../assets/img/Logos/fields.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
  }
}

