

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  /* background-color: #34495e; */
  color: #fff;
}

h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  color: #34495e;
}
h2 {
  text-align: center;
  margin: 2rem 0;
  font-size: 1rem;
  color: #34495e;
}

.vacancy{
  display: flex;
  justify-content: space-around;
}

.right-bg{
  background-color: #34495e;
  
}


.job-d-link:link, .job-d-link:visited{
  color: blue;
}

.job-d-link:active, .job-d-link:hover{
  color: rgb(10, 10, 165);
}

.accordion {
  
  max-width: 100vw;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  justify-content:start;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 0.2rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
  height: 3rem;
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 1rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media(max-width:767px) {
  html {
    font-size: 14px;
  }
}