button {
    border: 0;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
}
.btn-big {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
}
.btn-medium {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
}
.btn-small {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    height: 40px;
}
.btn-primary {
    background-color: #B7201E;
    color: #FFFFFF;
}
.btn-primary-light {
    background-color: #FFDAD4;;
    color: #410001;
}
.btn-light {
    background: #FFDAD4;
    color: #410001;
}
.btn-light-white {
    background: #FFFFFF;
    color: #410001;
}

.btn-complex img{
    margin-right: 8px;
}

@media (max-width: 950px) {
    .btn-big {
        padding: 16px 24px;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1px;
    }
}