/*
 * From the Bootstrap 4.0 blog example
 * See: https://getbootstrap.com/docs/4.0/examples/blog/blog.css
 */

/*
 * Globals
 */

@media (min-width: 48em) {
  html {
    font-size: 18px;
  }
}

body {
  color: #333333;
  font-weight: 300;
  line-height: 30px;
  background-color: #dcd3e2;
  font-family: "Source Sans Pro", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;

}

.covid {
  background-color: rgb(226, 217, 217);
  padding: 10px;
  margin-bottom: 30px;
}
.covid-header {
  text-align: center;
  color: red;
}
.bestofworcester {
  background-color: #f69e8c;
  padding: 10px;
  margin-bottom: 30px;
}

.cat-purple {
	color: #8224e3;
}

.cat-pink {
	background-color: #f69e8c;
}

.testimonial-carousel {
	background-color: #c8ace2;
	min-height: 155px;
}

a {
	color: #8224e3;
}
/*
a:hover, a:focus {
	text-decoration: none;
	color: #f69e8c;
}
*/

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 300;
  color: #8224e3;
}
  a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
  }

h1 {
	font-size: 2.7rem;
}

/*
 * Override Bootstrap's default container.
 */

.container {
  max-width: 1200px;
}

.separator {
	border-top: 1px #f69e8c solid;
}

/*
 * Masthead for nav
 */

.blog-masthead {
  margin-bottom: 3rem;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -.1rem .25rem rgba(0,0,0,.1);
          box-shadow: inset 0 -.1rem .25rem rgba(0,0,0,.1);
}

nav.navbar > .container {
	border-bottom: #cdb5e2 1px solid;
}

.nav-spacer {
	min-height: 150px;
}

.navbar {
	background-color: #dcd3e2;
}

/* Nav links */
.navbar-light .navbar-nav .nav-link {
  position: relative;
  padding: 1rem;
  font-weight: 500;
  color: #f69e8c;
}
.navbar-light .navbar-nav .nav-link:hover,
.nav-link:focus {
  color: #8224e3;
  border-top: 1px solid #8224e3;
  background-color: transparent;
}

.navbar-light .navbar-nav .active>.nav-link {
	color: #8224e3;
	border-top: 1px solid #8224e3;
}
/* Active state gets a caret at the bottom */
.nav-link.active {
  color: red;
}
.nav-link.active:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -.3rem;
  vertical-align: middle;
  content: "";
  border-right: .3rem solid transparent;
  border-bottom: .3rem solid;
  border-left: .3rem solid transparent;
}

.card-img-top {
	width: 230px;
	height: auto;
	max-width: 100%;
	margin: 0 10px 0 0 ;
}

.service-col {
	padding-right: 5px;
	padding-left: 5px;
}

/*
 * Blog name and description
 */

.site-header {
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}
.blog-title {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: normal;
}
.blog-description {
  font-size: 1.1rem;
  color: #999;
}


figure.left-pic {
	margin-right: 25px;
	margin-bottom: 5px;
}

@media (min-width: 680px) {
  figure.left-pic {
    float: left;
  }
}

figure.right-pic {
	margin-left: 0px;
	margin-bottom: 5px;
	border-radius: 5px;
}

@media (min-width: 680px) {
  figure.right-pic {
    margin-left: 25px;
    float: right;
  }
}

div.right-pic h3 {
	border-top: #cdb5e2 1px solid;
	margin-left: 0px;
}

div.left-pic h3 {
	border-top: #cdb5e2 1px solid;
	margin-right: 10px;
}

@media (min-width: 40em) {
  .blog-title {
    font-size: 3.5rem;
  }
}

.services-row {
	padding-top: 50px;
}

/*
 * Main column and sidebar layout
 */

/* Sidebar modules for boxing content */
.sidebar-module {
  padding: 1rem;
  /*margin: 0 -1rem 1rem;*/
}
.sidebar-module-inset {
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: .25rem;
}
.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
  margin-bottom: 0;
}


/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}
.blog-pagination > .btn {
  border-radius: 2rem;
}


/*
 * Blog posts
 */

.blog-post {
  margin-bottom: 4rem;
}
.blog-post-title {
  margin-bottom: .25rem;
  font-size: 2.5rem;
}
.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #999;
}
article img {
  max-width: 100%;
  height: auto;
  margin: 13px auto;
}
/*// add margin to sharing icons (except the first one)*/
.sharing-icons .nav-item+.nav-item {
  margin-left: 1rem;
}
/* add a margin above the disqus comments only if the preceeding sharing section
is present (because sharing can be hidden, and the margin isn't always needed */
section + #disqus_thread {
  margin-top: 1rem;
}
/*
article blockquote {
  margin-bottom: $spacer;
  font-size: $blockquote-font-size;
}
*/
/*// ensure that code text doesnt butt up against the background change*/
article div.highlight {
  padding: 5px 5px 0px 5px;
}

.table {
  border-bottom-width: 0px;
}
.table td, .table th {
	border-top: 0px;
	border-bottom: 0px;
}
/*
 * Footer
 */

.site-footer {
  padding: 2.5rem 0;
  color: white;
  text-align: center;
  background-color: #333333;
  border-top: .05rem solid #e5e5e5;
}
.blog-footer p:last-child {
  margin-bottom: 0;
}

.site-footer .h3, .site-footer .h5{
	font-weight: 600;
}

.site-footer .h3 {
	text-transform: uppercase;
	font-size: 28px;
}

.site-footer a {
	text-decoration: none;
	color: inherit	
}
.site-footer a:hover {
	color: gray;
}
.site-footer .h3, .site-footer .h5, .site-footer table {
	color: white;
}
.copyright-footer {
  padding: 2.5rem 0;
  text-align: center;
  background-color: grey;
  font-size: .9rem;
  color: white;
}
