:root {
  --purple: #6833FC;
  --black: #0a090c;
  --dgrey1: #18181d;
  --dgrey2: #302849;
  --lgrey1: #ccc3d5;
  --lgrey2: #9b90a6;
  --lgrey3: #5f5866;
  --white: #ffffff;
  --shadow1: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  --fade1: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  --fade1-delay05s: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
  --fade1-delay1s: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
  --fade1-delay15s: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Regular.ttf'); 
  font-weight: normal;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Black.ttf'); 
  font-weight: 900;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Bold.ttf'); 
  font-weight: 800;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-SemiBold.ttf'); 
  font-weight: 700;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Medium.ttf'); 
  font-weight: 600;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Light.ttf'); 
  font-weight: 300;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-ExtraLight.ttf'); 
  font-weight: 200;
}

@font-face {
  font-family: "Lexend Deca";
  src: url('../fonts/LexendDeca-Thin.ttf'); 
  font-weight: 100;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Lexend Deca', sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
  min-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, a, span {
  margin: 0;
  padding: 0;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 2rem 4rem;
  width: 100%;
  z-index: 999;
  transition: 0.5s;
}

.main-logo-header-container {
  height: 4rem;
  width: 12rem;
  min-height: 4rem;
  min-width: 12rem;
  background-image: url('../images/logo-white.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  transition: 0.5s;

}

.main-logo-header-container:hover {
  scale: 1.05;
}

.menu-screen {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: rgba(95, 76, 113, 0.5);
  z-index: 9999;
  -webkit-animation: fade-in 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header-es {
  height: 1.5rem;
  width: 1.5rem;
}

.hp-underline {
  color: var(--purple);
}

.header-menu-btn {
  background-image: url('../images/menu-btn.svg');
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.3s;
  -webkit-animation: fade-in 0.75s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
  animation: fade-in 0.75s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;

}

.header-contact-btn {
  background-image: url('../images/contact.svg');
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.3s;
  -webkit-animation: fade-in 0.75s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.75s both;
  animation: fade-in 0.75s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.75s both;
}

.header-contact-btn:hover {
  scale: 1.05;
}

.header-menu-btn:hover {
  scale: 1.05;
}

.menu-exit {
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  background-image: url('../images/exit-2.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  align-self: flex-end;
  transition: 0.3s;

}

.menu-exit:hover {
  scale: 1.05;
}

.menu-social-holder {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: auto;
}

.menu-card {
  position: relative;
  display: flex;
  height: 100dvh;
  width: 30vw;
  min-width: 300px;
  background-color: var(--dgrey1);
  box-sizing: border-box;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 2rem;
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@media only screen and (max-width: 767px) {
  .menu-card {
    width: 90vw;
  }

  header {
    padding: 2rem 2rem;
  }

}

.menu-link {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  transition: 0.3s;
  text-decoration-color: var(--purple);
}

.gallery-container {
  height: 15rem;
  overflow-x: scroll;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 100%;
}

.image-fs-viewer {
  height: 100vh;
  width: 100vw;
  background-color: rgba(26, 24, 27, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
  padding: 2rem;
}

.image-view-img {
  width: 75%;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow1);
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  animation: var(--fade1);
}

.img-view-exit {
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  background-image: url('../images/exit.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  align-self: flex-end;
  transition: 0.3s;
  position: absolute;
  top: 2rem;
  right: 2rem;

}

.img-view-exit:hover {
  scale: 1.05;
}

.gallery-img {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  object-position: center;
}

.menu-link:hover {
  font-size: 1.3rem;
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
}

.undr-purple { 
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 37em;
  height: 6em;
  margin-right: 3em;
}

.navbar-link {
  top: 0;
  font-size: 1.25em;
  color: #7A7A7A;
  font-weight: 300;
  font-family: 'Lexend Deca', sans-serif;
  text-decoration: none;
}

.active {
  color: #6833FD;
  font-weight: 1000;
  border: 3px solid #6833FD;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.ft-active {
  color: #6833FD;
  font-weight: 1000;
  border: 3px solid #FFFFFF;
  padding: 5px 10px 5px 10px;
  border-radius: 15px;
}

.navbar-link:hover {
  color: #6833FD;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 900;
}

.active:hover {
  color: #FFFFFF;
  background-color: #6833FD;
  transition: 0.2s;
}

.fb {
  background-image: url("../images/facebook-logo.svg");
}

.insta {
  background-image: url("../images/instagram-logo.svg");
}

.whatsapp {
  background-image: url("../images/whatsapp-logo.svg");
}

.social-logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 1.5em;
  width: 1.5em;
  transition: 0.2s;
}

.social-logo:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: 0.2s;
}

.fw-container {
  width: 100%;
  min-height: 50vh;
  background-color: var(--dgrey2);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 2rem 4rem;
}

.ani-play {
  animation-play-state: running;
}

.price-dd-holder {
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 14px;
  background-color: var(--dgrey1);
  min-width: 15rem;
  animation: var(--fade1);
  -webkit-animation: var(--fade1);
  animation-play-state: paused;
}

.price-so-btn {
  width: 100%;

}

.price-dropdown {
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 1.1rem;
  width: 15rem;
  height: 4rem;
  font-weight: 300;
  font-family: 'Lexend Deca', sans-serif;
  background-color: var(--lgrey1);
  color: var(--purple);
  text-align: center;
  box-shadow: var(--shadow1);
}



.price-icon {
  height: 4rem;
  width: 4rem;
  background-image: url(../images/price-tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.price-heading-holder {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  align-items: center;
  animation: var(--fade1);
  -webkit-animation: var(--fade1);
  animation-play-state: paused;
}

.ani-check {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.price-init-holder {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.align-center {
  align-items: center;
  justify-content: center;
}

.main-body-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}

.homepage-picture-large {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100svh;
  box-sizing: border-box;
  background-image: url("../images/pic3.jpg");
  background-position: center;
  background-size: cover;
}

.hp-pic-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-color: var(--black);
  opacity: 0.6;
  top: 0;
  left: 0;


}

.down-arrow {
  height: 2rem;
  width: 2rem;
  background-image: url('../images/down-arrow.svg');
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: slide-in-top 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite alternate both;
  animation: slide-in-top 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite alternate both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 01;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.hp-pic-intholder {
  display: flex;
  flex-direction: column;
  z-index: 10;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.main-home-text-heading {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 700;
  z-index: 10;
  text-align: center;
  -webkit-animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
  animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}

#price-first {
  display: flex;
}

#dw-screen-1, #dw-screen-2, #as-screen-1, #as-screen-2, #as-screen-3, #sv-screen-1, #sv-screen-2 {
  display: none;
}

#final-price-holder {
  display: none;
}



.price-nxt-btn {
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: 'Lexend Deca', sans-serif;
  background-color: var(--purple);
  color: var(--white);
  text-align: center;
  height: 4rem;
  box-shadow: var(--shadow1);
}

.price-pdf-btn {
  cursor: pointer;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 800;
  font-family: 'Lexend Deca', sans-serif;
  background-color: var(--purple);
  color: var(--white);
  text-align: center;
  height: 3rem;
  box-shadow: var(--shadow1);
}

.price-dd-button-hold {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.subheading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.font-purple {
  color: var(--purple);
}

.font-white {
  color: var(--white);
}

.font-lgrey2 {
  color: var(--lgrey2);
}

.font-dgrey1 {
  color: var(--dgrey1);
}

.hp-btm-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  height: 6rem;
  -webkit-animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

.hp-ghost-block {
  height: 6rem;
}

.main-body-text-container {
  display: flex;
  width: 100%;
  max-width: 900px;
  justify-content: center;
  box-sizing: border-box;
  align-self: center;
  padding: 2rem;
  margin: 2rem 0 2rem 0;
}

.main-body-text {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1em;
  text-align: left;
  color: #7A7A7A;
  font-weight: 300;
  z-index: 10;
}

.social-media-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 4rem;
  width: 100%;
  min-height: 65vh;
  gap: 2rem;
  overflow: hidden;

}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;

}

.reviews-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  max-width: 100%;
}

.review-block {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 1rem;
  gap: 1rem;
  height: 100%;
  min-width: 30rem;
  border: 2px solid var(--dgrey2);
  border-radius: 10px;
}

.review-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.five-star {
  height: 1rem;
}

.back-lgrey1 {
  background-color: var(--lgrey1);
}

.back-lgrey2 {
  background-color: var(--lgrey2); 
}

.back-dgrey2 {
  background-color: var(--dgrey2); 
}

.back-dgrey1 {
  background-color: var(--dgrey1); 
}


.bookings-heading-container::before {
  content: '';
  position: absolute;
  background-color: #7A7A7A;
  width: 100%;
  height: 30em;
  z-index: 10;
  opacity: 0.5;
}

.bookings-heading-container {
  display: flex;
  height: 30em;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background-image: url('../images/pic5.jpg');
  background-size: cover;
  background-position: center;
}

.contact-holder {
display: flex;
flex-direction: row;
width: 100%;
height: 100%;
justify-content: space-between;

}

.about-us-heading-container::before {
  content: '';
  position: absolute;
  background-color: #7A7A7A;
  width: 100%;
  height: 30em;
  z-index: 10;
  opacity: 0.4;
}

.about-us-heading-container {
  display: flex;
  height: 30em;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background-image: url('../images/pic6.jpg');
  background-size: cover;
  background-position: center;
}

.auhc2-bottom {
  position: relative;
  background-image: none;
  max-height: 50%;
}

.auhc-img-1 {
  background-image: url('../images/pic2.jpg');
  background-size: cover;
  background-position: center;
  width: 50%;
  max-width: 50%;
  height: 100%;
}

.auhc-img-2 {
  background-image: url('../images/pic13.jpg');
  background-position: center;
  background-size: cover;
  width: 50%;
  max-width: 50%;
  height: 100%;
}

.auhc-img-3 {
  background-image: url('../images/pic10.jpg');
  background-position: center;
  background-size: cover;
  width: 50%;
  max-width: 50%;
  height: 100%;
}

.auhc-img-4 {
  background-image: url('../images/pic11.jpg');
  background-position: center;
  background-size: cover;
  width: 50%;
  max-width: 50%;
  height: 100%;
}

.auhc-img-5 {
  background-image: url('../images/pic12.jpg');
  background-position: center;
  background-size: cover;
  width: 50%;
  max-width: 50%;
  height: 100%;
}

.booking-info-overall-container {
  display: flex;
  height: 30em;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.tandc-heading-container::before {
  content: '';
  position: absolute;
  background-color: #7A7A7A;
  width: 100%;
  height: 30em;
  z-index: 10;
  opacity: 0.5;
}

.tandc-heading-container {
  display: flex;
  height: 30em;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background-image: url('../images/pic7.jpg');
  background-size: cover;
  background-position: center;
}

.paw-print-1 {
  z-index: 15;
  height: 4em;
  bottom: -2em;
  padding: 15px;
  -webkit-filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.5));
  filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.5));
}

