
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');


:root {
  --main-white-color: #fff;
  --main-yellow-color: #F3A72E;
  --main-white-txt-color: #ffffffda;
  --main-black-color: #081a63ca;
  --main-sky-color: #377df6;
  --main-deep-sea-color: #081a63;
  --main-white-text-color: #ffffffe6;
  --main-highlight-color: #377df666;
  --main-gradient-dark:107.65deg, #081A62 -36.25%, rgba(0, 0, 0, 0) 131.73%;
}

::-webkit-scrollbar {z-index: 2; width: 0vw;} /* width */
::-webkit-scrollbar-track {background: var(--main-white-color);} /* Track */
::-webkit-scrollbar-thumb {background: var(--main-deep-sea-color);} /* Handle */
::-webkit-scrollbar-thumb:hover {background: var(--main-sky-color);} /* Handle on hover */

.background-deep-sea {background: var(--main-deep-sea-color);}
.background-sky-blue {background: var(--main-sky-color);}

html, body {
  font-family: 'poppins', sans-serif !important;
  background: var(--main-white-color);
  margin: 0 auto;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
  /* border: #ff6666 solid .2px; */
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  width: 100vw;
  color: var(--main-white-txt-color);
}

section {
margin: 6vw;
}

.child-div {
  color: var(--main-white-text-color);
}

h2 {
  position: relative;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--main-white-txt-color);
}

/* LINK SETTINGS____________________ */
a {
  text-decoration: none;
  color: #CED1E0;
  fill: #CED1E0;
}

a:focus {
  color: var(--main-white-color);
  fill: var(--main-white-color);
}

a:hover {
  transition: 200ms;
  color: var(--main-white-color);
  fill: var(--main-white-color);
}

a:active {
  transition: none;
  color: #9CA3C0;
  fill: #9CA3C0;
  /* background-color: grey; */
}

::placeholder {
  color: var(--main-sky-color);
  font-size: .8rem;
}

input {
  position: relative;
  width: 100%;
  padding: .4rem 0;
  text-align:center;
  cursor:pointer;  
  z-index: 1;  
  font:'poppins';
  font-weight: 500;
  font-size: 1.3rem;
  /* line-height: 2.2vw; */
  border: var(--main-deep-sea-color) 2px solid;
  /* margin-top: 2.4rem; */
  outline: none;
  margin-bottom:.4rem
}

input:focus {
  background-color:var(--main-white-text-color);
  color: var(--main-sky-color);
  padding: .4rem 0;
}

input:active {
  transition: none;
  color: var(--main-sky-color);
}

input {
  background: rgba(255, 255, 255, 0.8);
  color: var(--main-black-color);
}

.inpt-flex {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

button {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 1.5rem 0;
  cursor: pointer;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 2.2vw;
  border: 0;
}

.icon-btn {
  margin: unset;
  padding: unset;
  width: 1em;
  height: 1em;
  margin-right: .5em;
}

.blue-btn {
  color: var(--main-white-txt-color);
  fill: var(--main-white-txt-color);
  background-color: var(--main-sky-color);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5), inset 0px -4px 4px rgba(0, 0, 0, 0.25);
}

.yellow-btn {
  color: var(--main-white-color);
  fill: var(--main-white-color);
  background-color: var(--main-sky-color);
}



.border-btn {
  color: var(--main-white-color);
  border: 2px solid var(--main-white-color);
  background: none;
}

button:hover {
  transition: 200ms;
  color:  var(--main-sky-color);
  fill: var(--main-sky-color);
  background-color: var(--main-white-color);
  box-shadow: none;
}

button:focus {
  color:  var(--main-white-txt-color);
  fill: var(--main-white-txt-color);
  background-color: var(--main-sky-color)
}

ul {
  list-style: none;
}

mark {
  background-color: var(--main-highlight-color);
  color: var(--main-white-txt-color);
}

.wrapper {
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}

.wrapper > * {
  padding: 0px;
}

/* __________________________________Page Header_______________________________ */

.page-header {
  position:fixed;
  right: 0;
  left: 0;
  background: var(--main-black-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--main-deep-sea-color);
  z-index: 20;
}

.page-header >* {
  padding: 8px 35px;
}

.page-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6rem;
  color: var(--main-white-color);
  letter-spacing: 0.1px;
}

.page-header ul {
  display: flex;
  order: 1;
  width: 100%;
  margin-top: 15px;
}

