
/* Typography */
h1, h2, .h2, h3, .h3, .h4, h4, h5, .h5, h6,.h6 {
  text-transform: uppercase;
  font-family: "PT Sans", serif;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: initial;
  /* letter-spacing: 0.1em;*/
}

h4, .h5 {
  margin-top: 10px;
}

h1, .h1 {
  font-size: 30px;
  line-height: 1.33;
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 60px;
    line-height: 1.16667;
  }
}

h2, .h2 {
  font-size: 28px;
  line-height: 1.5;
}

.form-commit h2{
	font-size: 28px;
}

h2 mark, .h2 mark {
  padding: 5px 60px;
}

@media (min-width: 768px) {
  h2, .h2 {
    font-size: 46px;
    line-height: 1.13043;
  }
}

h3, .h3 {
  font-size: 26px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 30px;
    line-height: 1.33333;
  }
}

h4, .h4 {
  font-size: 24px;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 22px;
    line-height: 1.36364;
  }
}

h5, .h5 {
  font-size: 22px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  h5, .h5 {
    font-size: 20px;
    line-height: 1.6;
  }
}

h6, .h6 {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  h6, .h6 {
    font-size: 18px;
    line-height: 1.55556;
  }
}

h6 a, .h6 a {
  color: #f1d72b;
}

h6 a:hover, .h6 a:hover {
  color: #343434;
}

p {
  margin: 0 0 6px;
}

a.text-base:hover {
  color: #a9a9a9;
}

a.text-gray:hover {
  color: #2e3032;
}

a.text-primary:hover, a.text-primary:focus {
  color: #dbc00e;
}

mark {
  background-color: #f1d72b;
  color: #000;
}

em {
  font-style: italic;
}

.small {
  font-size: 14px;
}

a:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}


.accordion-item{
	margin: 0 0 10px;
}
.accordion-item__header{
    position: relative;
    display: block;
    padding: 5px 0px 0px 0px;
    font-size: 17px;
    font-weight: 700;
   	background: #f5f5f5;
}
.accordion-item__header.collapsed{
background: #f5f5f5;
}


/* Стили для текстового поля с кнопкой "Далее" */
.limiter {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}
.limiter .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  opacity: 1;
  transition: 0.3s;
}
.read-more-checker {
  opacity: 0;
  position: absolute;
}
.read-more-checker:checked ~ .limiter {
  max-height: none;
}
.read-more-checker:checked ~ .limiter .bottom {
  opacity: 0;
  transition: 0.3s;
}
.read-more-checker ~ .read-more-button:before {
  content: "Ещё 45 вопросов »";
}
.read-more-checker:checked ~ .read-more-button:before {
  content: "Оставить только 6 вопросов «";
}
.read-more-button {
  cursor: pointer;
  display: inline-block;
  color: #777;
  text-decoration: underline;
}