/* Head Titles */
.head-title h5,
.head-title-2 h5 {
    background: var(--yellow);
    color: var(--text-primary);
    font-weight: var(--fw-md);
    box-shadow: var(--box-shadow);
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 0px;
    text-align: center;
}

.head-title h3 {
    color: var(--text-dark);
    font-weight: var(--fw-xxxl);
    margin-bottom: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.head-title h3 span,
.head-title-2 h3 span {
    background: var(--yellow);
    color: var(--main);
    padding: 8px;
    border-radius: 5px;
}

.head-title-2 h3 {
    color: var(--secondary);
    font-weight: var(--fw-xxxl);
    margin-bottom: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.head-title h6 {
    color: var(--text-primary);
    font-weight: var(--fw-md);
    margin-bottom: 0px;
    text-align: center;
    line-height: 28px;
}

.head-title-2 h6 {
    color: var(--secondary);
    font-weight: var(--fw-md);
    margin-bottom: 0px;
    text-align: center;
    line-height: 28px;
}

.head-title,
.head-title-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

@media screen and (min-width: 1098px) {

    .head-title h3,
    .head-title-2 h3 {
        font-size: 35px;
    }

    .head-title h5,
    .head-title-2 h5 {
        font-size: 18px;
    }

    .head-title h6,
    .head-title-2 h6 {
        font-size: 16px;
        width: 60%;
        margin: auto;
    }
}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    .head-title h3,
    .head-title-2 h3 {
        font-size: 30px;
    }

    .head-title h5,
    .head-title-2 h5 {
        font-size: 16px;
    }

    .head-title h6,
    .head-title-2 h6 {
        font-size: 14px;
        width: 70%;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {

    .head-title h3,
    .head-title-2 h3 {
        font-size: 30px;
    }

    .head-title h5,
    .head-title-2 h5 {
        font-size: 16px;
    }

    .head-title h6,
    .head-title-2 h6 {
        font-size: 14px;
        width: 95%;
        margin: auto;
    }
}