@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
	/*--normal-font: "Roboto", sans-serif;*/
	--normal-font: sans-serif;
	--normal-color: #000000;
	--primary-color: #406b7e;
	--second-color: #85aaba;
	--three-color: #e78171;
	--text-color: #404040;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video {
	max-width: 100%;
}

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
/*a:visited {
color: purple !important;
}*/
p {
	color: var(--text-color);
}
html {
	font-size: 62.5%;
}

body {
	font-family: var(--normal-font);
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.5;
	position: relative;
	color: var(--normal-color);
	background-color: #e9eaed;
}

.ov-hidden {
	overflow: hidden;
}

.container {
	max-width: 1360px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.3;
}

a {
	color: var(--normal-color);
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: none;
	color: var(--normal-color);
}

p:last-child {
	margin-bottom: 0;
}
img,iframe{
	max-width: 100%;
}
button {
	border-color: transparent;
	outline: 0;
}

.row-collapse {
	margin-left: 0;
	margin-right: 0;
}
.row-collapse > div[class~=col], .row-collapse > div[class^=col-] {
	padding-left: 0;
	padding-right: 0;
}

.row-small {
	margin-left: -10px;
	margin-right: -10px;
}
.row-small > div[class~=col], .row-small > div[class^=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.tb-space {
	padding: 70px 0;
}

.tb-space-sm {
	padding: 40px 0;
}

.tb-space-top {
	padding-top: 70px;
}

.tb-space-bottom {
	padding-bottom: 70px;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border: 0;
	color: #fff;
	border: 2px solid #fff;
	background-color: transparent;
	border-radius: 50%;
	font-size: 20px;
	transition: all 0.3s ease;
	z-index: 1;
}
.slick-arrow::before {
	display: none;
}
.slick-arrow:hover {
	color: #fff;
	border-color: transparent;
	background-color: var(--primary-color);
}

.slick-prev {
	left: 2%;
	transform: translateX(20px);
}

.slick-next {
	right: 2%;
	transform: translateX(-20px);
}

.slick-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.slick-dots li button:before {
	font-size: 12px;
	color: #fff;
}

.form-control {
	height: 30px;
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0px 5px;
	font-size: 1.6rem;
}
.form-control:disabled, .form-control[readonly]{
	background-color: transparent;
}
textarea.form-control {
	height: auto;
	padding: 6px 8px;
}

.btn {
	display: inline-block;
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	-webkit-appearance: button;
	appearance: button;
	font-size: 1.6rem;
	line-height: 1;
	padding: 0.6em 1em 0.4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.dotline {
	display: block !important;
	border-bottom: 1px dotted #ccc !important;
	margin-bottom: 10px !important;
	clear: both !important;
}

.wrapper {
	width: 78%;
	margin: 0 auto;
}
@media (max-width: 1023.98px) {
	.wrapper {
		width: 100%;
	}
}

.header {
	position: relative;
	background-color: #fff;
	z-index: 999;
}
.header-top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	border-top: 10px solid var(--primary-color);
}
.header-top .top-nav {
	margin-right: 20px;
	padding: 0 15px 3px 15px;
	background: var(--primary-color);
	border-radius: 0 0 10px 10px;
	position: relative;
}
.header-top .top-nav-toggle {
	display: none;
	color: #fff;
	font-size: 1.6rem;
}
@media (max-width: 767.98px) {
	.header-top .top-nav-toggle {
		display: block;
	}
}
.header-top .top-nav-menu li {
	display: inline-block;
}
.header-top .top-nav-menu li a {
	display: block;
	color: #fff !important;
	padding: 6px 10px;
	font-size: 1.4rem;
}
@media (max-width: 767.98px) {
	.header-top .top-nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		background: var(--primary-color);
		border-radius: 10px;
		padding: 10px 6px;
	}
	.header-top .top-nav-menu li {
		display: block;
	}
	.header-top .top-nav-menu li a {
		display: block;
		width: max-content;
	}
}
.header-top .languages {
	display: block;
	padding-right: 10px;
}
.header-top .languages ul li {
	display: inline-block;
	margin-left: 6px;
}
.header-main-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.header-main-wrap .logo {
	margin-bottom: 10px;
}
.header-main-wrap .logo img {
	max-width: 120px;
}
.header-main-contact .phone-item {
	font-size: 2.8rem;
	text-align: right;
}
.header-main-contact .phone-item a {
	color: var(--primary-color);
}
@media (max-width: 576px) {
	.header-main-contact .phone-item {
		font-size: 1.6rem;
	}
}
.header-main-contact .email-item {
	text-align: right;
}
.header-main-contact .email-item a {
	color: var(--primary-color);
}
@media (max-width: 576px) {
	.header-main-contact {
		width: 100%;
	}
	.header-main-contact .phone-item,
	.header-main-contact .email-item {
		text-align: center;
	}
}
.header-nav {
	background: var(--primary-color);
	border-top: 2px solid #ea8136;
	position: relative;
}
.header-nav .menu-toggle {
	display: none;
	color: #fff;
	font-size: 2.2rem;
	padding: 4px 6px;
}
.header-nav .nav-menu li {
	position: relative;
	display: block;
}
.header-nav .nav-menu li a {
	display: block;
	font-size: 1.4rem;
	color: #fff !important ;
}
.header-nav .nav-menu > li {
	display: inline-block;
}
.header-nav .nav-menu > li > a {
	display: block;
	padding: 0 10px;
	height: 45px;
	line-height: 45px;
}
.header-nav .nav-menu > li > a:hover {
	background-color: var(--second-color);
	color: #fff;
}
.header-nav .nav-menu > li .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: #f1f1f1;
	display: none;
}
.header-nav .nav-menu > li .submenu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(to bottom, var(--primary-color), #38758a);
	line-height: 40px;
	padding: 0 10px;
}
.header-nav .nav-menu > li .submenu li a:hover {
	background: var(--second-color);
	color: #fff;
}
.header-nav .nav-menu > li .submenu li ul {
	position: absolute;
	top: 0;
	left: 100%;
}
@media (max-width: 767.98px) {
	.header-nav {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.header-nav .menu-toggle {
		display: block;
	}
	.header-nav .nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--primary-color);
		display: none;
	}
	.header-nav .nav-menu > li {
		display: block;
	}
	.header-nav .nav-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header-nav .nav-menu > li > a .arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 40px;
		transition: all 0.3s ease;
	}
	.header-nav .nav-menu > li > a .arrow.active {
		transform: rotate(90deg);
		transition: all 0.3s ease;
	}
	.header-nav .nav-menu > li .submenu {
		position: relative;
		transition: none;
	}
	.header-nav .nav-menu > li .submenu li a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header-nav .nav-menu > li .submenu li a .arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 40px;
		transition: all 0.3s ease;
	}
	.header-nav .nav-menu > li .submenu li a .arrow.active {
		transform: rotate(90deg);
		transition: all 0.3s ease;
	}
	.header-nav .nav-menu > li .submenu li ul {
		position: relative;
		top: 0;
		left: 0;
	}
}

