.btn{
    font-size: 16px;
    height: 44px;
    line-height: 44px;
    color: #fff;
    background: var(--green);
    border-radius: 50px;
    padding: 0 19px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn:hover{
    opacity: 0.75;
}

.btn-bordergreen{
    border: 1px solid var(--green);
    color: var(--green);
    background: #fff;
}

.btn-icon-download::before{
    content:"";
    width: 24px;
    height: 24px;
    background: url(/wp-content/themes/quatronics/img/icons/download-green.png) center / 24px no-repeat;
    display: block;
}

.btn-border-graybg{
    border: 1px solid #111111;
    color: #111111;
    background: #EEEBF0;
}

.btn-darkgreen{
    background: #005B08;
}

.btn-bigger{
    height: 46px;
    line-height: 46px;
    padding: 0px 50px;
    font-size: 18px;
}


/* @media (max-width: 767px) {

    .btn-bigger{
        width: 100%;
    }

} */