
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f8ff;
} */

.accordion-container2{
    padding-top: 120px;
    padding-bottom: 260px; /*Important: to add space for footer*/
    margin: 40px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.accordion-container2 h4{
    color: #333;
    margin: 0 auto;
    padding: 0 auto;
    font-size: 30px;
}

.accordion-container2 h5{
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 0 auto;
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.accordion-container2 .tab{
    position: relative;
    background: #8e8e8eb3; /*Here it's where you change teh color*/
    padding: 30px 40px; /*The padding for info*/
    box-shadow: 0 20px 25px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-container2 .tab input{
    appearance: none;
}

.accordion-container2 .tab label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accordion-container2 .tab label::after{
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2em;
    color: rgb(255, 255, 255);
    transition: transform 1s;
}

.accordion-container2 .tab:hover label::after{
    color: #000000;
}

.accordion-container2 .tab input:checked ~ label::after{
    transform: rotate(135deg);
    color: #000000;
}

.accordion-container2 .tab label h2{
    width: 40px;
    height: 40px;
    background: #ffffff; /*This is to change teh background after clikc*/
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 1.5em;
    border-radius: 5px;
    margin-right: 10px;
    
}

.accordion-container2 h4{
    margin-top: 56px;
    font-size: 24px;
    font-weight: 500;
    color:black;
    
}

.accordion-container2 h4 span{
    color: #000000;
    font-weight: 700;
}

.accordion-container2 .tab input:checked ~ label h2{ /*it's able to make the h2 to show expanded the entire box div*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 0.4);  /*This is where you change the number label*/
    font-size: 8em;
    justify-content: flex-end;
    padding: 20px;

}

/* .accordion-container2 .tab:nth-child(3) label h2{
    background: linear-gradient(135deg, pink, rgb(230, 115, 62));
}


.accordion-container2 .tab:nth-child(4) label h2{
    background: linear-gradient(135deg, pink, rgb(97, 120, 223));
}

.accordion-container2 .tab:nth-child(5) label h2{
    background: linear-gradient(135deg, rgb(255, 198, 192), rgb(223, 97, 168));
}

.accordion-container2 .tab:nth-child(6) label h2{
    background: linear-gradient(135deg, rgb(255, 190, 201), rgb(185, 198, 255));
} */


.accordion-container2 .tab label h3{
    position: relative;
    font-weight: 700;
    color: #000000;
    z-index: 10;
    margin-bottom: 10px;
}

.accordion-container2 .tab input:checked ~ label h3{
    color: black;
}

.accordion-container2 .tab .content{
    max-height: 0;
    transition: 1s;
    overflow: hidden;
}

.accordion-container2 .tab input:checked ~ .content{
    max-height: 100vh;
}

.accordion-container2 .tab .content p{
    position: relative;
    padding: 10px 0;
    padding-right: 20%;
    color:black;
    z-index: 10;
}


.accordion-container2 .tab .content ul{
    margin-top: 6px;

}

.accordion-container2 .tab .content ul li{
    position: relative;
    padding: 10px 0;
    color: black;
    z-index: 10;
}

.accordion-container2 .tab .content ul.no-padding li{
    padding: 0;
}

.accordion-container2 .tab img{
    height:30vh;
    width: fit-content;
    position: relative;
    padding: 10px 0;
    z-index: 11;
}

.accordion-container2 .tab .content code{
    color: rgb(71, 77, 243);
}

.rounded-corner{
    border-radius: 30px;
}

.break2{
    width: 20%;
    margin: 0 auto;
    padding: 0;
}

button.get-to-know{
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, rgb(79, 64, 210), rgb(82, 103, 211));
    color: #fff;
}

button.get-to-know:hover{
    background: linear-gradient(90deg,rgb(82, 103, 211), rgb(79, 64, 210));
    color: #fff;
    box-shadow: 12px 12px 6px rgba(0, 0, 0, 0.180);
}

button.vocab-button{
    width: 100%;
    display: block;
    margin: 8px;
    margin-bottom: 10px;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, rgb(79, 64, 210), rgb(82, 103, 211));
    color: #fff;
    font-size: 15px;
}

button.vocab-button:hover{
    background: linear-gradient(90deg,rgb(82, 103, 211), rgb(79, 64, 210));
    color: #fff;
    box-shadow: 12px 12px 6px rgba(0, 0, 0, 0.180);
}


.img-p-together{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.img-p-together p{
    display: inline;
    padding: 0;
    margin: 0;
}

.divider-line{
    margin-top: 20px;
}