@charset "UTF-8";
/* ------------------------------
- .contentArea
------------------------------ */
.contentArea {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}
@media only screen and (max-width: 640px) {
    .contentArea {
        padding: 10% 0;
    }
}
/* ------------------------------
- .section
------------------------------ */
.section{
    margin-bottom: 50px;
}
.section:last-child{
    margin-bottom: 0;
}
.section_heading{
    font-size: 28px;
    color: #f3993a;
    padding-bottom: 27px;
    margin-bottom: 40px;
    border-bottom:  2px solid #f3993a;
}
@media only screen and (max-width: 640px) {
    .section {
        padding: 5% 0;
        margin-bottom: 7%;
    }
    .section:last-child{
        margin-bottom: 0;
    }
    .section_heading {
        font-size: 20px;
    }
}
/* ------------------------------
- .areaInformation
------------------------------ */
.areaInformationPanel{
    width: 48%;
    margin-bottom: 50px;
}
.areaInformationPanel_heading{
  color: #fff;
  background-color: #f3993a;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
.areaInformationPanel_body {
  padding: 0 15px;
}
.areaInformationPanel_list{
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 15px;
  text-indent: -15px;
}
.areaInformationPanel_list:last-child{
    margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
    .areaInformationPanel{
        width: 100%;
        margin-bottom: 15%;
    }
    .areaInformationPanel_heading{
        padding: 20px;
        margin-bottom: 5%;
    }
    .areaInformationPanel_list{
        margin-bottom: 7%;
        font-size: 12px;
    }
}
