.sp-wrapper{
    max-width: 980px;
    margin: 0 auto;
}
body{
    background-color: #fff;
}
p{
    line-height: 1.8;
}
h1{
    margin-bottom: 20px;
    font-size: 34px;
}
h4{
    font-size: 20px;
    margin: 60px 0 30px;
}
.sp-banner{
    margin-top: 60px;
}
.sp-banner p,.sp-section p{
   margin-bottom: 40px;
}
.sp-list p{
    margin-bottom: 10px;
}
.sp-section {
    margin-top: 70px;
}
.sp-list ul li{
    font-size: 16px;
    margin-top: 10px;
    font-weight: 300;
    display: flex;
    align-items: center;
}
.sp-list ul li:last-child{
    margin-bottom: 10px;
}
.sp-list ul li:before{
    content: '';
    background: url(../images/tickiconlist.png) no-repeat;
    width: 18px;
    height: 18px;
    background-size: 100%;
    display: inline-block;
    margin-right: 6px;
}

.sp-accordian {
    text-align: left;
    margin-top: 70px;
    width: 90%;
    margin: 0 auto;
}
.sp-accordianBox {
    border: 1px solid #E8E8E8;
    padding: 0 30px;
    border-radius: 6px;
    margin-top: 15px;
}
.sp-accordianBox h3 {
    margin: 0;
    padding: 25px 0;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.sp-accordianBox h3:before,.sp-accordianBox h3:after {
    content: "";
    position: absolute;
    top: calc(0%);
    right: 0;
    bottom: 0;
    height: 2px;
    margin: auto;
    width: 16px;
    background: #000;
 
}
.sp-accordianBox h3:after{
    transform: rotate(90deg);
    transition: transform 0.4s ease;
}
.sp-accordianBox h3.active:after {
    content: "";
    transform: rotate(0);
}
.sp-accordianBox .zp-accordionIn{
    display: none;
    padding-bottom: 25px;
}