
.btn {
    border-radius: 100px;
    padding: 13px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    display: block;
    color: white;
}
.btn--primary {
    background-color: var(--red);
}
.btn--secondary {
    background-color: var(--blue);
}

.btn--ghost{
    background:transparent;
    color:var(--red);
    border-color:var(--red);
    border:solid 1px var(--red);
}
.btn--ghost:hover{
    background:rgba(176,53,53,.06);
}


.site-header__socials-link {
    display: inline-block;
    width: 43px;
    height: 43px;
    border-radius: 100%;
    background-color: var(--grey);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-header__socials-link[aria-label="Telegram"] {
    background-image: url('../images/tg.svg');
}


.site-header__socials-link[aria-label="WhatsApp"] {
    background-image: url('../images/wh.svg');
}

.icons-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
}

.icons-wrapper a {
    width: 43px;
    height: 43px;
    display: flex;
    border-radius: 100%;
    background-color: var(--red);
    align-items: center;
    justify-content: center;
}

.icons-wrapper a img {
    object-fit: contain;
    max-width: 24px;
    max-height: 24px;
}


