/*//////////////////////*/
/*///// Intro Text /////*/
/*//////////////////////*/
#intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
	width: 540px;
	height: 250px;
	border-radius: 6px;
    margin-right: 20px;
	background-color: #53bab6;
}
#intro-text h1 {
	font-size: 26px;
	font-weight: 700;
    font-style: italic;
    margin: 0px;
	color: #fff;
}
#intro-container hr {
	margin: 8px auto;
	border: 1px solid #fff;
}
#intro-text {
	width: 460px;
}
#intro-text p {
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
	margin-bottom: 15px;
}
#intro-text a:link,
#intro-text a:visited {
  color: #fff;
  border: 1px solid #177572;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 4px;
  background-color: #1f8d89;
  box-shadow: 0 0 5px 0 #177572;
}
#intro-text a:hover {
  background-color: #fff;
  color: #177572;
}

/*///////////////////////*/
/*///// Flex Slider /////*/
/*///////////////////////*/
#flex-slider {
    float: left;
    width: 500px;
    height: 285px;
    margin: 30px 20px 0px 0px;
    border-radius: 6px;
}


/*////////////////////////*/
/*///// News Feed ////////*/
/*////////////////////////*/
#news-container {
   float: right;
	width: 280px;
	min-height: 285px;
   margin: 29px 20px 0px 0px;
}
.news-header, .news-item {
    background-color: #fff;
}
.news-header {
    font-size: 21px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    margin: 0px 0px 2px 0px;
    padding: 15px 0px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #53bab6;
}
#news-container hr {
	margin: 0px;
	padding: 0px;
	border: 1px solid #eaeaea;
}
.news-item {
    display: grid;
	 grid-template-columns: 50px 2fr;
	 gap: 0 15px;
    min-height: 72px;
    padding: 15px;
    overflow: hidden;
}
.news-item:last-of-type {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.calendar {
    padding: 8px 12px;
	 max-height: 50px;
    border-radius: 6px;
    background-color: #53bab6;
}
.calendar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.calendar ul li {
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
.calendar ul li.month {
    font-size: 12px;
    font-weight: 600;
}
.calendar ul li.date {
    font-size: 18px;
    font-weight: 700;
}
.news {
	padding: 0px;
	line-height: 1.25;
   word-wrap: break-word;
	color: #737373;
	max-width: 180px;
}