#accordion-container {
  padding: 0;
  margin: -15px 0;
  width:1080px; 
  position: relative;
  margin: auto;  
}

.accordion-title {
  width: 100%;
  padding: 19px 0px 18px 0px;
  border-radius: 3px;
  background-color: #fff;
  border-bottom: 1px solid #D1CAC8;
}

.accordion-title: hover {
  background-color: #fff;
}

.accordion-title-block {
  font: normal normal normal 22px/30px Calibri;
  text-decoration: none;
  letter-spacing: 0.22px;
  color: #292929;
  float: left;
  width: 93%;
}

.expand-icon {
  font-weight: 700;
  display: block;
  float: right;
  text-align: right;
  color: #000;
  font-size: 26px;
  padding: 0 10px 0 0;
  line-height: 1;
  margin: 2px 0 0 0;
}

.collapse-icon {
  font-weight: 700;
  display: none;
  float: right;
  text-align: right;
  color: #DC582A;
  font-size: 26px;
  padding: 0 10px 10px 0;
  line-height: 1;
}

.expand-icon .open {
  display: none;
}

.collapse-icon .open {
  display: none;
}

.accordion-text {
  font-size: 16px;
  font-weight: 400;
  display: none;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.show {
  display: flex;
  flex-direction: row;
  background: #fff;
  margin-bottom: 5px;
  margin-top: -3px;
  border-bottom: 1px solid #D1CAC8;
  opacity: 1;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.left-content{
  float: left;
  width: 59.9%;
}

.m2-text p{
  color: #292929;
  font: normal normal normal 18px/25px Calibri;
  text-align: left;
  letter-spacing: 0.27px;
  padding-left: 97px;
  margin-bottom: 0.5rem;
}

.right-image {
  width: 39.9%;
  height: auto;
}
.right-image img {
  opacity: 1;
  float: right;
  padding: 20px 20px 20px 0;
}

hr{
    margin-left: 0 !important;
}
 .m2-text ul {
    padding-left: 150px;
}

@media screen and (max-width: 480px) {
  #accordion-container{
    width: 100%;
  }
  
  .m2-one-half{
    width:100%
  }
  
  .show {
    display: flex;
    flex-direction: column;
  }
  
  #expand-icon {
    padding-top: 0;
  }
  
  .m2-text ul{
    padding-left: 28px !important;
  }
  
  .accordion-title {
    width: 100%;
    padding: 19px 0px 18px 0px;
    border-radius: 3px;
    background-color: #fff;
    border-bottom: 1px solid #D1CAC8;
  }
  
  #accordion-title-block {
    font-size: 22px !important;
    line-height: 25px;
    letter-spacing: 0.2px;
  }
}

