.hidden {
    display: none;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap {
    gap: 3rem;
}

.bold {
    font-weight: 800;
}

button {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-inline: 2rem;
    font-weight: 800;
    border-radius: 1.8rem;
    color: white;
    border: 0px;
    font-size: 1rem;
    box-shadow: 0px 20px 30px #ffe7d5;
}

.title-container > * {
    display: inline-block;
}

.title-container > span {
    font-size: 20px;
}

.title-container {
    width: max-content;
    height: 5vh;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-title {
    background : linear-gradient(90deg, #f06c06, #ffa437);
    font-size: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
}

.hidden {
    display: none;
}

.fontSmall {
    font-size: 1.1rem;
}

@media screen and (max-width: 580px) {
    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }
    
    .showResp {
        display: block;
    }

    .respflex-col {
        display: flex;
        flex-direction: column;
    }

    .reverse {
        flex-direction: column-reverse;
    }
}
