@import "fonts.css";
@import "base.css";
@import "header-footer.css";
@import "bricks.css";

/*------------------------*/
/* theme colors
/*------------------------*/

:root {
    --textDark: rgba(38, 50, 56, 1);
    --textMedium: rgba(38, 50, 56, 0.7);
    --borderMedium: rgba(38, 50, 56, 0.2); 
    --borderLight: rgba(38, 50, 56, 0.075);
    --accent: #ff6600;
    --textAccent: #010d1a;
    --light: rgba(38, 50, 56, 0.035);
}
/*------------------------*/
/* turn grayscale off
/*------------------------*/

img {filter: grayscale(0%);}


/*------------------------*/
/* colorize_image
/*------------------------*/

.colorize_image {filter: contrast(1) sepia(1) hue-rotate(160deg) grayscale(0.8)!important;}

/*------------------------*/
/* black_2_textDark
/*------------------------*/

.map::after, .black_2_textDark {filter: contrast(0.7) sepia(1) hue-rotate(160deg)!important;}

/*------------------------*/
/* black_2_textMedium
/*------------------------*/

.black_2_textMedium {filter: contrast(0.3) sepia(0.3) hue-rotate(160deg) brightness(1.4)!important;}



/* Styling for bullet points */
ul, ol {
    margin: 0; /* Removes excess margins around the list */
    padding-left: 1.5rem; /* Proper left indentation for bullets */
}

/* Add space between individual list items */
ul li, ol li {
    margin-bottom: 0.5rem; /* Adjust spacing between items */
}

/* Optional: Adjust nested lists */
ul ul, ol ol {
    margin-top: 0.25rem; /* Space before nested list */
    margin-bottom: 0.25rem; /* Space after nested list */
}