
@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana.ttf");
}
@font-face {
  font-family: "VerdanaB";
  src: url("../fonts/Verdana-Bold.ttf");
}
@font-face {
  font-family: "VerdanaT";
  src: url("../fonts/Verdana-Thin.ttf");
}

.accordeon {
  margin: 0 auto;
  width: 100%;
  font-family: 'Fira Sans', sans-serif;
}

.accorddeon-wrapper{
  width: 100%;
}


.item-name {
  background: #FAF6E9;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 25px;
  font-family: "Verdana";
  padding: 15px 25px;
  border-bottom: 1px solid #383738;
}

.item-name-left{
  display: flex;
  align-items: center;
}

.item-name--gray {
  background: #FAF6E9;
}

.item-name p {
  color: #2D2E2F;
  padding-left: 25px;
  font-size: 15px;
  font-weight: 900;
  display: inline-block;
}

.item-name--gray p{
  color: #4f4f4f;
}

.item-arrow {
  background-repeat: no-repeat;
  background-image: url(../img/icons/arrowhead-down.png);
  height: 20px;
  width: 40px;
  background-position: center;
  background-size: cover;
}

.item-name:hover {
  cursor: pointer;
}

.item-wrapper {
  background: #FAF6E9;
  padding-top: 43px;
  position: relative;
  margin-top: -30px;
  border-radius: 12px;
  display: none;
  transition: all 1s ease;
}

.item-wrapper ul{
  margin: 0;
  padding: 0 25px 12px;
  position: relative;
  border-bottom: 1px solid #383738;
}

.item-wrapper ul li {
  list-style: none;
  color: #2D2E2F;
  font-weight: 300;
  margin-top: 10px;
  
}

.item-wrapper ul li a{
  text-decoration: none;
  color: #2D2E2F;
  text-transform: uppercase;
  font-size: 14px;
}

.item-wrapper ul li .mobile-main-link{
  font-weight: 600;
  font-size: 18px;
  
}

.item--open .item-wrapper {
  display: block;
}

.item--open .item-name {
  background: #9C1433;
  border: none;
}

.item-name .item-name-img{
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  height: 60px;
  width: 60px;
}

.item-name-img-discover{
  background-image: url(../img/icons/eye.png);
}

.item-name-img-about{
  background-image: url(../img/icons/compass.png);
}

.item-name-img-light{
  background-image: url(../img/icons/book.png);
}

.item-name-img-become{
  background-image: url(../img/icons/message.png);
}

.item--open .item-name-img-discover{
  background-image: url(../img/icons/eye-white.png);
}

.item--open .item-name-img-about{
  background-image: url(../img/icons/compass-white.png);
}

.item--open .item-name-img-light{
  background-image: url(../img/icons/book-white.png);
}

.item--open .item-name-img-become{
  background-image: url(../img/icons/message-white.png);
}

.item--open .item-arrow {
  position: relative;
  background-image: url(../img/icons/arrowhead-up.png);
}
.item--open .item-name p {
  color: #fff;
  font-weight: 500;
}