/*  FONTFAMILY-LINKS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap');
/* SCROOLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--c4);
} 
::-webkit-scrollbar-thumb {
  background:var(--c3);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(42, 15, 0);
}

/* Colors and Fonts */
:root {
  --c1: #ffffff;          /* white */
  --c2: #000000;          /* black */
  --c3: #8C5E3C;          /* background*/
  --c4: #E3C67C;          /* button_background*/
  --c5: #AC745B;          /* font_heading */
  --c6: #bababa;          /* gray */

  --f1: "Poppins", sans-serif;
  --f2: "Corinthia", cursive;
  --f3: "Laila", serif;
}

/* Global Styles */
*{
  padding: 0;
  margin: 0;
}
h1,h2,h3,h4,h5,h6{
  padding: 0;
  margin: 0;
}
p{
  padding: 0;
  margin: 0;
  font-family: var(--f1) !important;
}
ul{
  padding: 0 !important;
  margin: 0;
}
li{
  padding: 0;
  margin: 0;
  list-style: none ;
}
a{
  display: inline-block !important;
  text-decoration: none !important;
}
img{
  width: 100%;
  display: block;
}
.rapper {
    position: relative;
    overflow: hidden;
}
body {
    font-family: var(--f1);
    color: var(--c1);
}

/* HEADER SECTION */

.header {
    text-align: center;
    position: absolute;
    top: 10px;
    z-index: 2;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.nav-bar ul li a {
  color: var(--c1);
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 14px;
  /* transition: all 0.3s ease-in-out;
  transform: scale(1);
&:hover {
  opacity: 1;
  transform: scale(1.1); */
  /* text-shadow: 0 0 4px var(--c2), 0 0 7px var(--c2), 0 0 10px var(--c2); */
}
  
.navigation-right {
    display: flex;
    justify-content: end;
}
.nav-bar {
    padding: 0px 10px;
}
.navigation-right,.navigation-left {
    border-top: 1px solid var(--c6);
    border-bottom: 1px solid var(--c6);
    height: 60px;
    display: flex;
    align-items: center;
    width: 40%;
}
.logo-header h1,.logo-header h2 {
    font-family: var(--f3) !important;
    color: var(--c1);
    cursor: pointer;
}
.logo-header h1{
    font-size: 25px;
    margin-bottom: 5px;
}
.logo-header h2{
    font-size: 17px;
    opacity: 0.9;
    font-weight: 400;
}
.search-bar-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 13px;
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}
.search-bar-button-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    width: 2px;
    height: 29px;
    background-color: var(--c1);    
    opacity: 0.8;
}
.search-icon i {
  font-size: 18px;
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  &:hover {
    color: var(--c1);
    opacity: 1;
    text-shadow: 1px 1px 3px var(--c2);
  }
}
.header-btn a {  
 background-color: var(--c3);
 text-transform: uppercase;
 padding: 9px 15px; 
 color: var(--c1);
 font-family: var(--f1);
 font-weight: 500;
 opacity: 0.9;
 font-size: 13px;
  position: relative;
  display: inline-block;
  color:var(--c1); 
  overflow: hidden;
  margin-top: 5px;
}
.header-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  right: -49px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #f1f1f1;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.header-btn a:hover {
  color: #8C5E3C; 
  font-weight: 500;
}
.header-btn a:hover::before {
  transform: translateX(0);
}
/*  NAVIGATION  ANIMATIONS*/




/* BANNER SECTION */

.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('https://laurie.webdemo360.com/wp-content/uploads/2025/08/Group-9.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 12vw;
    position: relative;
}
.banner-text h5 {
    font-family: var(--f2) !important;
    margin-top: 25px;
    font-size: 45px;
    opacity: 0.9; 
}
.banner-text h1 {
    font-family: var(--f3) ;
    font-size: 85px;
    color: var(--c4);
    text-transform: capitalize;
}
.banner-text h2 {
    font-family: var(--f3);
    font-size: 68px;
    color: var(--c4);
    text-transform: capitalize;
    font-weight: 400;
    margin-top: -10px;
}
.banner-text h4 {
    background: linear-gradient(to left, rgba(140, 94, 60, 1), rgba(160, 110, 80, 1));
    font-family: var(--f3);
    font-size: 27px;
    color: var(--c1);
    opacity: 0.8;
    display: inline-block;
    padding: 6px 0px;
    padding-right: 10px;
    padding-left: 200px;
    margin-left: -190px;
    border-radius: 0px 30px 30px 0px;
    font-weight: 400;
    letter-spacing: .5px;
}
.banner-text p {
    font-size: 14px;
    color: var(--c1);
    opacity: 0.7;
    margin-top: 20px;
    padding-right: 500px;
    text-transform: capitalize;
} 
.btn {
    text-transform: uppercase;
    padding: 9px 20px;
    font-family: var(--f1);
    color: var(--c1);
    font-size: 15px;
}
.banner-button-box{
    margin-top: 30px;
}
.btn-banner1 {
  background-color: var(--c3);
  color: var(--c3);
  z-index: 1;

}
.btn-banner2 {
  background-color: var(--c4);
  color: var(--c2);
  margin-left: 20px;
}