.page-header ul li:not(:last-child) {
  padding-right: 35px;
}

.page-header .cta-contact {
  font-family: inherit;
  font-size: 1.2rem;
  padding: 5px 18px;
  border: 1px solid;
  border-radius: 5px;
}

.page-header svg {
  margin-left: -8px;
}

.text-svg-align {
  display: flex;
  justify-content: center; 
  align-items: center;
}

.text-initial-align {
  display: flex;
  align-items:initial;
}

/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#text-animation {
  text-align: left;
  font-size: 10vw;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: 0.97112px;
  color: #FFE0C9;
  opacity: 0.6;
  bottom: 0;
  margin: 2rem; 
  position: absolute;
  z-index: 1;
}

.page-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
   /* margin-top: 3rem; */
  flex-grow: 1;
  width: 100vw;
  height: unset;
  height: 100vh;
  max-height: 120vw;
  color: var(--main-gradient-dark);
  background: var(--main-deep-sea-color)
  url(./assets/img/heroGradient.webp) no-repeat
  center / cover;
  background-position: 99% 20%;
}


/* _____________________________________________________________________________________________________ */
.parent-div-h {
  position: relative;
  margin: 4rem 0 0 0;
  padding: min(4vw, 1rem); 
  height: auto;
}

#top-margin {
  margin: 8rem 0 0 0;
}

.parent-div-full-w {
  width: 100%;
}

/* _____________________________________________________________________________________________________ */
/* Book meeting width */
.parent-div-book-w {
  width: 100%;
}

.parent-div-gallery-w {
  width: 100%;
  background: var(--main-sky-color)
  url(./assets/img/view-gallery.webp) no-repeat
  center / cover;
}

.parent-div-gallery-w h2 {
  margin-bottom: 10rem;
}

.parent-div-gallery-w:before {
  position: absolute;
  width: 100%;
  background-blend-mode:soft-light;
  background: linear-gradient(107.65deg, #081A62 -36.25%, rgba(0, 0, 0, 0) 131.73%);
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.parent-accordian-w {
  width: 100%;
  padding: 0;
}

/* BOOK APPOINTMENT
-------------------------------------------------- */
#img-book-appointment {
  margin: 0 10px;
  width: 14.3125rem;
  height: 16.625rem;
  margin-top: -11rem;
  float: right;
}

#img-join-family {
  width: 96vw;
  height: 64vw;
  margin-left: -11.4vw;
  margin-bottom: -2.2rem;
  background: url(./assets/img/img-join-our-family.webp) cover center;
}

form button {
  margin-top: 0;
  margin-bottom: 3rem;
}
.jf h2 {
  margin-top: 1rem;
}
.txt-book-appointment {
  width: auto;
  height: 20rem;
  padding-top: 6rem;
}

.footer-col {
  max-width: 320px;
}

.footer-col p {
  margin-top: 2rem;
}

.row-column {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2em;
}

.flex-box {
  display: grid;
  grid-template-columns: repeat(1, auto);
  justify-content: center;
}

.svg:hover {
  padding-top: -0.5rem;
  transition: all 400ms ease;
}




footer {
  margin:8rem 0 0 0;
  background-color:var(--main-deep-sea-color);
}

footer span {
  color: var(--main-sky-color);
}

footer a:hover span {
  color: unset;
}

footer h2 {
  opacity: 50%;
  margin: 2rem 2rem 1rem 0;
}

footer p {
  opacity: 50%;
  margin-bottom: .4rem;
}

.icon-size {
  margin-top: .3rem;
  width: 1em;
  height: 1em;
  margin-right: .5em;
}

.size-our-mission {
  max-width: 28rem;
}

.gap-between {
  margin-bottom: .4rem;
}

.justified-text {
  text-align: justify;
  text-justify: inter-word;
}

/* The basic CSS styles for the accordion. 
-----------------------------------------------------------------*/

.twenty-four-by-seven {
  color: var(--main-sky-color);
}

.accordion {
  display: flex;
  padding: 0;
  width: 100%;
  height: 47rem;
  overflow: hidden;
}

.accordion ul {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}

.accordion ul li {
  position: relative;
  width: 100%;
  height: 12rem;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom: .3333rem solid var(--main-white-color);

  transition-delay: 100ms;
  -webkit-transition-delay:100ms;
  -ms-transition-delay:100ms;
  -moz-transition-delay:100ms;
  -o-transition-delay:100ms;

  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}

