/*first part comes here*/

.content{
    margin-top: 3%;
    width: 100%;
    padding: 20px;
    display: block;
}

.content h1{
    font-size: 30px;
    color: #222;
}

.content p{
    margin: 10px 0 30px;
    color: #333;
    font-size: 20px;
}

.img{
    width: auto;
    height: 54vh;
    margin: 0 0 10% 35%;
    left: 30%;
}

/*end of first part*/

/* list comes here*/

.head{
    display: flex;
    flex-direction: row;
    padding: 30px;
    justify-content: space-between;
    background-color: rgb(152, 152, 206);
}

.picha1{
    width: 62%;
    height: 56vh;
}

.box1{
    padding: 20px;
    margin-left: 30px;
}

.box1 h3{
    font-size: x-large;
    font-weight: bolder;
}

.box1 ul li{
    margin: 10px 0 30px;
    color: #333;
    font-size: 16px;
}

/*end of list*/

.tar{
    margin-top: 15px;
    width: 100%;
    padding-left: 25%;
    padding-right: 20%;
}

.heading{
    padding: 10px;
    padding: 2px;
}

.heading h2{
    text-align: center;
    font-weight: bolder;
    color: #222;
}

.heading p{
    padding: 10px;
    color: #222;
}

/*list ends here*/

/*Accordon starts here*/

.accordion{
    margin: 60px auto;
    width: 60%;
}

.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*/

/*final part starts here*/

.final{
    display: flex;
    background-color:  rgb(152, 152, 206);
    width: 100%;
    justify-content: space-around;
}

.text{
    align-content: center;
    padding: 20px;
}

.text h1{
    font-weight: bolder;
    color: #222;
}

.text p{
    color: #333;
    max-width: 400px;
}

.image{
    width: auto;
    height: 54vh;
}