.about-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mc-header {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 3.4rem;
  }

.p-bodytext {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.1rem;
    z-index: 10;
    font-weight: 300;
  }

.polaroid-container-1 {
  margin-left: 3em;
  padding-right: 4em;
}

.polaroid-container-2 {
  margin-right: 3em;
  padding-left: 4em;
}

.picture-frame-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 3px solid red;
  height: 20em;
  z-index: 100;
}

.picture-frame-polaroid1:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 230px 0 0 180px;
    border-color: transparent transparent transparent rgba(255,255,255,0.3);
}


.picture-frame-polaroid1 {
  background-color: #FFFFFF;
  width: 200px;
  height: 250px;
  -webkit-box-shadow: 0px 2px 35px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 2px 35px 1px rgba(0,0,0,0.4);

  background-size: cover;
  box-sizing: border-box;
  border: 20px solid #FFFFFF;
  transform: rotate(12deg);
  transform-origin: bottom;
}


.picture-frame-polaroid2:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 230px 0 0 180px;
    border-color: transparent transparent transparent rgba(255,255,255,0.3);
}


.picture-frame-polaroid2 {
  background-color: #FFFFFF;
  width: 200px;
  height: 250px;
  -webkit-box-shadow: 0px 2px 35px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 2px 35px 1px rgba(0,0,0,0.4);
  background-size: cover;
  box-sizing: border-box;
  border: 20px solid #FFFFFF;
  transform: rotate(-12deg);
  transform-origin: bottom;
}

