.button {
    background: var(--wp--preset--gradient--green-to-blue);
    color: var(--wp--preset--color--light);
    border-radius: 8px;
    font-size: var(--wp--preset--font-size--icons-button);
    font-family: var(--wp--preset--font-family--manjari) !important;
    cursor: pointer;
    font-weight: 700;
    line-height: normal;
    transition: all .3s ease-in-out;
    text-wrap: nowrap;
    position: relative;
    z-index: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 32px;
    padding-right: 32px;
}
.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--wp--preset--color--button-hover); 
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
    border-radius: 8px;
}
.button:hover::before {
    opacity: 1;
}
.border-button{
    border: 2px solid var(--wp--preset--color--light);
    background-color: transparent;
    color: var(--wp--preset--color--light);
    font-size: var(--wp--preset--font-size--p);
    font-family: var(--wp--preset--font-family--manjari) !important;
    cursor: pointer;
    font-weight: 700;
    transition: background-color .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out;
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 8px;
}
.border-button:hover {
    background-color: var(--wp--preset--color--gray);
    color: var(--wp--preset--color--navy-blue);
    border-color: var(--wp--preset--color--gray);
}

.big-button{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--wp--preset--gradient--green-to-green);
    color: var(--wp--preset--color--light);
    border-radius: 16px;
    width: 100%;
    z-index: 0;
}
.big-button span:first-child{
    font-family: var(--wp--preset--font-family--manjari);
    font-size: var(--wp--preset--font-size--h-4);
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 0.4em;
}
.big-button span:last-child{
    font-family: var(--wp--preset--font-family--manjari);
    font-size: var(--wp--preset--font-size--p);
    font-weight: 400;
}
.big-button::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--wp--preset--color--green-hover); 
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
    border-radius: 16px;
}
.big-button:hover::before {
    opacity: 1;
}
.button-contact{
    display: inline-flex;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    word-break: break-word;
    z-index: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border: 1px solid var(--wp--preset--color--navy-blue);
    width: 100%;
    align-items: center;
    gap: 10px ;
}
.button-contact p{
    color: var(--wp--preset--color--navy-blue);
    font-size: var(--wp--preset--font-size--icons-button);
    font-family: var(--wp--preset--font-family--manjari) !important;
    font-weight: 700;
    line-height: normal;
    transition: all .3s ease-in-out;
    transform: translateY(2px);
}
.button-contact:hover {
    background-color: var(--wp--preset--color--navy-blue);
}
.button-contact:hover p {
    color: var(--wp--preset--color--light);
}

.button-contact-home{
    display: inline-flex;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    word-break: break-word;
    z-index: 0;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border: 1px solid var(--wp--preset--color--light);
    width: 100%;
    align-items: center;
    gap: 10px ;
}
.button-contact-home p{
    color: var(--wp--preset--color--light) !important;
    font-size: var(--wp--preset--font-size--icons-button);
    font-family: var(--wp--preset--font-family--manjari) !important;
    font-weight: 700;
    line-height: normal;
    transition: all .3s ease-in-out;
    transform: translateY(2px);
}
.button-contact-home:hover {
    background-color: var(--wp--preset--color--light);
}
.button-contact-home:hover p {
    color: var(--wp--preset--color--navy-blue) !important;
}

@media not all and (min-width: 1281px) {
    
}
@media not all and (min-width: 1025px) {
    .big-button{
        padding: 20px;
    }
}
@media not all and (min-width: 769px) {
   
}
@media not all and (min-width: 641px) {
    .big-button{
        padding: 20px;
    }
}
@media not all and (min-width: 391px) {
    
}