/* _SECTION__WELCOME_ */
.welcome-sec {
  color: var(--c2);
  padding: 100px 0px 260px 0px;
}
.welcome-img-box {
  background: #8C5E3C;
  width: 650px;
  height: 95%;
  margin-left: -130px;
  border-radius: 0px 10px 10px 0px;
  position: relative;
  left: -60px;
}
.background-img img {
    position: absolute;
    top: 0px;
    left: -170px;
    width: 630px;
    filter: brightness(0) invert(1) opacity(0.9);
    transform: rotate(293deg);
}
.main-img img {
    position: absolute;
    top: 27px;
    left: 113px;
    /* width: 514px; */
    height: 630px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: -2px;
    transition: all 0.4s ease-in-out;
    object-position: top;
}
.main-img img:hover {
   box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
   transform: translate(-10px,-10px);
}
.welcome-content {
    padding: 20px 0px;
}

.welcome-content h5 {
    text-transform: capitalize;
    font-family: var(--f2);
    font-size: 35px;
}

.welcome-content h1 {
    font-family: var(--f3);
    text-transform: capitalize;
    font-size: 43px;
    padding-bottom: 10px;
}

.welcome-content p {
    font-size: 14px;
    line-height: 25px;
    padding-bottom: 20px;
    opacity: 0.9;
    font-weight: 400;
}
.welcome-btn {
  background: #8C5E3C;  
  font-weight: 500;
  color:var(--c1); 
}

/* _SECTION__DREAMPUP_ */

