:root {
    --main-color: rgb(214, 69, 44);
    --error-red: #D7462E;
    --success-green: #04926E;
}

h1 {
    font-size: 22px;
    font-weight: 500;
    color: var(--main-color);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(60, 56, 53);
}

h3 {
    padding-bottom: 10px;
}

.over-shadow-light {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.main-color {
    color: var(--main-color);
}

.flex {
    display: flex;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-auto {
    flex-shrink: 1;
}

.flex.hide-empty>div:empty {
    display: none;
}

.grid {
    display: grid;
}

.wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: column;
}

.flex-column {
    flex-direction: row;
}

.flex.distribute>div {
    flex: 1 1;
}

.gap-big {
    gap: 30px;
}

.gap {
    gap: 20px;
}

.gap-small {
    gap: 10px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.align-bottom>div {
    align-self: flex-end;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.padding-top {
    padding-top: 20px;
}

.padding-bottom {
    padding-bottom: 20px;
}

.margin-left-small {
    margin-left: 10px !important;
}

.margin-left {
    margin-left: 20px !important;
}

.margin-left-big {
    margin-left: 30px !important;
}

.margin-right-small {
    margin-right: 10px !important;
}

.margin-right {
    margin-right: 20px !important;
}

.margin-right-big {
    margin-right: 30px !important;
}