.content-area {
	background: #fff;
	border: 1px solid #cecece;
	border-radius: 3px;
}

.site-main {
	padding: 1% 3%;
}

.breadcrumbs {
	font-size: 14px;
	padding: 1.5% 3%;
	border-bottom: 1px solid #cecece;
}
.breadcrumbs .breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	border-radius: 0;
	gap: 6px;
}
.breadcrumbs .breadcrumb a:hover {
	color: var(--primary-color);
}

.page-header {
	background: #d9d9d9;
	margin-bottom: 2%;
	padding: 1%;
}
.page-header .page-title {
	color: var(--primary-color);
}
.page-header .desc {
	display: block;
}
.page-header p
{
	font-style: italic;
}

.custom-slider.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.custom-slider .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.center-box-item {
	padding: 3%;
	min-height: 290px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
}
.center-box-item .title {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--primary-color);
	margin: 4% 0;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 3px;
}
.center-box-item .title a {
	color: inherit;
}
.center-box-item .image {
	position: relative;
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 6px;
}
.center-box-item .image img {
	width: 100%;
	aspect-ratio: 6/3;
}
.center-box-item ul {
	font-size: 14px;
	list-style: none;
	margin: 0 !important;
	padding-top: 6px;
}
.center-box-item ul li a {
	padding-left: 8px;
	background: url("../images/arrow-link.png") no-repeat center left;
	color: var(--primary-color);
}
.center-box-item ul li a:hover {
	color: var(--three-color);
}
@media (max-width: 576px) {
	.center-box-item {
		margin-bottom: 20px;
	}
}

