/* Animated Border box styling */
body {
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.service-bx.rainbow {
  position: relative;
  z-index: 0;
  width: 280px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}
.service-bx.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #E0BA8A;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#E0BA8A, #E0BA8A),
    linear-gradient(#E0BA8A, #E0BA8A), linear-gradient(black, black),
    linear-gradient(black, black);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
}
.service-bx.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: white;
  border-radius: 5px;
}
/* ------------------------------ */
.add-div-b > div.rainbow {
  text-align: center;
  position: relative;
  z-index: 0;
  width: 500px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}
.add-div-b > div.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #E0BA8A;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#E0BA8A, #E0BA8A),
    linear-gradient(#E0BA8A, #E0BA8A), linear-gradient(black, black),
    linear-gradient(black, black);
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
}
.add-div-b > div.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 6px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: white;
  border-radius: 5px;
}

/* __________________________________________________________________ */

/* ____________________________________________________________________________ */
/* Header Styling */

header .top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  background: #E0BA8A;
  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 .buttons a:hover {
  color: white;
  border-color: white;
  background-color: rgb(0, 0, 0);
}

.top-nav .logo {
  font-size: 22px;
  font-weight: 700;

  color: rgb(255, 255, 255);
}
/* _____________ */
/* Banner styling */

.banner {
  background-color: #2b8f5115;
  min-height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-img {
  float: right;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ----------------- */
.open-para-b {
  color: rgb(73, 63, 63);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
.open-para {
  color: #334443;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.site-title > h2 {
  color: #E0BA8A;
  font-size: 42px;
  font-weight: 700;
  opacity: 1;
  text-align: center;
}
.add-div-b {
  display: flex;
  flex-direction: column;
}

#sub-head {
  color: white;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 1.9;
  text-align: center;
}

/* 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: #E0BA8A; /* paste color code here ........................... */
  padding: 50px 70px;
  margin-left: -100px;
  width: 100%;
}
.content-section {
  padding: 80px 0;
}
.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1;
  color: #E0BA8A;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.service-bx {
  text-align: center;
  padding: 20px 20px;
  box-shadow: 1px 1px 4px 1px gray;
  transition: all 0.6s;
}
.service-bx:hover {
  transform: scale(0.96);
  box-shadow: 1px 5px 4px 1px #E0BA8A;
}
.service-bx > .fa {
  color: #000;
  font-size: 68px;
  margin: 30px auto;
}
.service-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #E0BA8A;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.add-div {
  margin: 40px 0 30px;
  height: 100%;
  width: 100%;
  text-align: center;
}
.open-para {
  color: #334443;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.contact-btn,
.contact-foot-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 30px;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  color: #E0BA8A;
  border: 2px solid #E0BA8A;
  background-color: transparent;
}
.contact-btn:hover,
.contact-foot-btn:hover {
  text-decoration: none;
  background-color: #E0BA8A;
  border-color: #E0BA8A;
  color: #fff;
  transition: all 0.4s;
}
.map-section {
  background-color: #E0BA8A;
  padding: 40px 0;
}
.map-col {
  display: flex;
  align-items: center;
}
.map-img {
  width: 100%;
  margin: 10px 0;
}
footer {
  padding: 30px 0;
}
.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) {
  .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;
  }
  .service-bx.rainbow {
    width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .service-bx.rainbow {
    width: 280px;
  }
  .add-div-b > div.rainbow {
    width: 300px;
  }
  .flex-head a {
    font-size: 14px;
  }

  .head-title,
  .head-subtitle {
    text-align: center;
    line-height: 1.3;
  }
  .header-link {
    width: 50%;
    display: inline-block;
  }
  .flex-head {
    margin-top: 10px;
  }
  .fh1 {
    justify-content: flex-start;
  }
  .site-title > h2 {
    font-size: 36px;
  }
  .banner-title #sub-head {
    text-align: center;
  }
  .sub-head {
    font-size: 14px;
    text-align: center !important;
  }
  .add-div {
    text-align: center;
    padding: 0px;
    margin-bottom: 30px;
  }
  .banner-title h1 {
    font-size: 34px;
  }
  .banner-img {
    margin: 0 0 15px 0;
  }

  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;
  }
  .contact-foot-btn {
    padding: 15px 15px;
  }
  .footer-heading + br {
    display: none;
  }
  footer .contact-foot-btn + br {
    display: none;
  }
  .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;
    text-align: center;
  }

  header .top-nav .buttons a {
    padding: 7px 5px;
    font-size: 14px;
    margin-bottom: 50px;
  }

  .add-div2 {
    display: none;
  }

  /*End - Top Header media query */
}
@media only screen and (max-width: 320px) {
  .banner-title .head-title {
    font-size: 26px;
    font-weight: 800;
  }
  .banner-btn {
    padding: 15px 10px;
    font-size: 14px;
  }
  .contact-foot-btn {
    padding: 10px 5px;
  }
  .banner-img {
    margin: 10px 0 15px 0;
  }

  header .top-nav {
    flex-flow: column;
  }
  .top-nav .logo {
    font-size: 14px;
    margin: 5px 0;
  }
}
