.no-1d {
  display: none;
}

body {
  background-color: $primary;
  background-image: url(#{$fonts-path}/../images/background.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.navbar-brand img {
  width: 120px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.width-one,
.container {
  min-width: 800px;
  width: calc(100% - 300px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;

  @include media-breakpoint-down(md) {
    width: 100%;
    min-width: inherit;
  }
}

main.main {
  background-color: $white;
  padding: 2.5rem;
  border-radius: $border-radius;
  box-shadow: $box-shadow;
  @extend .width-one;
}

.main-content {
  background-color: $white;
}

@include media-breakpoint-down(md) {
  main.main,
  .main-content {
    margin-top: 4rem;
    padding: 1.5rem;
    border-radius: 0;
  }
}

.font-weight-bold {
  font-weight: 700;
}