* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Georgia;
}
/* Header Styling */

#header {
  display: flex;
  flex-flow: column wrap;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(19, 18, 17, 0.719)),
    url("../img/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: rgb(255, 255, 255);
  font-size: 35px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
.call-btn {
  display: flex;
  align-items: center;
}

.call-btn a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: block;
  margin-left: 10px;
}
.call-btn a:hover {
  font-weight: 500;
}
.call-btn .fas.fa-phone {
  display: block;
  font-size: 22px;
  border: 1px solid rgb(255, 255, 255);
  padding: 10px;
  border-radius: 50px;
  color: #eb7616;
  background-color: #fff;
  transition: background-color 0.5s;
}
.call-btn .fas.fa-phone:hover {
  color: white;
  background-color: #eb7616;
}

.cta {
  padding: 150px 0;
  color: white;
}
.cta h2 {
  font-size: 65px;
  font-family: Verdana, Geneva, sans-serif;
}
.cta p {
  font-size: 20px;
  margin: 20px 0 50px 0;
}

.cta-btn a {
  margin-top: 50px !important;
  text-decoration: none;
  font-weight: 500;
  color: rgb(255, 255, 255);
  border: 2px solid #eb7616;
  background-color: #eb7616;
  padding: 10px;
  transition: background-color 0.5s;
}

.cta-btn a:hover {
  color: #eb7616;
  background-color: white;
  border-color: #eb7616;
}
/* End Header Styling */

/* Services Styling */
.services {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-flow: row wrap;
  z-index: 99;
  margin-top: -80px;
}
.service_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  margin-bottom: 10px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);
  transition: background-color 0.5s;
}
#box1 {
  background-color: #97a9bd;
}

#box2 {
  background-color: #a197bd;
}
#box3 {
  background-color: #bda697;
}

#box1:hover,
#box2:hover,
#box3:hover {
  background-color: white;
}

.service_box:hover h3 {
  color: #eb7616;
}

.service_box h3 {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.service_img img {
  height: 80px;
  width: 80px;
}
/* End Services Styling */

/* Gallery Styling */
.gallery {
  display: block;

  margin: 50px 0 100px;
}

.section_title {
  text-align: center;
  font-size: 50px;
  color: #eb7616;
  text-transform: uppercase;
  margin: 20px 0;
}
.gallery .img_sec {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  padding: 0 60px;
}
.gallery .img_sec .img_box {
  padding: 10px;
  width: 34%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);
  border: 1px solid gray;
  margin-bottom: 20px;
}
.gallery .img_sec .img_box img {
  height: 80%;
  width: 100%;
}
/* End Gallery Styling */

/*  Map Styling */
.map {
  background-color: rgb(221, 218, 218);
  padding: 50px 20px;
}
.map_sec {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  padding: 20px 20px;
  background-color: #eb7616;
}

.map_sec .map_img {
  width: 50%;
}
.map_sec .map_img img {
  width: 100%;
}
.map_sec .map_src {
  width: 50%;
}
/* End Map Styling */

/* Footer Styling */
.contact_dtl {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  height: 300px;
  margin-top: 70px;
}
.detail_box {
  width: 30%;
  height: 80%;
  padding: 20px 20px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);

  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  text-align: center;
  transition: all 0.6s;
}
.detail_box:hover {
  box-shadow: 1px 2px 3px 5px #eb7616;
  transform: scale(0.9);
}
.detail_box h3 {
  margin: 40px 0;
  font-size: 22px;
}
.detail_box p {
  margin: 20px 0;
}
.footer_btm {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}
/* /Footer Styling */

@media screen and (max-width: 768px) {
  .site_desc h2 {
    text-align: center;
    font-size: 1.9rem;
    padding: 0 20px;
  }
  .gallery .img_sec .img_box {
    width: 100%;
    height: 600px;
  }
  .gallery .img_sec {
    display: flex;
    flex-flow: column;
    padding: 0 30px;
  }

  .gallery {
    margin-bottom: 0;
  }
  .map_img {
    display: none;
  }
  .map_sec .map_src {
    width: 100%;
  }

  .contact_dtl {
    flex-flow: column;
    padding: 0 20px;
    height: auto;
  }
  .detail_box {
    width: 100%;
    margin: 10px 0;
  }
}

@media screen and (max-width: 576px) {
  /* Header Styling */
  .top-nav {
    flex-flow: column wrap;
  }
  .logo {
    margin-bottom: 20px;
    text-align: center;
  }
  .cta {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
  }
  .cta h2 {
    font-size: 40px;
    text-align: center;
    margin: 0;
  }
  .cta p {
    margin-bottom: 30px;
  }
  /* End Header Styling */
  .gallery .img_sec .img_box {
    width: 100%;
    height: 300px;
  }
  .footer_btm .logo,
  .footer_btm .logo span,
  .footer_btm .logo::first-letter {
    font-size: 18px !important;
    margin: 0 2px;
  }
  .footer_btm {
    margin-top: 20%;
    padding: 20px 0;
  }
  .map_sec {
    padding: 5px;
  }
  .map {
    padding: 0 10px;
  }

  .section_title {
    font-size: 35px;
    padding: 20px 0;
  }
}
