.datas{
    flex-direction: column;
}

.titles{
    margin-top: 1em;
    font-size: 3em;
}

.titles p{
    font-size: 1.5em;
}

textarea {
    width: 60%;
    height: 150px;
    resize: none;
    border: 1px solid var(--orange);
    border-radius: 50px;
    margin: 2em 0;
    color: var(--blue);
    padding: 2em 3em;
}

textarea::-webkit-scrollbar {
    display: none;
}

textarea:focus {
    outline: none;
}

textarea::placeholder {
    color: var(--blue);
}

.btn{
    width: 15%;
    background-color: var(--blue);
    font-family: 'KGSecondChancesSolid';
    border-radius: 0 !important;
}

.accordion{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin: 2em 0;
}

.mb-0 button{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.mb-0 button:hover{
    transform: scale(1) !important;
}

.card{
    overflow: hidden !important;
}

.card-body{
    font-size: 1.2em;
    color: var(--blue);
}

.card-header button::after{
    font-size: 25px;
    content: '\f077';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
    color: var(--orange);
}
  
.card-header button.collapsed::after{
    content: '\f078';
}


@media(max-width: 768px){
    textarea{
        width: 70%;
        height: 400px;
    }

    textarea::placeholder {
        font-family: 'KGSecondChancesSolid';
    }

    .btn{
        width: 30%;
        margin-bottom: 3em;
    }
  }