body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: rgb(233, 223, 223);
}

/* Start-Top Header  Styling */
header .top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  background-color: #000;
  backdrop-filter: blur(10px);
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}

.top-nav .buttons a {
  text-decoration: none;
  cursor: pointer;
  margin: 0 15px 0 0;
  padding: 10px 12px;
  border: 2px solid rgb(255, 255, 255);
  background: transparent;
  backdrop-filter: blur(10px);
  outline: 0;
  color: rgb(255, 255, 255);
  transition: background-color 0.8s ease-in-out;
  border-radius: 10px;
}
.top-nav .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-nav .buttons a:hover {
  color: white;
  border-color: white;
  background-color: rgb(0, 0, 0);
}

.top-nav .logo {
  font-size: 22px;
  font-weight: 700;
  font-family: "Rampart One", cursive;
  color: rgb(255, 255, 255);
  text-align: center;
}

/* Button animations */
.sweep-to-right {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 2000ms;
}
.sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #636407;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 800ms ease-out;
}
.sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.bounce-to-bottom {
  position: relative;
  -webkit-transition: color 500ms;
  transition: color 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.bounce-to-bottom:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #636407;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.bounce-to-bottom:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* /Button animations */

/* End-Top Header  Styling */

/* Start banner Styling */
.banner-container {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 180px 0;
  margin: 0 auto;
  background: url(../img/banner.jpg);

  background-position: center;
  background-size: cover;
}
.banner-content {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 10px;
}
.banner-content h2 {
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.banner-content p {
  color: #fff;
  font-weight: 400;
}
.banner-content a {
  padding: 10px;
  text-decoration: none;
  border: 2px solid rgb(255, 255, 255);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  overflow: hidden;
}

.banner-content a:hover {
  color: #000;
}
/* End banner Styling */
.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1;
  color: #636407;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
/* Start gallery styling */

.gallery-img {
  width: 45%;
  height: 250px;
  object-fit: cover;
  margin: 10px;
  vertical-align: top;
}
.add-div2 {
  height: 100%;
  width: calc(100% + 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.add-div2 > div {
  background-color: #636407; /* paste color code here ........................... */
  padding: 50px 70px;
  margin-left: -100px;
  width: 100%;
}
.content-section {
  padding: 40px 0;
}

.business-hr {
  color: white;
}

.shop-time ul {
  color: white;
}

/* End gallery styling */

/* Start Service styling */

.service-bx {
  text-align: center;
  padding: 20px 20px;
  box-shadow: 1px 1px 4px 1px gray;
  transition: all 0.6s;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.service-bx:hover {
  transform: scale(0.96);
  box-shadow: 1px 5px 4px 1px #636407;
  color: #fff;
}

.service-bx img {
  width: 100px;
  height: 100px;
  padding-bottom: 10px;
}
.service-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #636407;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.service-bx:hover .service-title {
  color: white;
}
/* End Service styling */

/* Map Styling */

.map-section {
  background-color: #636407;
  padding: 40px 0;
}
.map-col {
  display: flex;
  align-items: center;
}
.map-img {
  width: 100%;
  margin: 10px 0;
}
/* /Map Styling */

/* Footer Styling */

footer .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10px;
}

.footer-titles {
  color: #636407;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
footer .button a {
  color: #636407;
  text-decoration: none;
  padding: 10px 7px;
  border: 3px solid #636407;
  margin-bottom: 60px !important;
  border-radius: 10px;
  overflow: hidden;
}
footer .button a:hover {
  color: white;
  border-color: white;
  overflow: hidden;
}
footer p {
  margin-top: 40px;
}

footer .timing {
  list-style: none;
  padding: 0;
}
footer .timing ul li span {
  margin-right: 15px !important;
}
/* End Footer Styling */

@media screen and (max-width: 991px) {
  .gallery-flex {
    text-align: justify;
    text-align-last: justify;
  }
  .gallery-img {
    width: 46.5%;
  }
  .gallery-flex .section-title {
    text-align: center;
    text-align-last: center;
  }
  .add-div2 {
    width: 60%;
    margin: 0 auto;
  }
  .add-div2 > div {
    margin: -60px 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top-nav .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-img {
    margin: 0 0 20px 0;
    height: 380px;
    width: 100%;
  }
  .add-div2 {
    width: 320px;
  }
  .add-div2 > div {
    padding: 50px 50px;
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  /* Top Header media query */

  header .top-nav {
    padding: 10px 3px;
    flex-flow: column;
  }

  header .top-nav .logo {
    font-size: 22px;
    padding-left: 5px;
    margin: 20px 0;
  }

  header .top-nav .buttons a {
    padding: 7px 5px;
    font-size: 14px;
    margin-bottom: 50px;
  }

  .add-div2 {
    display: none;
  }

  /*End - Top Header media query */
  /*Start - banner media query */

  .banner-container {
    padding: 130px 0 30px;
  }
  .banner-content {
    width: 85vw;
  }
  .banner-content a {
    font-size: 16px;
  }
  /*End - banner media query */
}

@media screen and (max-width: 320px) {
  header .top-nav {
    flex-flow: column;
  }
  .top-nav .logo {
    font-size: 14px;
    margin: 5px 0;
  }
}
