.page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 18px;
  color: #4b6997;
  text-align: center;
}
div:after {
  clear: both;
  content: "";
  display: block;
}
.accordion {
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
 
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion__head {
  color:#2F2F2F ;
  cursor: pointer;
  padding: 21px 50px 21px 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  align-items: center;position: relative;font-family:'Roboto', sans-serif;
}
.opened .accordion__head {color: #214704;
}
.accordion__head::after {
  content: "";
  background: url(../images/accordian-bottom.png) no-repeat center center;
  width: 20px;
  height: 20px;
  transition: transform 300ms ease-in-out;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  text-align: center;
  font-size: 26px;
  line-height: 20px;
}
.opened .accordion__head::after {
  background: url(../images/accordian-top.png) no-repeat center center;
}
.accordion__body {
  padding: 21px 23px 25px;
  color: #222;
  font-size: 18px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  
}
.accordion:last-child {
  border-bottom: 1px #b5b5b5 solid;
}

.dropdown {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.dropdown__head {
  cursor: pointer;
  color: #e59966;
  padding: 12px 0;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__head::after {
  /*content: url('arrow.svg');*/
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}
.opened .dropdown__head::after {
  transform: rotate(180deg);
}
.dropdown__body {
  padding: 25px;
  background-color: #e59966;
  font-size: 18px;
  transition: transform 300ms ease-in-out;
  transform: translateY(25px);
  max-width: 450px;
}
.opened .dropdown__body {
  transform: translateY(0);
}


@media screen and (max-width: 992px) {
.accordion__head {
  font-size: 14px;
}
}
@media screen and (max-width: 767px) {
  .accordion__head {
    padding: 14px 38px 14px 14px;
}
}