  /* Style the buttons that are used to open and close the accordion panel */
  .accordion2 span{
    font-size: 14px;
    font-weight: bold;
    color:#000 ;
  }
  .accordion2 {
      background-color: #eee;
      color: #444;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      text-align: left;
      border: none;
      outline: none;
      transition: 0.4s;
      margin-bottom: 5px;
      margin-top: 5px;
  }
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active2, .accordion2:hover {
      background-color: #ccc;
  }
  /* Style the accordion panel. Note: hidden by default */
  .panel2 {
      padding: 0 18px;
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
  }
  .panel2 h5{
  	color:#002A55;
  	font-size: 16px;
  }
  .accordion2:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
.active2:after {
      content: "\2796"; /* Unicode character for "minus" sign (-) */
      float: right;
  }

 .pdt20{
	padding-top: 20px;
 }
 .box-text-accom-page {
    padding: 15px 20px 20px;
}
.box-text-accom-page .third-button {
    display: table;
    margin: 0 auto;
    background: #FFAE00;
    /*width: 40%;*/
}
.third-button a {
    color: #fff;
    display: block;
    padding: 10px 10px;
    text-align: center;
    transition: all .5s ease-in-out;
}
.text-content h3{
      font-size: 20px;
      text-align: center;
      
}
.text-content p{
      text-align: center;
}

@media screen and (min-width: 768px) {
	.accordion2 span{
    font-size: 17px;
    font-weight: bold;
    color:#000 ;
    }
    .panel2 h5{
  	color:#002A55;
  	font-size: 18px;
  	}
    .text-content h3{
      font-size: 24px;
      text-align: left;
     
    }
    .text-content p{
      text-align: justify;
    }
}

@media screen and (min-width: 992px) {
  .text-content h3{
      font-size: 28px;
      text-align: left;
      
    }
  .text-content p{
      text-align: justify;
    }
}