.tours-container .item {
	padding: 3%;
	min-height: 366px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	margin-bottom: 20px;
}
.tours-container .item .title {
	background: var(--primary-color);
	border-radius: 10px;
	text-align: center;
}
.tours-container .item .title a {
	display: block;
	padding: 10px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff !important;
}
.tours-container .item .image {
	border-bottom: 1px dotted #d9d9d9;
	margin: 8% 0 3% 0;
	padding-bottom: 2%;
}
.tours-container .item .image img {
	width: 100%;
	aspect-ratio: 6/3;
}
.tours-container .item ul li a {
	font-size: 14px;
	padding-left: 10px;
	background: url("../images/arrow-link.png") no-repeat center left;
	color: var(--primary-color);
}
.tours-container .item ul li a:hover {
	color: var(--three-color);
}

.transfer-list .item {
	padding: 2%;
	background: #cecece;
}
.transfer-list .item + .item {
	margin-top: 20px;
}
.transfer-list .item .title {
	color: var(--primary-color);
	margin-bottom: 10px;
}
.transfer-list .item .title a {
	color: inherit;
}
.transfer-list .item .title a:hover {
	color: var(--three-color);
}
.transfer-list .item .content {
	display: flex;
	flex-wrap: wrap;
}
.transfer-list .item .content .image-box {
	width: 30%;
}
.transfer-list .item .content .image-box img {
	width: 100%;
	height: 148px;
	object-fit: cover;
}
.transfer-list .item .content .desc-box {
	flex: 1;
	padding-left: 3%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;   /* số dòng muốn hiển thị */
	overflow: hidden;

	line-height: 1.5em;      /* chiều cao mỗi dòng */
	max-height: calc(1.5em * 5); 
}
.transfer-list .item .content .desc-box p
{
	text-align: justify;
}
.transfer-detail-tag {
	margin-top: 10px;
}

