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

/*Font group*/
/*Sans Serif font for headline: 
    .lato-light {
      font-family: "Lato", sans-serif;
      font-weight: 300;
      font-style: normal;
    }

    .lato-regular {
      font-family: "Lato", sans-serif;
      font-weight: 400;
      font-style: normal;
    }

    .lato-bold {
      font-family: "Lato", sans-serif;
      font-weight: 700;
      font-style: normal;
    }
*/
/*Serif font for paragraph: 
    .pt-serif-regular {
      font-family: "PT Serif", serif;
      font-weight: 400;
      font-style: normal;
    }

    .pt-serif-bold {
      font-family: "PT Serif", serif;
      font-weight: 700;
      font-style: normal;
    }
*/


/*Color Group*/
/*Parisian Evenin:
  	cool green: #9EBAAF
	dark blue: #19191F
	light peach: #FFEEE0
	salmon: #E3776C
    dark red salmon: #913A31
	dark burgundy: #201624
*/
/*Masson:
  	light green: #F2F1DC
	olive green: #BFBA9F
	light brown: #8C7E6D
	dark brown: #262120
	dark salmon: #8C5D58
*/

body {font-family: "PT Serif", serif;
}
h1, h2, h3, h3, h4, h5, h6 {font-family: 'Lato', sans-serif;
}

/*center an image - img is an inline element*/
img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*Navigation Style*/
.navbar-custom {font-family: 'Lato', sans-serif;
}

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #E3776C;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #FFEEE0;
}
/* 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: #913A31;
    color: #fff;
    padding-left: 10px;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: rgba(236,240,241,1.00);
    color: #fff;
}
/* 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");
}

/*navbar-brand logo*/
.navbar-brand {
    background-image: url(../images/mp_logo.png);
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: 6% center;
    padding-left: 70px;
}