.dream-pup {
  padding: 100px 0px;
  color: var(--c2);
  background-color: rgba(172, 116, 91, .2);
  padding-bottom: 100px;
}
.title-dream-pup {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
}
.title-dream-pup h5 {
  font-family: var(--f2);
  font-size: 35px;
  text-transform: capitalize;
}
.title-dream-pup h1 {
  font-family: var(--f3);
  font-size: 43px;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.title-dream-pup h1 span {
  color: var(--c5);
}
.main-dream-pup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
}
.dream-pup-img {
  background-color: #8C5E3C;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}
.dream-pup-img:hover {
  transform: scale(1.02);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
}
.dream-pup-img:hover img{
  transform: rotate(4deg);
}
.dream-pup-img img {
  transform: rotate(-4deg);
  object-fit: cover;
  border-radius: 5px;
  width: 250px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.dream-pup-content {
  text-align: left;
}
.dream-pup-content h3 {
    font-size: 20px;
    font-family: var(--f3);
    text-transform: capitalize;
    padding: 15px 0px 3px 0px;
}
.dream-pup-content p {
    opacity: 0.7;
    font-size: 14px;
    padding-bottom: 10px;
}
.dream-pup-content span {
    font-size: 15px;
    font-family: 'Laila';
    color: var(--c2);
}
.dream-pup-icon {
    display: inline-block;
    text-align: end;
    padding-left: 50px;
}
.dream-pup-icon i {
    font-size: 15px;
    color: #C5620C;
    /* opacity: 0.8; */
}
.pupfot {
    position: absolute;
    top: -70px;
    right: -120px;
    width: 210px;
}
.ratangle {
    position: absolute;
    bottom: -120px;
    left: -200px;
    width: 130%;
    /* opacity: 0.5; */
}

/* _SECTION__COMMING_SOON */

.coming-soon {
  padding: 100px 0px;
}
.wall-background {
  background: url('/wp-content/uploads/2025/08/WhatsApp-Image-2025-08-25-at-10.02.52-PM.jpeg');
  background-size: auto;
  background-position: 0% 30%;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0px;
}
.comingsoon-content h5{
 padding-top: 40px;
 font-family: var(--f2);
  font-size: 43px;
  text-transform: capitalize;
}
.comingsoon-content {
    /* z-index: 999; */
}
.comingsoon-content h1{
  font-family: var(--f3);  
  font-size: 53px;
  text-transform: capitalize;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.comingsoon-content h2{
  font-family: var(--f3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 53px;
  font-weight: 700;  
  color: #8C5E3C;
  text-transform: capitalize;
  opacity: 0.9;
}
.comingsoon-content p{
 font-size: 16px;
 color: var(--c2);
 padding-left: 3px;
 padding-top: 5px;
 opacity: 0.9;
 font-weight: 500;
}
.comingsoon-content a{
  background-color: var(--c3);
  margin-bottom: 40px;
  margin-top: 10px;
  font-size: 13px;
}
.shape1 {
    position: absolute;
    top: 1px;
    width: 80%;
    z-index: 1;
    right: 0px;
    height: 100%;
}
.shape2 {
    position: absolute;
    top: 0px;
    right: -10px;
    width: 70%;
    z-index: 2;
    height: 100%;
}
.shape3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10%;
    z-index: 2;
    height: 100%;
}
.comingsoon-content {
  position: relative;
  z-index: 4;
  margin-left: 300px;
}


/* _SECTION__OUR_TESTIMONIAL */

.our-testimonials{
 /* padding: 40px 0px; */
}
.testimonial-title  {
  color: var(--c2);
  text-align: center;
}
.testimonial-title h5 {
  font-family: var(--f2); 
  font-size: 36px;
  text-transform: capitalize;
}
.testimonial-title h1 {
  font-family: var(--f3);
  font-size: 45px;
  text-transform: capitalize;
}
.testimonial-title h1 span {
  color: var(--c5);
}

/* ___________SLIDER SECTION ________ */


/* _SECTION__PARENTS_PUPPIES_ */

.parents-puppy {
  padding: 70px 0px;
  color:var(--c2);
  background: rgba(172, 116, 91, .2);
  position: relative;
}
.parent-title {
  text-align: center;
  color: var(--c2);
  padding-bottom: 20px;
  text-transform: capitalize;
}
.parent-title h5 {
   font-family: var(--f2);
   font-size:35px ;
}
.parent-title h1 {
  font-family: var(--f3);
  font-size: 45px;
  letter-spacing: 1px;
}
.parent-title h1 span {
  color: var(--c5);
}
.main-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px

}
.box-parent {
  background-color: var(--c1);
  text-align: center;
  border-radius: 0px 0px 20px 20px;
  padding-bottom: 10px;
  transition: all .4s ease-in-out;
  /* cursor: pointer; */
}
.box-parent:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
   transform: translate(-5px,-10px);
}
.content-box-parent h3 {
    font-size: 19px;
    padding-top: 20px;
    padding-bottom: 15px;
    font-weight: 600;
}

.content-box-parent h6 {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}
.link-box-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 19px;
  margin-top: 15px;
  padding-bottom: 20px;
}
.link-box-parent img{
  width: 10px;
  height: 10px;
  object-fit: contain;
}
.flot-back-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* _SECTION__OURDOGS_ */

.our-dogs {
  margin: 100px 0px 200px 0px;
  /* padding-bottom: 120px; */
  color: var(--c2);
}
.heading-ourdogs h1{
  font-family: var(--f3);
  font-size: 40px  ;
  /* color: var(--c2); */

}
.heading-ourdogs h1 span {
  color: #B48269;
}
.ourdogs-image-main {
  position: relative;
}
.ourdogs-img-1 {
    left: -20px;
    position: absolute;
    width: 440px;
    /* height: 370px; */
    object-fit: cover;
    top: 180px;
    transition: all 1s ease-in-out;
}

.ourdogs-img-2 {
    position: absolute;
    left: -80px;
    width: 420px;
    transition: all 1s ease-in-out;
    top: 600px;
    height: 400px;
    object-fit: contain;
}
.ourdogs-img-3 {
    position: absolute;
    right: -40px;
    top: 300px;
    width: 330px;
    transition: all 1s ease-in-out;
}
.ourdogs-img-3:hover{
   transform: translate(-10px,-10px);
}
.ourdogs-img-1:hover{
   transform: translate(-10px,-10px);
}
.ourdogs-img-2:hover{
   transform: translate(-10px,-10px);
}


/* ___accodians_CSS___ */

