* {
  box-sizing: border-box;
}
/* Box Transictions */
.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: #12b5cb;
  -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);
}
/* Box Transictions */
/* Header Styling */

#header {
  display: flex;
  flex-flow: column wrap;
  padding: 20px;
  background: linear-gradient(0deg, rgb(34, 164, 197), rgba(0, 0, 0, 0.719)),
    url(../img/banner.jpeg);
  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: #12b5cb;
  background-color: #fff;
  transition: background-color 0.5s;
}
.call-btn .fas.fa-phone:hover {
  color: white;
  background-color: #12b5cb;
}

.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 #12b5cb;
  background-color: #12b5cb;
  padding: 10px;
  transition: background-color 0.5s;
}

.cta-btn a:hover {
  color: #12b5cb;
  background-color: white;
  border-color: #12b5cb;
}
/* End Header Styling */
.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1;
  color: #12b5cb;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
/* 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 #12b5cb;
  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: #12b5cb;
  text-align: center;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}
.service-bx:hover .service-title {
  color: white;
}
/* End Service styling */

/* 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: #12b5cb; /* paste color code here ........................... */
  padding: 50px 70px;
  margin-left: -100px;
  width: 100%;
}
.content-section {
  padding: 10px 0;
}

.business-hr {
  color: white;
}

.shop-time ul {
  color: white;
}

/* End gallery styling */

/* Map Styling */

.map-section {
  background-color: #12b5cb;
  padding: 40px 0;
}
.map-col {
  display: flex;
  align-items: center;
}
.map-img {
  max-width: 60%;
  margin: 10px auto;
}

/* /Map Styling */
/* About shop */

.contact-details {
  position: relative;
  z-index: 999 !important;
  border-radius: 15px;
  margin: -40px 50px 0;
  padding: 60px 50px;
}
.contact-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 1 !important;
  z-index: 1;
}

.contact-details .row div {
  z-index: 99;
}
.contact-data {
  text-align: center;
}

.contact-btn,
.contact-foot-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 30px;
  background-color: #12b5cb; /* paste color code here --------------------- */
  color: #ffffff;
  font-family: Florence, cursive;
  border-radius: 2px;
  text-transform: uppercase;
}

.contact-btn:hover,
.contact-foot-btn:hover {
  text-decoration: none;
  color: #050505;
}

/* About shop */

/* Footer */
footer {
  margin: 20px 0 0;
  padding: 80px 0 60px;
  background-color: #12b5cb;
}
.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;
}
.social-icons {
  text-align: center;
}
.social-icon:hover {
  background: #fff;
  transition: all 0.4s;
}
.social-icon:hover .fa {
  color: #12b5cb;
}
.social-icon {
  border: 2px solid #fff;
  padding: 8px;
  width: 34px;
  height: 34px;
  border-radius: 25px;
  margin: 5px;
}
.social-icon .fa {
  font-size: 18px;
  color: #fff;
  margin: 0 2px;
}
.foot-site-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 1;
}
/* Footer */

@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;
  }

  .contact-details {
    padding: 50px 20px;
    margin: -60px 0px 0;
  }
}

@media screen and (max-width: 767px) {
  .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%;
  }
  .add-div2 {
    display: none;
  }

  .contact-details .row .contact-data:nth-child(2) {
    margin: 50px 0;
  }
  .footer-heading {
    margin-bottom: 10px;
  }
  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;
  }
  .footer-heading + br {
    display: none;
  }
}
@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 */
}
