/** 
 * 
 * GLOBAL STYLES
 * 
 **/
.country-body p,
.destination p,
.country-body li {
	color: #555555;
    font-weight: 300;
    line-height: 23px;
}

/** 
 * 
 * DESTINATION
 * 
 **/
/** Destinations Section **/
.destination .featured-image {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
	position: relative;
}
.destination .featured-image h1 {
	font-size: 50px;
    color: #fff;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    margin: 0;
	text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.7);
}
.reviews-section {
	gap: 30px;
}
.reviews-section > div {
	flex: 1;
	padding-bottom: 50px;
}
.reviews {
	overflow: hidden;
}
.reviews-inner {
	max-height: 412px;
    overflow-y: scroll;
    padding: 25px 20px;
}


/** 
 * 
 * COUNTRY
 * 
 **/
/** Intro Section **/
.country-intro {
	gap: 20px;
}
.description {
	flex: 3;
	padding-top: 30px;
}
.description h1 {
	color: #000;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
}
.featured-image {
	flex: 5;
}
.featured-image img {
	width: 100%;
	object-fit: cover;
}


/** Destinations Section **/
.country-content {
	padding: 40px 0 60px;
}
.destinations-list {
	gap: 15px;
	display: grid;
}
.destination-content {
	padding-bottom: 20px;
}
.destination-content h3 {
	margin-bottom: 0;
    font-size: 22px;
}
.destination-content h3 a {
	text-decoration: none;
    color: #000;
}
.destination-img img {
	height: 300px;
    width: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.destination-btn {
	color: #4f4f4f;
    text-decoration: none;
	position: relative;
    padding-bottom: 2px;
	transition: .2s ease;
}
.destination-btn:hover {
	color: #188823;
}
.destination-btn:before {
	content: "";
	position: absolute;
	width: 50%;
	height: 1.2px;
	background: #188823;
	bottom: 0;
	transition: .2s ease;
}
.destination-btn:hover:before {
	width: 100%;
	height: 2px;
}


/** CTA Section **/
.cta-section {
	background: rgb(204 204 204 / 17%);
    padding: 70px 0;
}
.cta-inner {
	display: flex;
    align-items: center;
	gap: 25px;
}
.cta-inner .cta-col-1 {
	flex: 2;
}
.cta-inner .cta-col-2 {
	flex: 3;
}
.cta-col-2 img {
	width: 100%;
	border-radius: 10px;
}
.kawbtn {
	text-decoration: none !important;
    background: #FFAB00;
    color: #fff;
    box-shadow: 0 0 0 2px #FFAB00 !important;
    padding: 13px 30px;
    display: inline-block;
	transition: .2s ease;
	border-radius: 30px;
}
.kawbtn:hover {
	background: #3e4e2a;
    color: #fff;
}

/** Media Queries **/
@media ( min-width: 768px ){
	
	.country-intro,
	.reviews-section {
		display: flex;
	}
	.featured-image img {
    	height: 500px;
	}
	.destinations-list {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
}