@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

.debug {
    border: solid 1px crimson;
}
.hide {
    display: none !important;
}
.flex_row {
    display: flex;
    flex-direction: row;
}
.flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
}
.flex_column {
    display: flex;
    flex-direction: column;
}
.flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
}
.flex_wrap {
    flex-wrap: wrap;
}
.flex_between {
    justify-content: space-between;
}
.flex_around {
    justify-content: space-around;
}
.flex_center_x {
    justify-content: center;
}
.flex_center_y {
    align-items: center;
}
.flex_gap {
    gap: 30%;
}

.br_small {
    border-radius: 4px;
}
.br_medium {
    border-radius: 8px;
}
.br_big {
    border-radius: 24px;
}

.ff_serif_light {
    font-family: "Merriweather", serif;
    font-weight: 300;
}
.ff_serif_regular {
    font-family: "Merriweather", serif;
    font-weight: 400;
}
.ff_sansserif {
    font-family: sans-serif;
}

.button_small {
    padding: 2px;
}
.button_big {
    padding: 6px;
}

.p_fixed {
    position: fixed;
}
.p_absolute {
    position: absolute;
}

.fs_small {
    font-size: 12px;
}
.fs_medium {
    font-size: 14px;
}
.fs_big {
    font-size: 18px;
}
.fs_bigger {
    font-size: 20px;
}
.fs_large {
    font-size: 26px;
}

.transition_d {
    transition-duration: 0.2s;
}

.img_big {
    height: fit-content;
}

.w_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.w_2 {
    width: 33.3%;
}
.w_3 {
    width: 50%;
}
.w_4 {
    width: 66.6%;
}

@media only screen and (max-width: 900px) {
    .img_big {
        width: 100%;
    }
    .w_container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}