#header{
    padding: 15px 0;
    background-color: #865858;  /* paste color code here ------------------ */
    color: #fff;
    min-height: 90px;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
}

#header a{
  text-decoration: none;
  color: #fff;
}
.head-title, .head-subtitle{
  margin: 0;
  padding: 0;
  font-weight: 500;
  line-height: 1;
}

.head-title:hover, .head-subtitle:hover{
  color: #fff;
}

.head-title{
  font-size: 26px;
}

.head-subtitle{
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.flex-head{
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
}

.banner{
  background-image: url(img/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 480px;
  width: 100%;
  /*clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%, 0% 100%, 0% 0%);*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-title > h2{
  color: #865858; /* paste color code here for site heading ........................... */
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  opacity: 1;
  text-align: center;
}
.section-heading{
  margin: 0 0 30px 0;
  text-align: center;
  color: #865858; /* paste color code here for site heading ........................... */
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.gallery{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gallery-img{
    width: 32%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 440px;
}

.add-div{
  display: flex;
  flex-direction: column;
}
.add-div > div{
  padding: 100px 50px 100px 50px;
  margin: 50px;
  text-align: center;
  z-index: 1;;
}

.open-para{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-btn, .contact-foot-btn{
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 30px;
  background-color: #865858; /* paste color code here --------------------- */
  color: #fff;
  font-family: 'Oswald', sans-serif;
  border-radius: 2px;
  text-transform: uppercase;
}

.contact-btn:hover, .contact-foot-btn:hover{
  text-decoration: none;
  color: #fff;
}

footer{
  padding: 30px 0;
  border-top: 1px solid #865858; /* paste color code here ----------------- */
}

.footer-heading{
  color: #393e46;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.foot-text{
  color: #334443;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  list-style: none;
}

.foot-text > li > span{
  min-width: 45px;
  float: left;
}

@media only screen and (max-width: 991px) and (min-width: 768px)  {
  .gallery{
    display: block;
  }
  .gallery-img:first-child {
    margin: 0 0 25px 0;
    height: 340px;
    width: 100%;
  }
  .gallery-img:nth-child(2),.gallery-img:nth-child(3) {
    width: calc(50% - 13px);
    height: 380px;
  }
  .gallery-img:nth-child(2){
    margin-right: 10px;
  }
  .gallery-img:nth-child(3){
    margin-left: 10px;
  }

}
@media only screen and (max-width: 767px) and (min-width: 320px)  {
  .site-title > h2 {
    font-size: 36px;
  }
  .add-div > div{
    padding: 30px 15px 60px 15px;
    margin: 0px auto 0 auto !important;
  }
  .head-title, .head-subtitle {
    text-align: center;
  }
  .header-link{
    width: 50%;
    display: inline-block;
  }
  .flex-head {
    margin-top: 10px;
  }
  .fh1{
    justify-content: flex-start;
  }
  .gallery{
    display: block;
  }
  .gallery-img{
    width: 100%;
    height: 300px;
    margin-bottom: 15px;
  }
  footer .row .col-md-4:first-child,footer .row .col-md-4:nth-child(2){
    width: 50%;
  }
  footer .row .col-md-4:last-child{
    margin-top: 30px;
    text-align: center;
  }
  .foot-text > li > span{
    float: none;
    margin-right: 10px;
  }
}