.accordion ul li div {
  display: block;
  overflow: hidden;
  height: 12rem;
}

.accordion ul li div a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  padding: 0 4vw;
  color: #fff;
  text-decoration: none;

  transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
}

.accordion ul li div a p { 
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: wrap;
  overflow: hidden;

  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}

.accordion ul li div a h2 {
  white-space: nowrap;
  font-weight: 500;
  text-overflow: clip;
  font-size: 1.4rem;
  margin-bottom: 2px;
  top: 1rem;
}

.accordion ul li div a mark {
  background: var(--main-highlight-color);
  padding: 0 4px;
}

.accordion ul li div a p {
  top:3rem;
  max-width: 30rem;
  height: auto;
  line-height: 1.5rem;
  text-overflow:ellipsis;
  word-wrap:break-word;
  font-size: 1rem;
}

.accordion ul:hover li:hover a *, 
.accordion ul:hover li:active a * {
  transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -o-transition-delay: 400ms;

  opacity: 1;

  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}

.accordion ul li:nth-child(1) { background:url(./assets/img/Medical\ Services.webp) no-repeat center / cover; background-position: 60% 30%;}
.accordion ul li:nth-child(2) { background:url(./assets/img/Pet\ Grooming.webp) no-repeat center / cover; background-position: 60% 30%;}
.accordion ul li:nth-child(3) { background:url(./assets/img/Pet\ Shop.webp) no-repeat center / cover; background-position: 60% 30%;}
.accordion ul li:nth-child(4) { background:url(./assets/img/Pet\ Boarding.webp) no-repeat center / cover; background-position: 35% 0%;}
.accordion ul:hover li:hover a, .accordion ul:active li:active a { background: linear-gradient(107.65deg,  #001622 -36.25%, rgba(0, 0, 0, 0) 131.73%);}

.accordion ul:hover li, .accordion ul:active li { height: 6.5rem; }
.accordion ul:hover li:hover, .accordion ul:active li:active { height: 28rem;}
.accordion ul li a { background: linear-gradient(107.65deg, #001622 -36.25%, rgba(0, 0, 0, 0) 131.73%);}

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 650px) {

  .page-header ul {
    width: auto;
    margin-top: 0;
  }
  .page-header .cta-contact {
    order: 1;
  }
  .page-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
    .page-header svg {
	margin-left: -8px;
}
  .page-footer ul {
    margin-bottom: 0;
  }

  

  button {
    padding: 1rem 2rem;
    width: unset;
  }

  form button {
    padding: 1rem 2rem;
    width: 100%;
  }

  .row-column {
    grid-template-columns: repeat(2, auto);
    gap: 2rem;
  }

  .inpt-flex {
    max-width: 46rem;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: .5rem;
  }

  .parent-div-h {
    position: relative;
    margin: 8rem 0 0 0;
    padding: 4vw;
    height: auto;
  }

  .txt-book-appointment {
    padding-top: 0;
    height: 14rem;
  }

  #img-book-appointment {
    margin: 0 -30px 0 0;
    margin-top: -10rem;
    width: calc(14.3125rem + 8.60902255vw); /* 0.86090 */
    height: calc(16.625rem + 10vw);
  }
}

@media screen and (min-width: 735px) {
  .flex-box {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 8vw;
    justify-content: center;
  }
}

@media screen and (min-width: 900px) {

  #img-book-appointment {
    margin: 0 20px;
    margin-top: -10rem;
    width: calc(14.3125rem + 17.2180vw); /* 0.86090 */
    height: calc(16.625rem + 20vw);
    float: right;
  }
}

@media screen and (min-width: 1200px) {
  .responsive {
    display: flex;
    /* grid-template-columns: repeat(2, auto); */
    gap: 1em;
    /* justify-content: center; */
  }
  .parent-div-gallery-w {
    width: 35rem;
    }
    .parent-div-book-w {
    
      /* justify-content: last baseline; */
      margin-right: 0;
      margin-left: 0;
      /* width: 62.986vw; */
      /* margin-right: 2.222vw; */
    }
    #img-book-appointment {
      position: absolute;
      display: flex;
      align-items: center;
      margin: -12vw 0 0 22vw;
      /* margin-left: calc(20vw +2rem); */
      width: calc(14.3125rem + 8.60902255vw + 8.60902255vw); 
      /* 0.86090 */
      height: calc(16.625rem + 20vw);
    }
     .parent-div-gallery-w {
      display: flex;
      /* justify-content:space-evenly; */
    }
    .parent-div-gallery-w .child-div{
      display: flex;
      flex-flow: column;
    }
  
     .parent-div-gallery-w h2 {
      margin-bottom: unset; 
    }
    .parent-div-gallery-w button,
    .parent-div-gallery-w a,
    .parent-div-book-w a {
      margin-top: auto;
      margin-bottom:0;
      margin-left: 0;
    }
  }

