.Section__Wrapper {
  margin: 0 auto;
  max-width: 360px;
  padding-bottom: 56px;
}

.Section__Breadcrumbs {
  align-items: center;
  display: block;
  justify-content: space-between;
  margin: 18px 0 56px;
}

.Section__Breadcrumbs .breadcrumbs {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}

.Section__Breadcrumbs .breadcrumbs li {
  margin-bottom: 7px;
}

.Section__Breadcrumbs .breadcrumbs li a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.Section__Breadcrumbs .breadcrumbs li a:hover {
  color: #ff5500;
}

.Section__Container {
  display: block;
}

.Section__Title {
  font-size: 37px;
  margin: 25px 0;
}

.Section__Item {
  margin: 0 0 14px;
}

.Section__Item__Link {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
}

.Section__Item__Link:hover {
  color: #ff5500;
}

@media (min-width: 960px) {
  .Section__Wrapper {
    max-width: 875px;
  }
  
  .Section__Breadcrumbs {
    display: flex;
  }
  
  .Section__Breadcrumbs .breadcrumbs {
    flex-direction: row;
  }
  
  .Section__Breadcrumbs .breadcrumbs li {
    margin: 0 14px 0 0;
  }
  
  .Section__Container {
    display: flex;
  }
  
  .Section__Title {
    font-size: 50px;
    line-height: 55px;
    margin: 0 56px 0 0;
    width: 50%;
  }
  
  .Section__Content__Container {
    width: 50%;
  }
}

@media (min-width: 1080px) {
  .Section__Wrapper {
    max-width: 1240px;
  }
}