.news-preview {
	overflow: hidden;
}

.news-list {
	
}

.news-list .news-item {
	margin-bottom: 10px;
}

.news-list .news-item a {
	display: flex;
    align-items: center;
}

.news-list .news-item .active {
	
}

.news-list .news-thumb {
	width: 40%;
}

.news-list .news-thumb img {
	border-radius: 5px;
}

.news-list .news-title {
	padding-left: 20px;
}

.news-list .news-title strong {
	display: block
}

.news-list .news-title span {
	display: block;
    margin-top: 10px;
    color: #7DB49A;
    font-size: 80%;
    font-weight: bold;
}
/*news 2*/

#home_news {
	display: flex;
    justify-content: space-between;
}

#home_news .news-item {
	width: 32%;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    padding: 20px;
}

#home_news .news-thumb {
	
}

#home_news .news-thumb img {
	border-radius: 5px;
}

#home_news .news-title {
	
}

#home_news .news-title span.view-details {
	display: block;
    font-size: 70%;
    font-weight: bold;
    text-transform: uppercase;
	margin: 10px 0px 0px 10px;
}

span.view-details .et-pb-icon {
	font-size: 100%;
    color: #23FF80;
    font-weight: bold;
}

/*golf instructors*/

#home_golf_instructors .instructor-list {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 30px;
}

#home_golf_instructors .instructor-list .instructor-item {
	width: 32%;
    position: relative;
	text-align: center;
	min-height: 200px;
	
}

#home_golf_instructors .instructor-item .instructor-thumb {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#home_golf_instructors .instructor-item .instructor-title {
	position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    background-color: #23FF80;
    border-radius: 5px;
    padding: 10px;
}

#home_golf_instructors .instructor-item .instructor-title span {
	display: block;
    font-size: 80%;
}

#home_golf_instructors .instructor-item img {
	border-radius: 5px;
}

/*various*/

#home_various .various-list {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 20px;
}

#home_various .various-list .various-item {
	width: 32%;
    position: relative;
	min-height: 150px;
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
}

#home_various .various-list .various-item .various-title {
	font-weight: bold;
	min-height: 40px;
    margin-top: 20px;
}

#home_various .various-list .various-item .various-desc {
	
}

#home_various .various-list .various-item .various-details {
	text-align: right;
	font-weight: bold;
}

#home_various .various-list .various-item .various-icon img {
	max-height: 60px;
}

.view-all {
	display: flex;
    column-gap: 20px;
    margin-bottom: 30px;
}

.view-all .left-text {
	font-size: 250%;
    font-weight: bold;
}

.view-all .line {
	border-bottom: 2px solid #23FF80;
    flex: 1;
}

.view-all .right-text {
	margin-left: auto;
	font-weight: 700;
}

.view-all .right-text .greater {
	color: #23FF80;
}


/*mobile view*/
@media (max-width: 767px) {
	#home_news {
		flex-direction: column;
		row-gap: 30px;
	}
	
	#home_news .news-item {
		width: 100%;
	}
	
	#home_golf_instructors .instructor-list {
		flex-direction: column;
	}
	
	#home_golf_instructors .instructor-list .instructor-item {
		width: 100%;
	}
	
	#home_various .various-list .various-item {
		width: 100%;
	}
}
/*end mobile view*/