.herobtn {
    width: fit-content;
    border-radius: 30px;
    background: #fff;
    border: 2px solid #A6192E;
    color: #1f1f1f;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.herobtn span {
    margin-left: 8px;
}

.herobtn:hover {
    background: #A6192E;
    color: #ffffff;
}


.contactbtn {
    width: fit-content;
    background: #A6192E;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.contactbtn:hover {
    transform: scale(1.05);
}

.navtogglebtn {
    background: var(--main);
    color: #fff;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1098px) {
    .herobtn {
        font-size: 16px;
        padding: 10px 25px;
    }

    .contactbtn {
        font-size: 14px;
    }
    
}

@media screen and (max-width: 1098px) {
    .herobtn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .contactbtn {
        font-size: 12px;
    }
    
}