.btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    border-radius: 5px;
    font-size: 14px !important;
    transition: 0.3s ease-in-out;
    padding: 10px 20px;
    font-weight: 500;
    height: fit-content;
    width: 150px;
}

.btn-site svg {
    margin-left: auto;
}

.btn-site svg line,
.btn-site svg path {
    transition: 0.3s ease-in-out;
}

.btn-site:hover svg line,
.btn-site:hover svg path {
    stroke: #ffffff;
}

.btn-blue-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px !important;
    width: 100px;
    height: 40px;
    background-color: var(--blue);
    color: #ffffff !important;
    font-weight: 400 !important;
}

.btn-brown {
    border: solid 1px var(--brown);
    color: var(--brown);
}

.btn-brown:hover {
    background-color: var(--brown);
    color: #ffffff;
}

.btn-blue {
    border: solid 1px var(--blue);
    color: var(--blue);
}

.btn-blue:hover {
    background-color: var(--blue);
    color: #ffffff;
}

.btn-white {
    border: solid 1px #ffffff;
    color: #ffffff;
}

.btn-white:hover {
    background-color: #ffffff;
    color: #ffffff;
}

.btn-orange {
    border: solid 1px var(--orange);
    color: var(--orange);
}

.btn-orange:hover {
    background-color: var(--orange);
    color: #ffffff;
}

.btn-green {
    border: solid 1px var(--green);
    color: var(--green);
}

.btn-green:hover {
    background-color: var(--green);
    color: #ffffff;
}

.btn-category {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    background-color: #ffffff;
    color: var(--blue);
    width: 195px;
    height: 45px;
    font-size: 14px;
    padding: 5px 10px 5px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.btn-category span {
    font-size: 12px;
    color: var(--gray2);
    margin-left: auto;
    font-weight: 300;
}



.btn-category svg {
    position: absolute;
    right: 20px;
    visibility: hidden;
    opacity: 0;
}

.btn-category svg line,
.btn-category svg path {
    transition: 0.3s ease-in-out;
}

.btn-category:hover span {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.btn-category:hover svg {
    visibility: visible;
    opacity: 1;
    right: 10px;
    transition: 0.3s ease-in-out;
}

.btn-white-blue {
    border: solid 1px #ffffff;
    color: #ffffff;
}

.btn-white-blue:hover {
    background-color: var(--blue);
    color: #ffffff;
    border: solid 1px var(--blue);
}

@media only screen and (max-width: 576px) {
    .btn-site {
        font-size: 10px;
        padding: 10px 10px;
        width: 130px;
    }
}