@charset "UTF-8";
/* CSS Document */

/*Font groupd*/
/*
.inter-unique {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

/*Color group*/
/* 
Soft off-white background: F5F5F7
   Nav bar text letters: #1D1D1F
*/

body {font-family: "Inter", sans-serif;
}
h1, h2, h3, h3, h4, h5, h6 {font-family: "Inter", sans-serif;
}

/*CENTER AN IMG - IMG IS AN INLINE ELEMENT*/

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*NAV STYLE*/

.navbar-custom {
	font-family:"Inter", sans-serif;
	background-color: #F5F5F7;
}

/* Background color for navbar */

.navbar-custom .navbar-nav {
	justify-content:center;
	width:100%;
}

/* TEXT COLOR FOR NAV */

.navbar-custom .navbar-brand,
.navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link {
    color: #1D1D1F;
	opacity: 0.7;
}

.navbar-custom .dropdown-item {
	color: #1D1D1F;
	opacity: 1;
	font-size: 0.9rem;
	pading-left:10px;
}

.navbar-custom .dropdown-menu .dropdown-item:hover,
.navbar-custom .dropdown-menu .dropdown-item:focus {
	background-color: rgba(29, 29, 31, 0.06); /* visible but subtle */
	color: #1D1D1F;
}

/* Background and text colors for current page link and links on hover and focus */

.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover,      
.navbar-custom .dropdown-item:focus {     
	background-color: transparent;
	color: #1D1D1F;
	opacity: 1;
}

/* Border and text colors for menu icon on small screens */

.custom-toggler.navbar-toggler {
    border-color: #1D1D1F;
    color: #1D1D1F;
}

/* Hamburger icon - use same rgb values as previous rule for stroke */

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");

}