.entry-header .entry-title {
	margin-bottom: 10px;
	color: var(--primary-color);
}
.entry-content {
	margin-bottom: 20px;
}
.entry-content ul {
	list-style: disc;
	margin-left: 30px;
	margin-bottom: 10px;
}
.entry-content table td,
.entry-content table th{
	padding: 5px;
}
.entry-content .custom-slider .item img
{
	width: 100%;
	height: 400px;
	object-fit: cover;
}
@media(max-width:576px){
	.entry-content .custom-slider .item img{
		height: 300px;
	}
}
.entry-content,
.transfer-detail-content {
	color: var(--text-color, #404040) !important;
}
.entry-content a,
.transfer-detail-content a{
	color: var(--three-color, #404040);
}
.entry-content h3
{
	background-color: #d9d9d9;
	padding: 0.1% 0 0.1% 1%;
	margin-bottom: 1%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.transfer-detail-content iframe{
	max-width: 100%;
}
.transfer-detail-content table{
	margin-bottom: 20px;
}
.transfer-detail-content table th,
.transfer-detail-content table td{
	padding: 5px;
}
.transfer-detail-content .custom-slider.slick-dotted.slick-slider{
	margin-bottom: 20px;
}
.transfer-detail-content .custom-slider .item img
{
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.transfer-detail-content h3
{
	background-color: #d9d9d9;
	padding: 0.1% 0 0.1% 1%;
	margin-bottom: 1%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.transfer-detail-content ul{
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 10px;
}
.widget-area {
	background: #DCDCDD;
	border: 1px solid #C2C1C1;
	border-radius: 3px;
	padding: 10px;
}
.widget-area .widget + .widget {
	margin-top: 20px;
}
.widget-area .widget-title {
	background: var(--primary-color);
	padding: 10px;
	text-transform: uppercase;
	color: #fff;
	font-size: 1em;
	margin-bottom: 15px;
}
.widget-area .widget-content ul {
	font-size: 1.4rem;
}
.widget-area .widget-content ul li {
	border-bottom: 1px dotted #c7c7c7;
	line-height: 2em;
}
.widget-area .widget-content ul li a {
	color: var(--primary-color);
	display: block;
}
.widget-area .widget-content ul li a:hover {
	color: var(--second-color);
}
@media (max-width: 576px) {
	.widget-area {
		margin-top: 20px;
	}
}

.post-navigation {
	background: #cecece;
	padding: 3%;
	margin: 3% 0;
}
.post-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.post-navigation .nav-links .nav-prev,
.post-navigation .nav-links .nav-next {
	flex: 1;
}
.post-navigation .nav-links .nav-prev a,
.post-navigation .nav-links .nav-next a {
	color: var(--primary-color);
	text-decoration: underline;
}
.post-navigation .nav-links .nav-prev a:hover,
.post-navigation .nav-links .nav-next a:hover {
	color: var(--three-color);
}
.post-navigation .nav-links .nav-next {
	text-align: right;
}

.pagination {
	margin-top: 20px;
	margin-bottom: 20px;
	justify-content: center;
}
.pagination ul li {
	display: inline-block;
}
.pagination ul li a {
	display: block;
	text-decoration: none;
	padding: 5px 20px;
	margin: 0 3px;
	font-weight: bold;
	background: #fff;
	color: #333;
	border: 1px solid #d1d1d1;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.pagination ul li.active a, .pagination ul li:hover a {
	background-color: #F5AE42;
	border-color: #F5AE42;
	color: #fff;
}

.contact-form .form-head {
	font-size: 22px;
	border-bottom: 1px solid #cecece;
	margin-bottom: 20px;
	font-weight: 500;
	color: #fff;
	background: var(--primary-color);
	padding: 6px 10px;
}
.contact-form .form-group > label {
	font-weight: bold;
}

.tours-list .item {
	padding: 2%;
	background: #cecece;
}
.tours-list .item + .item {
	margin-top: 20px;
}
.tours-list .item .title {
	color: var(--primary-color);
	margin-bottom: 10px;
}
.tours-list .item .title a {
	color: inherit;
}
.tours-list .item .title a:hover {
	color: var(--three-color);
}
.tours-list .item .content {
	display: flex;
	flex-wrap: wrap;
}
.tours-list .item .content .image-box {
	width: 30%;
}
.tours-list .item .content .image-box img {
	width: 100%;
	height: 148px;
	object-fit: cover;
	aspect-ratio: 6/4;
}
.tours-list .item .content .desc-box {
	flex: 1;
	padding-left: 3%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;   /* số dòng muốn hiển thị */
	overflow: hidden;

	line-height: 1.5em;      /* chiều cao mỗi dòng */
	max-height: calc(1.5em * 5);

}
.tours-list .item .content .desc-box p {
	text-align: justify;
}

.tours-detail-tag {
	margin-top: 10px;
}

.reviews {
	background: #d9d9d9;
	padding: 10px;
	border-radius: 3px;
}
.reviews .cat-links a {
	color: var(--primary-color);
	text-decoration: underline;
}
.reviews .review-item + .review-item {
	margin-top: 20px;
}
.reviews .review-item__top {
	margin-bottom: 6px;
}
.reviews .review-item__top .rating {
	font-size: 1.7rem;
	line-height: 1;
	margin-right: 5px;
	color: #fb8e25;
}
.reviews .review-item__top .date {
	font-size: 0.9em;
	font-style: italic;
}
.reviews .review-item__top .author {
	font-size: 0.8em;
	font-style: italic;
}
.reviews .review-item__top .author .cap {
	text-transform: capitalize;
}
.reviews .review-item__top .author .name-text a {
	color: var(--primary-color);
}
.reviews .review-item__title {
	font-size: 0.8em;
	display: block;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.reviews .review-item__content {
	margin: 0 1.5em;
	padding-left: 10px;
	border-left: 5px solid #ea8136;
	font-size: 1.4rem;
	font-weight: normal;
	display: block !important;
	padding-bottom: 30px;
}

.backtotop {
	position: fixed;
	bottom: 15px;
	left: 15px;
	z-index: 100;
	display: none;
}
.backtotop span {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #DCFCE7;
	padding: 8px;
	border-radius: 8px;
	color: var(--primary-color);
	font-size: 1.8rem;
	cursor: pointer;
}
.backtotop.show {
	display: block;
}

.footer {
	margin-bottom: 1%;
	padding-top: 2%;
	background: #f5f5f5;
	border-top: 1px solid #d9d9d9;
	border: 1px solid #cecece;
}
.footer-head {
	font-size: 1.8rem;
	text-transform: uppercase;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 10px;
}
@media(max-width:576px){
	.footer-col{
		margin-bottom: 20px;
	}
}
.footer-col iframe,
.footer-col img {
	max-width: 100%;
}
.footer-col ul {
	font-size: 1.4rem;
	margin-bottom: 6px;
}
.footer-col ul:last-of-type {
	margin-bottom: 0;
}
.footer-col ul li:not(:first-child){
	margin-top: 3px;
}
.footer-col ul li a {
	color: var(--normal-color);
}
.footer-col ul li a:hover {
	color: var(--three-color);
}
.footer-logo {
	margin-bottom: 10px;
}
.footer-logo img{
	max-width: 140px;
}
.footer-company{
	font-weight: 600;
	color: var(--primary-color);
}
.footer .site-info {
	background: #e2e2e2;
	margin-top: 1%;
	padding: 1%;
}
.footer .site-info p {
	font-size: 13px;
	margin: 0 !important;
}
.footer .site-info p a {
	color: inherit;
}
.footer .footer-map iframe{
	height: 250px;
}
/*# sourceMappingURL=style.css.map */
.book-tour{
	margin-bottom: 40px;
	margin-top: 20px;
}
.book-tour .inner-head{
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 10px;
	font-weight: 600;
}
.book-tour .form-group > label{
	font-weight: 600;
}
.comments-area{
	margin-bottom: 40px;
}
.comments-area .comment-reply-title{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
}
.booking-transfer .booking-transfer-head{
	padding: 8px;
	text-align: center;
	color: #fff;
	background: var(--primary-color);
	webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.booking-transfer .booking-transfer-form .form-group{
	margin-bottom: 15px;
}
.booking-transfer .booking-transfer-form .form-group > label{
	font-weight: 600;
}
.booking-transfer .booking-transfer-form .box-typetrip .form-group > label{
	font-size: 20px;
	font-weight: 600;
}
.booking-transfer .booking-transfer-form .box-typetrip .form-group .item label{
	margin-bottom:0;
	margin-right: 20px;
	cursor: pointer;
}
.booking-transfer .booking-transfer-form .box-sublabel{
	margin: 20px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.booking-transfer .booking-transfer-form .form-group .input-group-note{
	display: block;
	font-size: 13px;
	margin-bottom: .5rem;
}
.booking-transfer .booking-transfer-form .box-sublabel .box-sublabel-title{
	margin: 0;
}
.booking-transfer .booking-transfer-form .field-radio .item{
	display: inline-block;
	margin-right: 20px;
}
.booking-transfer .booking-transfer-form .field-radio .item label{
	margin-bottom: 0;
	cursor: pointer;
}
.booking-transfer .booking-transfer-form .grbtn-submit{
	border-top: 1px dotted #ccc;
	margin: 14px 0;
	padding: 16px 0 0;
	width: 100%;
}
.transfer-notepage ul{
	list-style: disc;
	margin-left: 30px;
}
.transfer-notepage .tags-link{
	margin-top: 20px;
}
.transfer-notepage .tags-link a{
	color: var(--primary-color);
	text-decoration: underline;
}
.transfer-contact .transfer-contact-head{
	margin: 10px 0 6px;
	border-bottom: 1px solid #cecece !important;
	color: #d8691a;
	text-transform: uppercase;
}
.transfer-contact .transfer-contact-form .form-group > label{
	font-weight: 600;
}
.box-customer-information .box-head{
	margin: 10px 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cecece !important;
	color: #d8691a;
	text-transform: uppercase;
}
.custom-widget .widget-item img{
	height: 290px;
}

#CDSWIDSSP{
	max-width: 100% !important;
}
blockquote {
	margin: 0 1.5em 10px;
	padding-left: 10px;
	border-left: 5px solid #ea8136;
}