/*--------------------------------------BREADCRUMBS---------------------------------------*/
#breadcrumbs {
    padding: 20px 0;
    background: white;
  }
  #breadcrumbs .center {
    display: flex;
    justify-content: space-between;
  }
  
  #breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
  }
  #breadcrumbs .center p {
    padding-right: 10px;
    color: rgb(108, 108, 108);
  }
  
  @media (max-width: 820px) {
    #breadcrumbs .center{
      flex-direction: column;
      align-items: flex-end;
    }
  }

/*--------------------------------------CONTENT---------------------------------------*/
#details {
  padding-top: 30px;
}

.info {
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
  background-color: white;
}
.info i {
  float: right;
  font-style: normal;
}

#details img, #details iframe {
  border: 3px solid #8602e5;
  border-radius: 10px;
}
#details iframe {
  width: 100%;
  margin-top: 10px;
  /* height: 10rem; */
}
#details h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8602e5;
}

#details ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

#details li {
  margin-top: 10px;
  border-bottom: 1px dotted rgb(108, 108, 108);
}

.description h2 {
  padding-top: 30px;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.description p {
  line-height: 140%;
  color: rgb(40, 40, 40);
}

.p-img{display: none;}
@media (max-width: 992px) { /*change when fix issue with iframes not working with smaller screen*/
  iframe {
    display: none;
  }
  .p-img{
    display: block;
  }
}


/* Credits for Mobile Apps */
.accordion ul{
  margin-left: 20px;
}
.accordion-item{
  background-color:#F6EAFF !important;
}
.accordion-button{
  color: #8602e5 !important;
}