.page-numbers {
    margin: 0px 35px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 24px;
    border: none;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}
.page-numbers:hover {
    box-shadow: none;
    border: none;
    outline: none;
    background: var(--primary-color);
    color: var(--white-color);
}
.rotate-icon{
    transform: rotate(-60deg);
}
.title-cap{
    text-transform: uppercase;
}
.contact-form-btn{
    background: transparent;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    padding-bottom: 10px;
}
.contact-form-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
}