
/*banner*/
.banner{
    background-image: url('../img/banner-home.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text__banner h1{
    font-size: 45px;
	line-height: 1.3;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
}
/*end banner*/

/*task bar*/
.task__bar{
    position: relative;
    background-color: #49524f;
    width: 100%;
    height: 75px;
    margin-bottom: 45px;
}
.task__bar .list__task__bar{
    display: flex;
    gap: 30px;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.sub__task__bar{
    position: relative;
    height: 100%;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
.dropdown__task__bar{
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: #49524f;
    width: 150px;
    z-index: 2;
}
.sub__task__bar:hover .dropdown__task__bar{
    display: block;
}
.dropdown__task__bar li{
    padding: 15px 10px;
    cursor: pointer;
}
/*end task bar*/

/*main search*/
.main__search{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.list__item{
    width: 32%;
    border: 1px solid #f1f1f1;
    margin-bottom: 20px;
}
.image__item{
    position: relative;
}
.image__item img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.rating__item{
    position: absolute;
    display: flex;
    gap: 20px;
    left: 20px;
    bottom: 20px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.rating__item ul li{
    display: inline-block;
}
.item__name{
    font-size: 22px;
    color: #666666;
    letter-spacing: 1px;
	font-weight: 500;
    margin-bottom: 10px;
    display: block;
	    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item__name a{
	color: inherit;
}
/*@media(min-width:992px){
	.item__name{
		min-height: 82px;
	}
}*/
.item__info{
    padding: 30px;
}

.para{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.para img{
    width: 23px;
    height: 23px;
    object-fit: cover;
}
.para li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.para span{
    font-size: 12px;
    color: #7e7e7e;
}
.item__info p,
.item__info .desc{
    font-size: 14px;
    color: #7e7e7e;
    letter-spacing: 1px;
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:4;
	line-clamp: 4;
	-webkit-box-orient:vertical;
}
.btn__book__item{
    display: inline-block;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 700;
    color: #2C3E50;
    border: 2px solid #2C3E50;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}
.list__service__item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 22px;
    border-top: 1px solid #f1f1f1;
	flex-direction: column;
	gap: 10px;
}
.list__service__item ul{
    display: flex;
    gap: 10px;
}
.list__service__item img{
    width: 23px;
    height: 23px;
    object-fit: cover;
}
.full__info{
    color: #7e7e7e;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/*end main search*/

@media only screen and (max-width: 991px){
    .list__item{
        width: 100%;
    }
	.item__info{
		padding: 15px;
	}
	.text__banner h1{
		font-size: 34px;
	}
}

@media only screen and (max-width: 414.98px){
    .text__banner h1{
        font-size: 40px;
    }
}