* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "FiraSans";
}

@font-face {
    font-family: "FiraSans";
    src: url('../../Font/FiraSans-Light.otf');
    font-weight: 300;
}

@font-face {
    font-family: "FiraSans";
    src: url('../../Font/FiraSans-Regular.otf');
}

@font-face {
    font-family: "FiraSans";
    src: url('../../Font/FiraSans-Medium.otf');
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.margin-auto {
    margin: 0 auto;
}

.flex {
    display: flex;
}

.fx-wrap {
    flex-wrap: wrap;
}

.fx-nowrap {
    flex-wrap: nowrap;
}

.gap-4 {
    gap: 4px;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 10px;
}

.gap-14 {
    gap: 14px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-22 {
    gap: 22px;
}

.gap-24 {
    gap: 24px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-32 {
    gap: 32px;
}

.gap-35 {
    gap: 35px;
}

.gap-40 {
    gap: 40px;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.align-start {
    align-items: start;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
}

.full-width {
    width: 100%;
}

ul li {
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
}

a {
    text-decoration: unset;
    color: var(--a-tag-color);
}

.wrapper-sec {
    max-width: 1366px;
    margin: 0 auto;
}

.button-primary {
    padding: 15px 35px;
    border-radius: 100px;
    background-color: var(--color-secondry);
    color: var(--color-white);
}

.icon-cn {
    font-size: 0;
}

.icon_svg {
    color: var(--icon-default-color);
    font-size: 0;
}

.icon_svg .edit_icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: currentColor;
    -webkit-mask: var(--icon) no-repeat center;
    mask: var(--icon) no-repeat center;
}

.icon_svg .edit_icon.small {
    height: 20px;
    width: 20px;
}

.icon_svg .edit_icon.large {
    height: 28px;
    width: 28px;
}