/*heading part starts here*/
.heading{
    align-items: center;
}

.heading h1{
    text-align: center;
    color: #333;
}

.heading p{
    text-align: center;
    color: #333;
    font-weight: bolder;
}

.heading img{
    height: 250px;
    margin-left: 43%;
}

/*heading part ends here*/

/*text part starts here*/

.text{
    padding: 30px;
    margin: 8px;
}

.text p{
    font-size: 20px;
    color: #222;
    letter-spacing: normal;

}

/*Accordon starts here*/

.accordion{
    margin: 60px auto;
    width: 600px;
}

.accordion li{
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.accordion li label{
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

label::before{
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content{
    max-height: 550px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before{
    content: '-';
}

.content span{
    font-weight: bold;
}
label{
    font-weight: bolder;
}
/*Accordon ends here*/