.sm-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  width: 100%;
  max-width: 60rem;

}

.about-us-pic1 {
  background-image: url('../images/pic9.jpg');
  background-position: center;
}

.about-us-pic2 {
  background-image: url('../images/pic8.jpg');
  background-position: center;
}

.ht-button {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 15rem;
  height: 4rem;
  box-sizing: border-box;
  padding: 1rem;
  background-color: var(--dgrey1);
  border-radius: 10px;
  margin-top: auto;

}

.ht-button p {
  text-align: center;
}

.link-no-underline {
  text-decoration: none;
  width: fit-content;
}

.ht-button:hover {
  background-color: var(--purple);
  color: var(--white);
  transition: 0.2s cubic-bezier(0,.74,1,.44);
  cursor: pointer;
}

.ht-button:hover p {
  color: var(--dgrey1);
}

.reassurance-container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  width: 100%;
  height: 40em;
  background-image: url("../images/blob-background-purple.svg");
  background-position: center;
  background-size: cover;
}

.reassurance-text-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.reassurance-container-heading {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 2em;
  color: #FFFFFF;
  z-index: 10;
  font-weight: 600;
  text-align: center;
}

.reassurance-info-blocks-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  gap: 2rem;

}

.reassurance-info-block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1em;
  max-width: 30rem;
  align-items: center;
}

