.special-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: fit-content;
    background: #FF8F00;
    border-radius: 5px;
    font-family: Outfit;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;

    padding: 15px 20px;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.special-btn:hover {
    background: #e98401;
}

.special-btn-trans {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: fit-content;
    background: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 10px;
    text-wrap: nowrap;
    font-family: Outfit;
    text-decoration: none;
    color: #FFFFFF;

    padding: 15px 18px;
    font-size: 1.2rem;
    line-height: 1;

    transition: all 0.3s ease;
}

.special-btn-trans:hover {
    background-color: #FF8F00;
    border-color: #FF8F00;
}

.special-readmor {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    background: transparent;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: 'Open Sans';
    font-weight: 400;
    border: 2px solid #FF8F00;
    color: #FF8F00;
    transition: all 0.5s;

    padding: 10px 18px;
    font-size: 1.2rem;
    line-height: 1;
}

.special-readmor:hover {
    /* boroder: 2px solid #FF8F00; */
    background-color: #FF8F00;
    color: #FFFFFF;
}




.form-gourp {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 32px;
}

.form-gourp label {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 14px;
    color: #333333;
}

.form-gourp label span {
    color: #FF8F00;
}

.form-gourp input {
    margin-top: 11px;
    box-sizing: border-box;
    width: 100%;
    background: #F7F7F7;
    border: 0.96875px solid #0070FF;
    border-radius: 3.875px;
    padding: 15px 20px;
}


.form-gourp textarea {
    margin-top: 11px;
    box-sizing: border-box;
    width: 100%;
    background: #F7F7F7;
    border: 0.96875px solid #0070FF;
    border-radius: 3.875px;
    padding: 15px 20px;
    resize: none;
}

input::placeholder {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 17.4375px;
    line-height: 17px;
    color: rgba(34, 34, 34, 0.4);
}

input {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 17.4375px;
    line-height: 17px;
}

input[type="submit"] {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #FF8F00;
    border-radius: 7.75px;
    border: none;

    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    color: #FFFFFF;
    padding: 18px 18px;
    font-size: 1.4rem;
    line-height: 1;
}



/* ********************************** */
/* ********* Notification *********** */
/* ********************************** */



.alert-container {
    width: fit-content;
    height: fit-content;
    padding: 7px 15px;
    display: none;
    justify-content: start;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    background-color: rgba(197, 224, 233, 0.842);
    border: 1px solid #0070FF;
    border-radius: 10px;
}

.alert-container.success {
    color: green !important;
}

.alert-container.error {
    color: red !important;
}

.alert-container.warning {
    color: rgb(233, 213, 2) !important;
}

.alert-container img {
    width: 17px;
    color: white;
}

.alert-container .close img {
    margin-left: 10px;
    cursor: pointer;
}

.alert-container p {
    font-size: 1.2rem;
    font-family: roboto;
    transform: translateY(8px);
}







@media (max-width: 992px) {
    .special-btn {
        width: fit-content;
        height: fit-content;
        padding: 13px 18px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1;
    }


    .special-btn-trans {
        width: fit-content;
        height: fit-content;
        padding: 10px 18px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1;
    }

    .special-readmor {
        width: fit-content;
        height: fit-content;
        background: transparent;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        padding: 10px 18px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1;
    }


    input[type="submit"] {
        padding: 10px 18px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1;
    }


}