@import url(light.css);
/* @import url(dark.css) (prefers-color-scheme: dark); */

:root {
    --md-ref-typeface-brand: "Golos Text", sans-serif;
    --md-ref-typeface-plain: "Golos Text", sans-serif;
}

.aim-gradient {
    background-image: linear-gradient(180deg, #2E56A7 0%, #BB6DE5 100%);
    color: transparent;
    background-clip: text;
}

.card2 {
    padding: 12px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* 2 columns */
    /* grid-template-rows: repeat(2, 1fr); */
    /* 4 rows */
    gap: 20px;
    /* Adjust spacing between images */
}

.grid-item {
    border-radius: 10px;
    /* Adjust corner rounding as needed */
    overflow: hidden;
    /* Ensures rounded corners are applied to images */
    /* max-width: 350px; */
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    /* Prevents spacing below image */
}

.fi-50 {
    flex-basis: 50%;
    flex-grow: 0;
}

.flex2 {
    display: flex;
}

@media screen and (width < 600px) {
    .flexr {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (width >=600px) {
    .flexr {
        display: flex;
        flex-direction: row;
    }
}

.col2 {
    flex-direction: column;
}

.aic {
    align-items: center;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.col2 {
    flex-direction: column;
}

.aic {
    align-items: center;
}

.jcc {
    justify-content: center;
}

.g12 {
    gap: 12px;
}

.g16 {
    gap: 16px;
}

.mt12 {
    margin-top: 12px;
}

.mt16 {
    margin-top: 16px;
}

.mt20 {
    margin-top: 20px;
}

.mt24 {
    margin-top: 24px;
}

.mt28 {
    margin-top: 28px;
}

.mt32 {
    margin-top: 32px;
}

.mt36 {
    margin-top: 36px;
}

.pt16 {
    padding-top: 16px;
}

.pt20 {
    padding-top: 20px;
}


.w100 {
    width: 100%;
}

.smaller {
    font-size: smaller;
}