* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.5em;
    color: #444;
}

a {
    color: #444;
    text-decoration: none;
}

h2, h3 {
    padding-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

h1{
    padding-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.container {
    margin: auto;
    max-width: 1000px;
    padding: 0 15px;
    overflow: auto;
}

.text-primary {
    color: #e8a87c;
}

.btn {
    display: inline-block;
    font-size: 16px;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.btn:hover {
    background: #e8a87c;
    color: #333;
}
.btn-light {
    background: #e8a87c;
    color: #333;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.bg-light {
    background: #f5f5f5;
    color: #444;
}
.bg-primary {
    background: #e8a87c;
    color: #333;
}

.py-30 {
    padding: 200px 0;
}

/* Navbar */
#navbar {
    background: #333;
    color: #fff;
    overflow: auto;
}

#navbar a {
    color: #fff;
}

#navbar ul {
    float: right;
    list-style: none;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 18px 15px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #555;
    color: #e8a87c;
}

#navbar h1 {
    padding-top: 16px;
    float: left;
    font-size: 1.8em;
}

/* Showcase */
#showcase {
    background: url('../img/hotel.jpg') no-repeat center center/cover;
    height: 550px;
}
#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 160px;
}
#showcase .showcase-content h1 {
    font-size: 52px;
    line-height: 1.2em;
}
#showcase .showcase-content p {
    padding-bottom: 16px;
    line-height: 1.5em;
}

/* Info Section */
#info {
    height: 350px;
}

#info .info-content {
    float: right;
    width: 48%;
    height: 100%;
    text-align: left;
    padding: 40px 20px;
    overflow: hidden;
}
#info .info-content p {
    padding-bottom: 20px;
    font-size: 0.95em;
}

#info .info-img {
    float: left;
    width: 48%;
    background: url('../img/hotel2.jpg') no-repeat;
    min-height: 100%;
}

/* Features */
#features .box {
    float: left;
    width: 32%;
    padding: 40px;
    text-align: center;
}
#features .box {
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #555;
    color: #fff;
}

/* Clear */
.clear {
    clear: both;
}

/* About Info */
#about-info .info-left {
    float: left;
    width: 48%;
    min-height: 100%;
}
#about-info .info-right {
    float: right;
    width: 48%;
    min-height: 100%;
	margin:auto
}
#about-info .info-right img {
    display: block;
    margin: auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #333;
}

/* Testimonials */
#testimonials {
    height: 600px;
    background: url('../img/hotel6.jpg') no-repeat center center/cover;
}
#testimonials h2 {
    color: #fff;
    text-align: center;
    font-weight: 500;
}
#testimonials .testimonial {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    opacity: 0.85;
}
#testimonials .testimonial img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #333;
    margin-right: 30px;
	margin-bottom:55px;
	margin-top:-6px;
    float: left;
	object-fit: cover;
	transform: scale(2);
}

/* Contact */
#contact-form .form-group {
    margin-bottom: 15px;
}
#contact-form .form-group label {
    display: block;
    margin-bottom: 4px;
}
#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 9px;
    border: 1px solid #ddd;
    font-size: 0.9em;
}
#contact-form .form-group textarea {
    height: 180px;
}
#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
    outline: none;
    border-color: #e8a87c;
}
#contact-info .box {
    float: left;
    width: 32%;
    padding: 40px;
    text-align: center;
}
#contact-info .box i {
    margin-bottom: 8px;
}