.accordins-ourdogs {
    margin-top: 25px;
    /* margin-left: -30px; */
}
div#accordionExample {
    margin-right: 30px;
}
button.accordion-button {
    background-color: var(--c1);
    color: var(--c2);
    text-transform: capitalize;
    transition: all .4s ease-in-out;
}
button.accordion-button.collapsed {
    font-size: 14px;
}
.accordion-item {
    background-color: #fff;
    border: none;
    border-left: 4px solid var(--c5);
    margin-bottom: 15px;
    border-radius:5px; 
}
.accordion-button:not(.collapsed) {
    color: var(--c1);
    background-color: var(--c5);
    box-shadow: none;
}
.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.accordion-body p {
    font-size: 13px;
    color: var(--c1);
    padding-bottom: 15px;

  }
.accordion-body {
    background-color: var(--c5);
}
.ourdogs-content-main {
    margin-top: 40px;
}

/* __SECTION__DOODLES_GALLERY_ */

.doodles-gallery {
  padding: 70px 0px; 
  padding-bottom: 100px;
  background-color: rgba(172, 116, 91, .1);
  color: var(--c2);
}
.title-doodles {
  text-align: center;
  text-transform: capitalize;
}
.title-doodles h5{
  font-family: var(--f2);
  font-size: 36px;
}
.title-doodles h1{
  font-family: var(--f3);
  font-size: 46px;
}
.title-doodles span {
  color: var(--c5);
}

.main-img-doodles {
  position: relative;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-img-gallery {
  width: 375px;
  text-align: center;
}
.img-gallery-1 {
    position: absolute;
    top: 212px;
    left: -116px;
    width: 137px;
}
.img-gallery-2 {
    position: absolute;
    top: 21px;
    left: -1px;
    width: 200px;
}
.img-gallery-3 {
    position: absolute;
    top: 142px;
    left: 152px;
    width: 260px;
}
.img-gallery-4 {
    position: absolute;
    top: 160px;
    left: 770px;
    width: 280px;
}
.img-gallery-5 {
    position: absolute;
    top: -10px;
    right: 30px;
    width: 190px;
}
.img-gallery-6 {
    position: absolute;
    top: 140px;
    right: -120px;
    width: 201px;
}

/* __SECTION__CONTACTINFO_  */

.contact-info {
  padding: 100px 0px;
  color: var(--c2);
  position: relative;
}
.contact-info-content {
  padding-bottom: 20px;
}
.contact-info-content h5 {
  font-family: var(--f2);
  font-size: 32px;
  text-transform: capitalize;    
}
.contact-info-content h1 {
  font-family: var(--f3);
  font-size: 42px;
  text-transform: capitalize;
}
.contact-info-content h1 span {
  color: var(--c5);
}
.contact-info-content p {
    font-size: 14px;
    padding-top: 10px;
    opacity: 0.8;
    padding-bottom: 30px;
    padding-right: 100px;
}
.contact-info-form {
    padding: 10px 20px;
    border-top: 7px solid var(--c5);
    border-bottom: 7px solid var(--c5);
    border-radius: 20px;
    padding-top: 40px;
}
.form-field input {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.466);
    margin-bottom: 20px;
    padding: 0px 10px 5px 10px;
    font-size: 14px;
}

.form-field label {
    font-size: 14px;
    color: var(--c3);
    margin-bottom: 15px;
    display: block;
}
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.466);
    padding: 5px 10px;
    font-size: 14px;
}
.form-field textarea:focus {
    outline: none;
}
.form-botton input {
    color: var(--c1);
    background: var(--c3);
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 6px;
    font-size: 13px;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}
.form-botton input:hover {
    background: var(--c4);
    color: var(--c3);
    cursor: pointer;
}
.img-contact-info img {
    width: 600px;
    object-fit: cover;
    border-radius: 3px;
    margin-left: 20px;
}
.img-contact-info img {
    /* width: 310px; */
    object-fit: cover;
    border-radius: 3px;
    margin-left: 50px;
    margin-top: 100px;
    height: 570px;
    object-position: top;
}

.main-address-contact-info {
    width: 350px;
    height: 350px;
    border: 2px dashed var(--c3);
    border-radius: 20px;
    background-color: #fffbf9;
    margin-left: 300px;
    margin-top: -240px;
    z-index: 2;
    position: relative;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.6);

}
.address-info-box {
    width: 350px;
    height: 390px;
    border: 2px dashed var(--c3);
    background-color: white;
    margin-bottom: 10px;
    margin-left: 15px;
    border-radius: 20px;
    transform: rotate(-4deg);
    padding: 25px 30px;
    padding-top: 60px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease-in-out;
}
.address-info-box:hover {
      transform: translate(-10px, -10px) rotate(3deg);
}
.address-info {
    display: flex;
    column-gap: 15px;
    margin-bottom: 30px;
}
.address-info img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-left: 10px;
}
.address-info h5 {
    font-family: var(--f3);
    font-size: 20px;
    color: var(--c5);
}
.address-info p {
    font-family: var(--f1);
    font-size: 14px;
    opacity: 0.9;
    padding-top: 5px;
}

                         /* ____FOOTER____ */