.area-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.reassurance-text-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.block-bookings {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.block-bookings:hover {
  background-color: #6833FD;
  transition: 0.2s;
}

.reassurance-icon-svg {
  height: 2rem;
  width: 2rem;
  z-index: 20;

}

.info-block-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #ffffff;
  font-size: 2em;
  font-weight: 1000;
  text-align: center;
}

.info-block-descriptive-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #cfcfcf;
  font-size: 1.1em;
  font-weight: 300;
  padding: 0px 50px 0px 50px;
  text-align: center;
}

.map-container {
  display: flex;
  overflow: hidden;
  align-items: center;
  height: 30em;
}

.map-label-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  z-index: 10;
  height: 24em;
  width: 22em;
  margin-left: 3em;
  background-color: #4c23c2;
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.4);
}

.map-label-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #ffffff;
  font-size: 2em;
  font-weight: 1000;
  text-align: left;
}

.map-label-descriptive-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 300;
  max-width: 80%;
}

.google-map-embed {
  border: 0;
  height: 40em;
}

.price-list-overall-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  height: 30em;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 2px 20px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 2px 20px 1px rgba(0,0,0,0.3);

}

.price-head1 {
  color: #6833FD;
}

.price-sub-title-bar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 2em;
  width: 55em;
}

.dog-walking-title-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 2em;
  background-color: #6833FD;
  border-radius: 15px 15px 0 0;
}

.dog-walking-subtitle {
  font-family: 'Lexend Deca', sans-serif;
  color: #44288F;
  font-size: 1.2em;
  letter-spacing: 0.5em;
}

.dogwbar1 {
  width: 20em;
}

.dogwbar2 {
  width: 30em;
}

.price-info-blocks-container {
  width: 55em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}

.price-info-block {
  height: 20em;
  width: 10em;
}

.pib1 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #D5C8FE;
  border-radius: 15px 0px 0px 15px;
}

.pib2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #BBA5FA;
  margin-right: 5em;
  border-radius: 0px 15px 15px 0px;
}

.pib3 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #D5C8FE;
  border-radius: 15px 0px 0px 15px;
}

.pib4 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #BBA5FA;
}

.pib5 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #A58BF0;
  border-radius: 0px 15px 15px 0px;
}

.price-info-block-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #6833FD;
  font-size: 1.9em;
  font-weight: 500;
}

.price-inside-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 5em;
  width: 90%;
  border-radius: 15px;
}

.price-info-block-descriptive-text {
  font-family: 'Lexend Deca', sans-serif;
  color: #474747;
  font-size: 0.9em;
  font-weight: 300;
  text-align: center;
  max-width: 95%;
}

.pb-text-1 {
  font-size: 1.3em;
}

.pb-text-2 {
  font-size: 1.75em;
}

.pinside2 {
  height: 7em;
}

.pinside-color-1 {
  background-color: #C4AEFF;
}

.pinside-color-2 {
  background-color: #A88DF6;
}

.pinside-color-3 {
  background-color: #9478E9;
}


