/*
Theme Name: SVI Network Theme
Theme URI: 
Author: You
Author URI: 
Description: A very basic WordPress theme with Bootstrap.
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-bootstrap-theme
*/


/*
 * Colors ========
 */

:root {
  --svired: #661713; 
}

.bg-svired {
	background-color: var(--svired) !important;
}


.logo {
    max-width: 200px;
    /* Adjust this value to your desired maximum width */
    height: auto;
}


.cfs-smallest {
	font-size: 14px;
}

.menu-container {
  display: flex; /* Make the menu items a flexbox */
  list-style: none; /* Remove default list styling */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.menu-container ul {
  display: flex; /* Set display to flex for horizontal layout */
  list-style: none; /* Remove default list styling */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.menu-container li {
  margin-right: 10px; /* Add spacing between list items */
}

.menu-container a {
  text-decoration: none; /* Remove underline */
  color: #000; /* Set text color (adjust as needed) */
}

.menu-container a:hover {
  color: #333; /* Change color on hover (optional) */
}




/* Compat */
.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 10px 3px 10px;
  text-align: center;
}

.wp-caption img {
  max-width: 98%!important;
  height: auto;
}




