* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7em;
}
/* Utility classes */
.container {
  max-width: 1110px;
  margin: auto;
  overflow: auto;
  padding: 0px 20px;
}
.text-primary {
  color: #f7c08a;
}
.lead {
  font-size: 20px;
}
.btn {
  background: #333;
  color: white;
  padding: 13px 20px;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 18px;
}
.btn:hover {
  color: #333;
  background: #f7c08a;
}
.btn-light {
  background: #f4f4f4;
  color: #333;
}
.bg-dark {
  background: #333;
  color: #fff;
}
.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-primary {
  background: #f7c08a;
  color: #333;
}
.clr {
  clear: both;
}
.l-heading {
  font-size: 40px;
}
/* Padding */
.py-1 {
  padding: 10px 0;
}
.py-2 {
  padding: 20px 0;
}
.py-3 {
  padding: 30px 0;
}
.py-4 {
  padding: 40px 0;
}
.py-5 {
  padding: 50px 0;
}
/* Navbar */
#navbar {
  background: #333;
  color: white;
  overflow: auto;
}
a {
  color: #333;
  text-decoration: none;
}
p {
  margin: 10px 0;
}
h1,
h2,
h3,
h4 {
  padding-bottom: 20px;
}
#navbar a {
  color: #fff;
}
#navbar h1 {
  float: left;
  padding-top: 20px;
}
#navbar ul {
  float: right;
  list-style: none;
}
#navbar ul li {
  float: left;
}
#navbar ul li {
  display: block;
  text-align: center;
}

#navbar ul li a {
  display: block;
  padding: 20px;
  text-align: center;
}
#navbar ul li a:hover,
#navbar ul li a.current {
  background: #444;
  color: #f7c08a;
}

/* Showcase */
#showcase {
  background: url(../img/showcase.jpg) center center/cover no-repeat;
  height: 600px;
}
#showcase .showcase-top {
  text-align: center;
  color: #fff;
  padding-top: 170px;
}
#showcase .showcase-top h1 {
  font-size: 60px;
  line-height: 1.2em;
}
#showcase .showcase-top p {
  line-height: 1.7em;
  padding-bottom: 20px;
}
/* section */
#home-info {
  height: 400px;
}
.info-img {
  float: left;
  width: 50%;
  background: url(../img/photo-1.jpg) no-repeat;
  min-height: 100%;
}
#home-info .info-content {
  text-align: center;
  float: right;
  width: 50%;
  height: 100%;
  padding: 70px 30px;
  overflow: hidden;
}
#home-info .info-content p {
  padding-bottom: 30px;
}
.box {
  float: left;
  width: 33.3%;
  text-align: center;
  padding: 50px;
}
.box i {
  padding-bottom: 10px;
}
#about-info .info-right {
  float: right;
  width: 50%;
  min-height: 100%;
  padding-top:28px;
}

#about-info .info-right img {
  display: block;
  margin: auto;
  width: 70%;
  border-radius: 7%;
}
.info-left {
  float: left;
  width: 50%;
  min-height: 100%;
}
/* Testimonials */
#testimonials {
  height: 600px;
  background: url("../img/test-bg.jpg") no-repeat center center/cover;
  padding-top: 100px;
}
#testimonials h1 {
  text-align: center;
  padding-bottom: 40px;
  color: #fff;
}
#testimonials .testimonial img {
  width: 100px;
  float: left;
  border-radius: 50%;
  margin-right: 20px;
}
#testimonials .testimonial {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  opacity: 0.9;
}
#main-footer {
  text-align: center;
  background: #444;
  color: #fff;
  padding: 20px;
}

/* Contact-form */
#contact-form .form-group {
  margin-bottom: 20px;
}
#contact-form h1{
  padding-top: 20px;
}
#contact-form label {
  display: block;
  margin-bottom: 5px;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px #ddd solid;
}
#contact-form textarea {
  height: 200px;
}