.book-form-element {
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-text-box {
  height: 30px;
  width: 380px;
  border-radius: 10px;
  border: 0;
  background-color: #cfcfcf;
  font-family: 'Lexend Deca';
  padding: 10px;
}

.spec-date-box {
  height: 6em;
}

.date-box {
  width: 170px;
}

.form-date-holder {
  width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-divider {
  height: 70px;
  width: 400px;
}


.form-subheader {
  position: relative;
  height: 30px;
  background-color: #6833FD;
  border-radius: 10px;
  width: 400px;
  display: inline-flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-subheader-text {
  position: relative;
  font-family: 'Lexend Deca';
  color: white;
  text-align: center;
  width: 400px;

}

.service-holder {
  display: flex;
  height: 50px;
  width: 400px;
  border: 1px solid grey;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  justify-content: space-between;
  flex-direction: row;
}

.radio-button-service {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.radio-holder {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0px;
  width: 200px;
  height: 50px;
  align-items: center;
}

.radio-text {
  font-family: 'Lexend Deca';
  color: #7A7A7A;
  font-size: 15px;
}

.radio-button-exc1 {
  padding: 10px;

}


#form-submit-button {
  width: 400px;
  height: 50px;
  border-radius: 10px;
  border: 0;
  font-family: 'Lexend Deca';
  font-size: 20px;
  background-color: #9478E9;
  color: white;
  cursor: pointer;
}

.form-submit-button:hover {
  background-color: #6833FD;
  cursor: pointer;
}

.checkbox-holder {
  display: flex;
  height: 50px;
  border: 1px solid grey;
  border-radius: 10px;
  width: 400px;
  margin-top: 10px;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
}

.checkbox-form {
  height: 20px;
  width: 20px;
  padding: 10px;
  cursor: pointer;
}

.chk-1 {
  height: auto;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.contact-checkbox-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  max-height: 20px;
  width: 400px;
  margin-top: 10px;
  align-items: center;
}

.rq-f-text {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
}






footer {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 2rem 4rem;
  height: 30rem;
  background-color: var(--dgrey1);
  background-image: url(../images/logo-purple-foot.svg);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;

}

.f-spacer {
  height: 1rem;
}

.overall-footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

}

.company-info-footer-overall {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  align-items: center;
  width: 30rem;
  border-radius: 10px;
  box-sizing: border-box;
}

.company-info-footer-logo-circle {
  height: 4rem;
  width: 4rem;
  min-width: 4rem;
  min-height: 4rem;
  background-image: url('../images/logo-white.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.footer-link-table-container {
  display: flex;
  flex-direction: row;
  margin-right: 3em;
}

.footer-sm-links-container {
  display: flex;
  flex-direction: row;
  gap: 2em;
}

.footer-link-table {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  width: 15em;
  height: 15em;
}

.foottext1 {
  max-width: 20em;
}

.footer-link-text {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 0.2rem;
  color: #FFFFFF;
  text-align: left;
}

.fb-footer {
  background-image: url('../images/facebook-logo-white.svg');
}

.whatsapp-footer {
  background-image: url('../images/whatsapp-logo-white.svg');
}

.insta-footer {
  background-image: url('../images/instagram-logo-white.svg');
}

.footlasttext {
  font-size: 0.8em;
}

.ci-text {
  font-size: 0.75rem;
  color: var(--white);
}

.footer-copyright {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--lgrey3);
}

.footer-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  -webkit-animation: var(--fade1-delay05s);
  animation: var(--fade1-delay05s);
  animation-play-state: paused;
}

.footer-link-holder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  -webkit-animation: var(--fade1);
  animation: var(--fade1);
  animation-play-state: paused;
}

.f-link {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
 footer {
    padding: 2rem;
 }

 .company-info-footer-overall {
  width: 100%;

 }

 .social-media-container {
  padding: 2rem;
 }

 .ht-button {
  width: 100%;
 }

 .mc-header {
  font-size: 2rem;
  line-height: 2.3rem;
 }

 .contact-holder {
  flex-wrap: wrap;
 }

 .block-bookings { 
  flex-basis: 50%;
 }

 .link-no-underline { 
  width: 100%;
 }

 .image-view-img {
  width: 100%;
 }

 .reviews-container {
  flex-direction: column;
  overflow-x: visible; 
 }

 .review-block {
  min-width: 100%;
 }

 .gallery-container {
  max-width: 100%;
  overflow-x: visible;
  flex-wrap: wrap;
  height: fit-content;
 }

 .gallery-img {
  height: calc(50vw - 2.5rem);
 }

}



@media only screen and (max-width: 850px) {
  .fw-container {
    flex-direction: column;
    padding: 2rem 2rem;
    align-items: flex-start;
    min-height: auto;
    gap: 4rem;
  }

  .price-dd-holder {
    width: 100%;
    align-items: center;
  }

  .price-dd-button-hold {
    width: 100%;

  }

  .price-dropdown {
    width: 100%;

  }
}



.home1title, .home2title, .home3title, .homerevtitle {
  animation: var(--fade1);
  -webkit-animation: var(--fade1);
  animation-play-state: paused;
}

.home1para, .home2para, .home3para, .homerevpara {
  animation: var(--fade1-delay05s);
  -webkit-animation: var(--fade1-delay05s);
  animation-play-state: paused;
}

.home1button, .home3block, .homerevmblock {
  animation: var(--fade1-delay1s);
  -webkit-animation: var(--fade1-delay1s);
  animation-play-state: paused;
}