.footer {
  background-color: var(--c2);
   padding-top: 70px;
  color: var(--c1);
}
.f-aboutus h3 {
    font-family: var(--f3);
    padding-bottom: 22px;
    font-size: 25px;
}

.f-aboutus p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 18px;
    padding-bottom: 21px;
    font-family: var(--f2);
}
.f-links h3 {
    font-family: var(--f3);
    font-size: 24px;
    padding-bottom: 10px;
}

.f-links ul li {
    list-style: disc;
    color: var(--c1);
    opacity: 0.9;
    /* font-size: 12px; */
    margin-left: 20px;
    line-height: 30px;
}
.f-links ul li a {
    color: var(--c1);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
}
.f-contactinfo h3{
    font-family: var(--f3);
    text-transform: capitalize;
    font-size: 24px;
    padding-bottom: 20px;
}
.f-info-item {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}
.f-info-item img {
  width: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(1);
}
.f-info-item h6 {
    /* font-size: 11px !important; */
}
.f-info-item h6 {
    /* font-size: 12px !important; */
}
.f-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: start;
}
.f-icons a {
    background-color: var(--c3);
    border-radius: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.f-icons a {
  color: var(--c1);
}
.f-copyright {
  border-top: 2px dashed var(--c1);
  padding : 10px 0px;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* ___BUTTON_ANIMATION____ */

.dswipe {
  color:white; 
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dswipe::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--c4) ; 
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1; 
}
.dswipe:hover {
  color:var(--c3);
}
.dswipe:hover::before {
  transform: translateX(0);
}


/* _____ */

.dswipe2 {
  color:white; 
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dswipe2::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--c3) ; 
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1; 
}
.dswipe2:hover {
  color:var(--c1);
}
.dswipe2:hover::before {
  transform: translateX(0);
}
/* ___END_BUTTON_ANIMATION__ */



/* _____LOADER___ */

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--c3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #FF3D00 #FF3D00;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 34px;
  height: 34px;
  border-color: #FFF #FFF transparent transparent;
  animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
    
/* ___ */

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 12px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
} 
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
      border: 5px solid;
    border-color: transparent transparent var(--c2);
    width: 62px;
    height: 62px;
    border-radius: 50%;
}
/* ___ */

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.accordion-button::after {
  filter: invert(0%) brightness(1%)  !important; /* Makes icon black */
}
/* __NAVIGATION_HOVER_EFFEVT */

.heffect {
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.heffect::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e3c67c9b;
  padding: 5px 5px !important;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.heffect:hover::before {
  opacity: 1;
  transform: scale(1.2);
  animation: pulseAnimation60 0.8s infinite;
}

@keyframes pulseAnimation60 {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

/* __SERVICE_SLIDER__ */

  .service-slider {
      max-width: 1300px;
      margin: 30px auto;
      position: relative;
    }
    .slide-item {
      background: #fff;
      padding: 22px 20px;
      text-align: center;
      border: 1px solid #e3e3e3;
      border-radius: 3px;
      box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
      width: 100%;
      min-width: 368px; /* or 400px, etc. */
      position: relative;

}
    
    .slide-item h3 {
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 0px;
   }
   .slide-item h6{
    color: var(--c2);
    font-size: 12px;
    padding-top: 10px;
}
    .slide-item p{
    font-size: 10px;
    color: #666;
    line-height: 16px;
    font-style: italic;
}
    .service-slider .slick-current.slick-center {
      transform: scale(1.2);
      position: relative;
      z-index: 99;
    }
    .service-slider .slick-slide {
      transition: all 0.3s linear;
      opacity: 0.6;
    }
    .service-slider .slick-current.slick-center {
      opacity: 1;
    }
    .service-slider .slick-list.draggable {
      padding: 60px 0px !important;
    }
    .icons-slider i {
      color:rgb(221, 159, 3)
    }

.float-icon1 {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 49px;
    z-index: 2;
}
.float-icon2 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    z-index: 2;
}
.float-icon3 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    z-index: 2;
    opacity: 0.5;
  }
  .slick-current {
    transition: transform 0.3s ease-in-out;

  }
  .slick-current:not(.slick-center):hover:{
     transform: scale(1.2);
  }
  .slick-current.slick-center:hover {
     transform: scale(1.3);
  }

