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

body {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  line-height: 1.7em;
}

h1,
h2,
h3 {
  padding-bottom: 20px;
}

.l-heading {
  font-size: 35px;
}

.clr {
  clear: both;
}

p {
  margin: 10px 0;
}

/* padding */
.py-1 {
  padding: 10px 0;
}

.py-2 {
  padding: 20px 0;
}

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

/* utility */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  overflow: auto;
}

.primary-color {
  color: gold;
}

.lead {
  font-size: 20px;
}

.btn {
  background-color: #333;
  color: white;
  font-size: 19px;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: gold;
  color: #333;
}

.btn-light {
  background-color: white;
  color: #333;
}

.bg-dark {
  background-color: #333;
  /* color: white; */
}

.bg-light {
  background-color: #f4f4f4;
  color: #333;
}

.bg-primary {
  color: #333;
  background-color: gold;
}

/* style for the navbar  */
#navbar ul li .current {
  color: gold;
  background-color: #334;
}

#navbar {
  background-color: #333;
  /* background-color: coral; */
  color: white;
  overflow: auto;
  padding: 8px;
  position: sticky;
  top: 0px;
}

#navbar h2 {
  float: left;
  text-align: center;
  padding: 10px;
}

#navbar h2 a {
  text-decoration: none;
  color: gold;
  font-size: 30px;
}

ul {
  margin: auto;
  float: right;
}

ul li {
  list-style-type: none;
  float: left;
}

ul li a {
  display: block;
  text-align: center;
  color: white;

  padding: 10px 15px;
  text-decoration: none;
  margin: 0 auto;
}

ul li a:hover {
  color: gold;
  background-color: #334;
}

/* style for the showcase */

.showcase {
  background: url("/images/showcase.jpg") center center/cover no-repeat;
  background-color: #555;
  height: 600px;
}

.showcase .showcase-content {
  color: white;
  height: 600px;
  padding-top: 140px;
  text-align: center;
}

.showcase .showcase-content h1 {
  font-size: 60px;
  line-height: 1.7em;
}

.showcase .showcase-content p {
  padding-bottom: 10px;
  line-height: 1.7em;
}

/* home info */
/* #home-info {
  width: 400px;
} */
/* #home-info{
    background-color: rgb(211, 134, 134);
    /* color: #f4f4f4; */
#home-info {
  height: 400px;
}

#home-info .info-img {
  float: left;
  width: 50%;
  /* min-height: 100%; */
  height: 400px;
}

#home-info .info-content {
  float: right;
  width: 50%;
  height: 100%;
  text-align: center;
  padding: 50px 30px;
  overflow: hidden;
  color: #ddd;
}

#home-info .info-content p {
  padding-bottom: 30px;
}

/* featurs */
.box {
  float: left;
  width: 33%;
  padding: 40px;
  text-align: center;
}

/* about page  */

#about-info .info-right {
  float: right;
  width: 50%;
  min-height: 100%;
}

#about-info .info-right img {
  display: block;
  margin: auto;
  width: 70%;
  border-radius: 50%;
}

#about-info .info-left {
  float: left;
  width: 50%;
  min-height: 100%;
}

/* testimonial */
#testimonial {
  clear: both;
  background: url("/images/test-bg.jpg") no-repeat center center/cover;
  height: 600px;
}

#testimonial .testimonial {
  padding: 40px;
  opacity: 0.8;
  margin-bottom: 30px;
}

#testimonial h2 {
  color: black;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 90px;
  font-size: 50px;
}

#testimonial .testimonial img {
  width: 100px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

/* contact page  */
#contact-form {
  height: 650px;
}

#contact-form h1 {
  text-align: center;
  padding: 25px;
  font-size: 45px;
}

#contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

#contact-form .form-grp {
  display: block;
  margin-bottom: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px #ddd solid;
  font-size: 18px;
}

#contact-form textarea {
  height: 150px;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: gold;
}

.pi-1 {
  color: #f4f4f4;
}

.pi-1 h3 {
  color: gold;
}

/* footer */
#main-footer {
  clear: both;
  /* height: 100px; */
  text-align: center;
  background-color: #334;
  color: #f4f4f4;
  padding: 20px;
  font-size: 18px;
}