@media screen and (min-width: 1200px) {

  .accordion { height: 32rem;}
  .accordion ul { height: 100%;}

  .accordion ul li {
    display:table-cell;
    width: 25%;
    height: 100%;
    border-bottom:none;
    border-right: 8px solid var(--main-white-color);
  }

  .accordion ul li div {
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }

  .accordion ul li div a {
    padding: 0 2rem;
    width: 100%;
    height: 100%;
  }

  .accordion ul li div a p {
    width: 30rem;
    height: auto;
    line-height: 220%;
  }

  .jf {
    display: flex;
    align-items: center;
  }

  #img-join-family {
    margin: 0;
    position: absolute;
    margin: 0 0 0 21vw;
    margin-bottom: -9rem;
    width: 65vw;
    max-width: 1100px;
    height: auto;
    padding-bottom: 4rem;
  }

  .inpt-flex {
    display:inherit;
    margin-top:3rem;
    margin-bottom:3rem;
    width: 22rem; 
  }

  form button {
    margin-top: 0;
    margin-bottom: 0;
  }

  .accordion ul:hover li, .accordion ul:active li { width:15%; }
  .accordion ul:hover li:hover, .accordion ul:active li:active { width:55%;}
}

@media screen and (min-width: 1350px) {

  .flex-box {
    grid-template-columns: repeat(3, auto);
    gap: 5vw;
    justify-content: center;
  }
}

@media screen and (min-width: 1350px) {

  #img-join-family {
    margin-bottom: -6rem;
  }

  .flex-box {
    gap: 8rem;
  }
}

@media screen and (min-width: 1500px) {

  #img-join-family {
    margin: 0 0 0 22vw;
    margin-bottom: -2rem;
  }

  .flex-box {
    gap: 12rem;
  }
}

@media screen and (min-width: 1650px) {

  #img-join-family {
    margin: 0 0 0 23vw;
    margin-bottom: 1rem;
  }

   .flex-box {
    gap: 16rem;
  }
}

@media screen and (min-width: 1800px) {
  #img-join-family {
    margin: 0 0 0 30vw;
    margin-bottom: 1rem;
  }

}

.overlay-gallery {
  position: absolute;
  margin: 4rem 1rem;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;

  padding: 1rem 1rem;
}

.go-back-box {
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: 10%;
  bottom: 0;
  max-height: 15rem;
  max-width: 20rem;
  background: var(--main-deep-sea-color);
}

.Go-back-message {
  color: var(--main-white-text-color);
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
}

#click{
  position:fixed;
  top:0;
  left:0;
  background: var(--main-white-txt-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 21;
  width:100%;
  height:100%;
  display: none;
}

.oh-no {
  position: absolute;
  width: 100%;
  margin-top: -4.75rem;
  
}

.cancel {
  display: block;
  position:absolute;
  /* top:1rem;
  left:1rem; */
  bottom: 2rem;
  width: 100%;
  color:var(--main-sky-color);
  font-size:1.2rem;
  text-decoration:underline;
  text-align:center;
}

.cancel:hover{ color: var(--main-white-color);}

#click:target{
  display: block;
  opacity: 1;
}

@media screen and (min-width: 700px) {

  .Go-back-message {
    font-size: 4rem;
  }
  .oh-no {
    width: 100%;
    max-height: 70%;
    margin-top: -9.5rem;
  }

  .go-back-box {
    top: 10%;
    max-height: 30rem;
    max-width: 40rem;
  }

  .cancel {
    bottom: 4rem;
  }
  

}

/* _______________________________
_____________________________________ */




/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}








@media only screen and (max-width: 600px){
    .page-header ul {
    flex-wrap: wrap;
}
}