.wrapper {
	overflow: hidden;
}
.btn-dog {
    text-align: start;
    margin-top: 10px;
}
.accordion-body h3 {color: var(--c1);font-size: 22px;margin-bottom: 10px;}

.accordion-body ul {
    color: var(--c1);
    margin-bottom: 10px;
}
.btn-dog a {
    color: var(--c5);
    text-transform: uppercase;
    text-decoration: underline !important;
}

.testi-image-box img {
    /* height: 300px; */
    object-fit: cover;
}

.testi-image-box {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 40px;
}

section.testi-image {
    margin-bottom: 100px;
}

/* inner-wrapper */

.inner-header {
  height: 600px;
  background-position: center !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
section.stud-services {
    margin: 100px 0px;
}

.second-testi {
    text-align: start;
    margin: 40px 0px;
}

section.stud-services .testimonial-title p {
    margin-top: 20px;
}

.stud-box {
    background: var(--c2);
    padding: 30px;
    border-radius: 14px;
    box-shadow: -10px 10px 20px 10px var(--c3);
}

.stud-box h2 {
    color: var(--c3);
    font-family: 'Laila';
    font-size: 40px;
    text-transform: uppercase;
}

.stud-box ul li {
    list-style: disc !important;
    margin-bottom: 10px;
    font-family: 'FontAwesome';
}

.stud-box ul {
    padding-left: 20px !important;
    margin: 20px 0px;
}

.stud-box p {
    margin-bottom: 20px;
}


.page-template-reviews .our-testimonials {
    margin-top: 100px;
}

section.not-availble {
    padding: 100px 0px;
}

.not-title h1 {
    color: var(--c3);
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    font-size: 100px;
}

.upcoming-image {
    overflow: hidden;
    border-radius: 20px;
}
.stud-dog-image img {
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
}

.stud-dog-image {
    margin-top: 30px;
}
section.upcoming-litters {
    padding: 100px 0px;
}


.page-template-stud-services .dream-pup-img img , .page-template-the-parents .dream-pup-img img  {
    width: 100%;
    height: 550px;
    object-fit: cover;
}
.page-template-stud-services .title-dream-pup p , .page-template-the-parents .title-dream-pup p  {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}
.page-template-stud-services .dream-pup-content span , .page-template-the-parents .dream-pup-content span {
    font-size: 20px;
    display: block;
}
.page-template-stud-services .dream-pup-content h3 , .page-template-the-parents .dream-pup-content h3 {
    font-size: 40px;
}
.page-template-stud-services .ratangle , .page-template-the-parents .ratangle {
    display: none; 
}
.page-template-stud-services .dream-pup-content , .page-template-the-parents .dream-pup-content {
    margin-top: 40px;
}
.page-template-stud-services .dream-pup-box , .page-template-the-parents .dream-pup-box {
	width: 50%;
	
}
.parent-btn {
    text-align: center;
    margin-top: 40px;
}

.parent-btn a {
    background: var(--c3);
}
.page-template-the-parents .title-dream-pup h1:last-of-type , .page-template-the-parents .title-dream-pup h1:nth-of-type(2) {
    text-align: start;
    margin-bottom: 20px;
}
.page-template-the-parents .title-dream-pup h1:last-of-type {
    margin-top: 40px;
}
.box-parent {
    width: 25%;
}
section.banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000082;
}
.img-box-parent img {
    height: 400px;
    object-fit: cover;
}
.doodles-gallery .title-doodles {
    margin-bottom: 60px;
}


.forever-homes .dream-pup-box {
    width: 33.33%;
    padding: 0px 30px;
    margin-bottom: 40px;
}
.forever-homes .main-dream-pup {
    flex-wrap: wrap;
	gap: unset;
}
.forever-homes .dream-pup-img img {
    height: 600px;
    width: 100%;
}
.forever-homes .dream-pup-img {
    margin-bottom: 20px;
}
.forever-homes .dream-pup-content {
    text-align: center;
}
.forever-homes .dream-pup-content h3 {
    font-size: 30px;
}


.page-template-reviews .inner-header , .page-template-ask-laurie .inner-header {
    background-position: 0% 30% !important;
    background-attachment: unset !important;
}

.f-copyright a {
    color: var(--c3);
}