


  @import url('https://fonts.googleapis.com/css2?family=Inter&family=Pacifico&display=swap');









*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

body{
  background-color: #fff;
}

h1,h2,h3,h4,h5,h6 {
  color: #272727;
}
p{
  color: #495057;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.primecolor{
  color: #066ff0;
  background-color: #066ff0;
}
.border-color{
  color: #ececec;
}

.active-link{
  border-bottom: 2px solid #066ff0;
}

.hr-line{
  margin: 20px;
  color: #ececec;
}





.top-header{
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
  margin: auto;
  border-bottom: 1px solid #ececec;
  position: fixed;
  z-index: 200;
  background-color: #fff;
}

.logo a{
  display: flex;
  align-items: baseline;
  padding: 10px;
}
.logo a img{
  width:40px;
  height: 40px;


}
.logo a p{

 font-size: 35px;
 color: #066ff0;
 font-weight: 100;
 font-family: 'Borel', cursive;
 padding-left: 10px;
 font-family: 'Pacifico', cursive;

}
.contact-links-container{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: auto;
}
.contact-link{
  display: flex;
  flex-direction: row;
  margin: auto;
}
.contact-link img{
  width: 30px;
  height: 30px;
 margin: auto;
}
.contact-link p{
padding-left: 10px;
}

/*mobile navbar*/
.hamburger-menu {
  display: none;
}

#menu__toggle {
  opacity: 0;

}

#menu__toggle:checked+.menu__btn>span {
  transform: rotate(45deg);
}

#menu__toggle:checked+.menu__btn>span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked+.menu__btn>span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
  left: 0 !important;
}

.menu__btn {
  position: relative;
  top: 90px;
  right: 30px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 111;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}

.menu__btn>span::before {
  content: '';
  top: -8px;
}

.menu__btn>span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  top: 150px;
  left: -100%;
  width: 200px;
  height: auto;
  margin: 0;
  padding: 30px 0;
  list-style: none;
  background-color: #00FFFFFF;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
  transition-duration: .25s;
  text-align: center;
  border-radius: 0px 5px 10px 0px
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}

.menu__item:hover {
  background-color: #f1f1f2;
}

/*mobile navbar*/



  .page-nav {
    width: 100%;
    position: fixed;
    margin-top: 80px;
    z-index: 100;
    background-color: #fff;
    display: block;
  }
  .page-nav ul{
display: flex;
padding: 20px;
border-bottom: 1px solid #ececec;
list-style: none;
  }
  .page-nav li{
list-style: none;
padding-left: 50px;
list-style: none;

  }

  .page-nav li a {
    padding: 20px;
    text-transform: capitalize;
    color: #80868b;
    list-style: none;
  }


  .home-banner{
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
      height: 750px;
      position: relative;
      padding-top: 140px;
  
  }

  .hb-photo{
      width: auto;
      height: 500px;
  }
 
  .home-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }

  .hb-heading{
    width: 50%;
      position: absolute;
      top: 53%;
      left: 30%;
      transform: translate(-60%, -35%);
      background-color: #fff;
      padding: 50px;
  }
  .hb-heading h1{
   font-size: 50px;
   font-weight: 300;
   padding: 30px;
   text-align: center;
   text-transform: capitalize;
  }
  .hb-heading p{
  font-weight: 300;
  color: #495057;
  padding: 20px;
  }


 

  .p-s-text h2{
font-size: 50px;
font-weight: 300;
text-align: center;
padding: 20px;
  }
  .p-s-text p{
      width: 70%;
      margin: auto;
font-size: 18px;
font-weight: 300;
text-align: center;
padding: 10px;
  }


.puppies-container{
  margin: auto;
  width: 95%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  justify-items: right;
}

.puppies-box{
width: 100%;
height: auto;
  border: 1px solid #cccccc;

  position: relative;
  background-color: #f7f7f8;


}
.puppies-box img{
width: 100%;
height: auto;
padding: 10px;
border-radius: 20px 20px 0px 0px;
}
.puppies-box h3{
font-size: 25px;
font-weight: 400;
padding: 10px;
}
.puppies-box p{
height: 200px;
font-size: 15px;
line-height: 24px;
padding: 10px;
border-bottom: 2px solid #cccccc;
}




  .p-b-link-container{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dadce0;

  }
  .p-b-link-container a{
     border: 1px solid #cccccc;
     background-color: #066ff0;
     color: #fff;
     width: 100%;
     padding: 5px;
     border: 1px solid #6c6c6c;
     margin: 10px;
     border-radius: 5px;
     text-align: left;
     font-size: 15px;
     

  }

  .p-b-link-container a img{
    width: 20px;
    height: 20px;
  margin-right: 10px;
  padding: 0;
  float: left;
  }

  .breeder-owner-container{
    width: 80%;
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: space-evenly;
  }

  .b-o-text{
    display: inline;
    margin: auto;
    padding-right: 100px;
  }
  .b-o-text h2{
    font-size: 50px;
    font-weight: 300;
    padding: 10px;
    margin: auto;
  }
  .b-o-text p{
    font-size: 18px;
  padding: 10px;
  }

  .b-o-box-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  a .b-o-box {
    padding: 20px;
    border: 1px solid #dadce0;
    margin: 10px;
    width: 300px;
    height: 370px;

  }
  .b-o-box img{
    width: 70px;
    height: 70px;
    margin: 20px;
  }
  .b-o-box h4{
    font-size: 25px;
    font-weight: 300;
    padding: 20px;
  }
 .right-arrow{
  fill: #1a73e8;
  float: right;
  height: 16px;
  margin: 0 24px;
  right: 24px;
  width: 16px;
  bottom: 0;
  }
 .right-arrow img{
  width: 30px;
  }

  .abt-dbs-container{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
    padding: 10px;
  }

  .abt-dbs-text{
    margin: auto;
    width: auto;
    padding-right: 100px;
  }
  
  .abt-dbs-text h3{
    font-size: 50px;
    padding: 20px;
    font-weight: 300;
  }
  .abt-dbs-text P{
    font-size: 18px;
    padding: 20px;
    font-weight: 300;
  }


  .abt-dbs-box{
    width: 100%;
    margin: auto;
  }
  .abt-dbs-box h4{
   font-size: 20px;
   font-weight: 400;
   padding: 10px;
   padding-top: 0;
  }
  .abt-dbs-box p{
   font-size: 16px;
   font-weight: 400;
   padding: 10px;
   border-bottom: 1px solid #066ff0;
   margin-bottom: 20px;
  }
  .abt-dbs-box img{
    width: 70px;
    height: 70px;
    margin: 10px;
    border: 1px solid #066ff0;
    border-radius: 5px;
    padding: 5px;
  }

  .puppies-booking-form-section{
    width: 80%;
    margin: auto;
  }

  .puppies-booking-form-section h2{
    font-size: 50px;
    padding: 20px;
    font-weight: 300;
    text-align: center;
  }
  .puppies-booking-form-section p{
    font-size: 18px;
    padding: 20px;
    text-align: center;
  }
  .pbf-container{
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
  }
  .pbf-box{
    width:100%;
    height: 800px;
  }
  .pbf-box iframe{
    width: 100%;
    height: 100%;
    border: none;

  }

.serv-city{
  width: 80%;
  margin: auto;
}
.serv-city h2{
text-align: center;
font-size: 50px;
font-weight: 300;
padding: 20px;
}

  .sc-box{
    width: 150px;
    height: auto;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    border-radius: 5px;
    
  }
  .sc-box img{
    width: 100%;
    height: auto;
  }


  .s-c-container{

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
  }

/*area*/  

.areapuppy {
  padding: 20px;
}
.areapuppy h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

/* form */
.pup-from-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
text-align: center;
}
.pup_form{
  display:flex;
  justify-content: center;
  align-items:center ;
}
form{
  background: linear-gradient(90deg, #efd5ff 0%, #515ada 100%);
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  position: relative;
}
.input-box,select{
  width: 100%;
  padding: 12px;
  margin: 5px 0;
  border-radius:6px;
  border: 1px solid #b1b5e9;
  transition: 0.3s ease;
  font-size: 16px;
}

.input-box:focus,
select:focus {
  border-color: #b1b5e9;
  outline: none;
}

.formBtn{
  width: 100%;
  padding: 12px;
  font-size: 20px;
  background-color: #515ada;
  color: #000000;
  border-radius: 5px;
  border-color: #b1b5e9;
}

/* form */


  .top-artical-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
  }
  .t-a-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }
  .t-a-box{
    width: 100%;
    height: 100%;
    border: 1px solid #6c6c6c;
    margin: auto;
    border-radius:10px;
    border-top: none;

  }
  .t-a-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #616161;
    border-radius: 10px 10px 0px 0px;

  }
  .t-a-box h5{
    font-size: 18px;
    font-weight: 300;
    padding: 5px;
    text-align: center;

  }
  .t-a-box h6{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
  background-color: #1a73e8;
padding: 5px;
text-align: center;


  }




  .reviews-section h2{
    font-size: 50px;
    font-weight: 300;
    padding: 30px;
  }
  .reviews-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }

  .reviews-box{
    border: 1px solid #6c6c6c;
    padding: 20px;
  }

  .reviews-box h6{
    font-size: 20px;
    padding: 20px;
    text-align: center;
    font-weight: 400;
  }
  .reviews-box p{
    font-size: 16px;
    padding: 20px;
  }
  .footer-section{
    background-color: #F7F7F8;
    padding: 20px;
position: relative;
    
  }
  .footer-container{
    display: inline;
    width: 80%;
  }
  .footer-container a{
   color: #6c6c6c;
  }
  .footer-container h3{
   font-size: 20px;
   padding-right: 50px;
   padding: 20px;

  }
  .social-icon-container{
    display: flex;
  width: 80%;
  border-bottom: 1px solid #80868b;
  margin: 10px auto;
  padding-bottom: 20px;
  }
  .social-icon img{
    width: 25px;
    height: 25px;
    margin-left: 10px;
    margin-top: 20px;
  }


  .logo-links-container{
    display: flex;
    width: 80%;
    border-bottom: 1px solid #80868b;
    margin: auto;
    padding-bottom: 20px;
  }
  .logo-links-container h3{
    color: #066ff0;
    font-family: 'Pacifico', cursive;
    font-weight: 100;
  }

  .logo-links-container ul{
    list-style: none;
    display: inline;
    margin-left: 50px;
    padding-top: 20px;
  }
  .logo-links-container li{
    list-style: none;
    display: inline;
    margin-left: 50px;
  }

  .contact-container{
    display: flex;
flex-direction: row;
    width: 80%;
    margin: auto;
    padding-bottom: 20px;
  }

  .contact-container p {
    list-style: none;
    display: inline;
    margin-left: 150px;
    padding-top: 20px;
    color: #6c6c6c ;
  }
  .contact-container  a{
    list-style: none;
    display: inline;
    margin-left: 50px;
    padding-top: 20px;
  }

.footer{
  width: 100%;
  background-color: #eaecea;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-align: center;

}

  .footer a{
    font-size: 20px;
    color: #066ff0;
  
  }



  /*breederpage*/
.dog-breeder-banner{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 650px;
    padding-top: 30px;
    position: relative;
    padding-top: 140px;
}

.db-photo{
    width: auto;
    height: 500px;
}

.dog-breeder-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
}

.db-heading{
  width: 50%;
  height: 200px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -10%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0px 0px ;
}
.db-heading h1{
 font-size: 50px;
 font-weight: 300;
 padding: 10px;
 text-align: center;
 text-transform: capitalize;
}
.db-heading p{
font-weight: 300;
color: #495057;
padding: 10px;
}

.db-block-section h2{
font-size: 50px;
font-weight: 300;
text-align: center;
padding: 30px;
text-transform: capitalize;
}

.db-block-container{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  margin-top: 50px;
  margin-bottom: 20px;
  margin: auto;
}
.db-block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #6c6c6c;
  padding: 20px;
  border-radius: 5px;
}
.db-block img{
margin: 20px;
width: 70px;
height: 70px;
}
.db-block h2{
font-size: 30px;
padding: 20px;
}
.db-block p{
font-size: 16px;
padding: 20px;
}
.db-block a{
font-size: 16px;
padding: 10px;
background-color: #066ff0;
border-radius: 5px;
color: #fff;
}

.qr-code-container{
margin: auto;
width: 100%;
}
.qr-photo{
  width: 300px;
  height: auto;
  margin: auto;
}

.qr-photo img{
  width: 100%;
  height: auto;
}


.dw-q-section h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
}


.dw-q-box{
  width: 60%;
  margin: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
.dw-q-box h3{
  font-size: 36px;
  font-weight: 400;
  padding: 10px;
  text-align: left;
}
.dw-q-box p{
  width: 80%;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  padding: 10px;
  text-align: left;
}

/*artical-page*/



.dog-art-container{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 50px;
  grid-row-gap:50px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 50px;
  margin: auto;
}
.dog-artical-box{
  width: 100%;
  height: auto;
  margin: auto;
  border-radius:10px;
  border-top: none;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);

}
.dog-artical-box img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #1a73e8;
  border-radius: 10px 10px 0px 0px;
}
.dog-artical-box h2 :hover{
  text-decoration: underline;
}
.dog-artical-box h2 a{
  color: #272727;
}
.dog-artical-box h2{
  font-size: 20px;
  font-weight: 300;
  padding: 20px;
  text-align: center;
  color: #272727;
}
.read-more img{
  width: 25px;
  height: 25px;
  border: none;

}
.read-more{
 display: flex;
padding: 10px;
width: auto;
float: right;
color: #1a73e8;
}

.pagination {
  display: inline-block;
  display: flex;
  justify-content: end;
  margin: 50px;

}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
}

.pagination a.active {
  background-color: #066ff0;
  color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;}
/*artical-page*/


/*breed page*/
.dog-breed-banner{
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: auto;
  padding-top: 30px;
  position: relative;
  padding-top: 140px;
}


.dog-breed-banner img{
 padding: 20px;
 width: 100%;
 height: auto;
 object-fit: cover;
}

.db-h3heading{
width: 50%;
height: 200px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 30%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px 10px 0px 0px ;
}
.db-h3heading h3{
font-size: 50px;
font-weight: 300;
padding: 10px;
text-align: center;
text-transform: capitalize;
}
.db-h3heading p{
font-weight: 300;
color: #495057;
padding: 10px;
}

/*breed page*/

.breed-orgin img{
  width: 100px;
  height: 500px;
}

.bg-row{
  width: 100px;
  height: 100px;
  background-color: #80868b;
  border: 1px solid black;
}
.bg-column{
  width: 100px;
  height: 100px;
  background-color: #495057;
}

.breed-grid-container{
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap:50px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 50px;
  margin: auto;
}




.br-inf-grid-container{
  width: 90%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 30px;
  grid-row-gap:50px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 50px;
  margin: auto;
}

.br-in-box{
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
}
.br-in-box img{
 width: 50px;
 height: 50px;
}
.br-in-box h3{
 padding: 5px;
 font-size: 20px;
 font-weight: 400;
}

.p-f-s-container{
  width: 70%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap:50px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 50px;
  margin: auto;
}
.pfs-box {
 width: 100%;
 height: 100%;

 border-top: none;
 border-radius: 10px 10px 10px 10px;
 box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
}
.pfs-box img{
 width: 100%;
 height: 100%;
 border-radius: 10px 10px 0px 0px;
}
.pfs-box a{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-btn p{
padding: 5px;
border-radius: 5px;
background-color: #066ff0;
color: #fff;
margin: 10px;
}


.breed-info-container{
  padding: 20px;

}

.fbox{
  width: 100%;
  margin: auto;
  text-align: left;
  padding: 20px;
}
.fbox p{
  width: 60%;
  font-size: 18px;
  text-align: center;
  margin: auto;
  line-height: 26px;
}
.art-head{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  text-transform: capitalize;
  padding: 20px;
}

.sbox {
width: 70%;
margin: auto;
text-align: center;
padding: 20px;
}
.sbox h3{
  font-size: 30px;
  font-weight: 300;
  width: 100%;
text-align: left;
padding: 10px;
margin: auto;
}
.sbox p{
  width: auto;
text-align: left;
padding: 10px;
}






.p-f-s-section h1{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
}
.cb-box{
  padding: 10px;
}
.cb-box h4{
  padding: 5px;
  font-size: 18px;
  font-weight: 400;
}


.cb-box p{
  padding: 5px;
  font-size: 16px;
  
}
.cb-box-pro{
width: 50%;
height: auto;
margin: auto;
padding: 10px;
margin: 20px;
border-bottom: 1px solid #1a73e8;
}
.cbb-p-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  width: auto;
  height: auto;
 line-height: 0px;
 padding: 10px;

}

.cbb-p-container img {
  width: 30px;
  height: 30px;

}

/*blog-articals*/
.dog-artical-banner{
  display: flex;
flex-direction: column;
  width: 90%;
  height: 100%;
  padding-top: 30px;
  padding-top: 140px;
  margin: auto;
}

.da-photo{
  width: auto;
  height: 500px;
}

.dog-artical-banner img{
 padding: 20px;
 width: 100%;
 height: 550px;
 object-fit: cover;
}

.da-heading{
width:80%;
height: 200px;
margin: auto;
 
}
.da-heading h1{
font-size: 50px;
font-weight: 300;
padding: 10px;
text-align: center;
text-transform: capitalize;
}
.da-heading p{
font-weight: 300;
color: #495057;
padding: 10px;
text-align: center;
}
.top-ten-box{
width: 80%;
padding: 20px;
align-items: center;
margin: auto;
}
.top-ten-box img{
width: 80%;
padding: 20px;
align-items: center;
margin: auto;
}


.top-ten-section{
width: 80%;
text-align: center;

}
.top-ten-container{
display: flex;
flex-direction: column;
margin: 20px;

}
.top-sec-container{
display: flex;
flex-direction: column;
width: 80%;
margin: auto;

}
.top-box{
width: 80%;
height: auto;
padding: 20px;
margin: 20px;
border-bottom: 2px solid #066ff0;
position: relative;
}
.top-box img{
width: auto;
height: auto;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
}
.top-box h2{
font-size: 25px;
padding: 20px;
font-weight: 400;
}
.top-box p{
padding: 10px;
margin-bottom: 10px;
}
.top-box a{
padding: 10px;
background-color: #1a73e8;
color: #fff;
border-radius: 5px;

}


.blog-heading{
  width: 80%;
  margin: auto;
} 
.blog-heading h1{
  font-size: 50px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
}
.blog-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  text-align: center;
  }


  .blog-head{
    width:70%;
    height: auto;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .blog-head h2{
    font-size: 30px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .blog-head h3{
    font-size: 25px;
  font-weight: 400;
  padding: 10px;
  padding-bottom: 0;
  text-align: left;
  text-transform: capitalize;
  }
  .blog-head p{
    font-size: 18px;
  font-weight: 300;
  padding: 10px;
  padding-top: 5px;
  text-align: left;
  text-transform: capitalize;
  }

  .blog-head ul{
    padding: 10px 10px 10px 30px;
  }
  .blog-head li{
    padding: 5px;
    list-style: decimal;
  }









.accordion-container {
margin: 0 auto;
padding: 4rem;
width: 60rem;
}

.accordion-container h2{
text-align: center;
font-size: 30px;
}

.accordion .accordion-item {
border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
border-bottom: 1px solid #1a73e8;
}

.accordion button {
position: relative;
display: block;
text-align: left;
width: 100%;
padding: 1em 0;
color: #7288a2;
font-size: 1.15rem;
font-weight: 400;
border: none;
background: none;
outline: none;
}

.accordion button:hover,
.accordion button:focus {
cursor: pointer;
color: #1a73e8;
}

.accordion button:hover::after,
.accordion button:focus::after {
cursor: pointer;
color: #1a73e8;
border: 1px solid #1a73e8;
}

.accordion button .accordion-title {
padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
display: inline-block;
position: absolute;
top: 18px;
right: 0;
width: 22px;
height: 22px;
border: 1px solid;
border-radius: 22px;
}

.accordion button .icon::before {
display: block;
position: absolute;
content: '';
top: 9px;
left: 5px;
width: 10px;
height: 2px;
background: currentColor;
}
.accordion button .icon::after {
display: block;
position: absolute;
content: '';
top: 5px;
left: 9px;
width: 2px;
height: 10px;
background: currentColor;
}

.accordion button[aria-expanded='true'] {
color: #1a73e8;
}
.accordion button[aria-expanded='true'] .icon::after {
width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
opacity: 1;
max-height: 20em;
transition: all 200ms linear;
will-change: opacity, max-height;
}
.accordion .accordion-content {
opacity: 0;
max-height: 0;
overflow: hidden;
transition: opacity 200ms linear, max-height 200ms linear;
will-change: opacity, max-height;
}
.accordion .accordion-content p {
font-size: 1rem;
font-weight: 300;
margin: 2em 0;
}
/*blog-articals*/







/*city page*/
.city-pup-container{
  width: 90%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 30px;
  grid-row-gap:50px;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 50px;
  margin: auto;
}

.city-pup{
padding: 5px;
box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
width: 100%;
height: auto;
}
.city-pup img{
width: 100%;
height: auto;
border-radius: 5px;
}
.city-pup h2{
font-size: 20px;
font-weight: 300;
text-align: center;
padding: 5px;
}
/*city page*/






/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {



  .top-header{
    height: auto;
      width: 100%;
      height: 50px;
      background-color: #fff;
      position: fixed;
      z-index: 100;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      padding: 0;
    
    
    }
    
    .logo{
    width: 100%;
    height: auto;
    
    
    }
    
    .logo a{
      display: flex;
      align-items: baseline;
    }
    .logo a img{
      width:30px;
      height: 30px;
    
    
    }
    .logo a p{
    
     font-size: 25px;
     color: #066ff0;
     font-weight: 100;
     padding-left: 10px;
     font-family: 'Pacifico', cursive;
    
    }
    
    .contact-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
    }
    .contact-link{
    display: flex;
    flex-direction: row;
    margin: auto;
    }
    .contact-link img{
    width: 25px;
    height: 25px;
    margin: auto;
    }
    .contact-link p{
    padding-left: 10px;
    font-size: 12px;
    display: none;
    }
    
    /*mobile navbar*/
    .hamburger-menu {
    display: block;
    z-index: 1000;
    }
    
    #menu__toggle {
    opacity: 0;
    
    }
    
    #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
    }
    
    #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
    }
    
    #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
    }
    
    #menu__toggle:checked~.menu__box {
    left: 0 !important;
    }
    
    .menu__btn {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1000;
    
    }
    
    .menu__btn>span,
    .menu__btn>span::before,
    .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #066ff0;
    transition-duration: .25s;
    }
    
    .menu__btn>span::before {
    content: '';
    top: -8px;
    }
    
    .menu__btn>span::after {
    content: '';
    top: 8px;
    }
    
    .menu__box {
    display: block;
    position: fixed;
    top: 51px;
    left: -100%;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 25px 0;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    text-align: left;
    border-radius: 0px 0px 10px 0px;
    
    }
    
    .menu__item {
    display: block;
    padding: 12px 24px;
    color: #000000;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #000000;
    text-decoration: none;
    transition-duration: .25s;
    }
    
    .menu__item:hover {
    background-color: #f1f1f2;
    }
    
    /*mobile navbar*/
    
    
      .page-nav {
        width: 100%;
        position: relative;
     margin-top: 0;
        z-index: 100;
        background-color: #fff;
     display: none;
      }
      .page-nav ul{
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #ececec;
    list-style: none;
    
      }
      .page-nav li{
    list-style: none;
    padding-left: 50px;
    list-style: none;
    display: none;
    
      }
    
      .page-nav li a {
        padding: 20px;
        text-transform: capitalize;
        color: #80868b;
        list-style: none;
      }
    
    
      .home-banner{
          display: flex;
          flex-direction: column;
          width: 100%;
          height: auto;
          padding-top: 50px;
       
      
      }
    
     
      .home-banner img{
        width: 100%;
       height: 400px;
       object-fit:cover;
      }
    
      .hb-heading{
        width: 100%;
        height: auto;
          position: relative;
          top: 0%;
          left: 0%;
          transform: translate(-0%, -0%);
          background-color: #fff;
          padding:10px;
          margin: auto;
      }
      .hb-heading h1{
       font-size: 25px;
       font-weight: 400;
       padding: 10px;
       text-align: center;
       text-transform: capitalize;
      }
      .hb-heading p{
    
      font-weight: 300;
      color: #495057;
      padding:10px;
      margin: auto;
    
      }
    
    
     
      .p-s-text h2{
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding: 10px;
    
      }
      .p-s-text p{
          width: 100%;
          margin: auto;
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    padding: 20px;
      }
    
    
    .puppies-container{
      margin: auto;
      width: 90%;
      height: auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      margin-top: 50px;
      margin-bottom: 20px;
      justify-items: right;
    }
    
    .puppies-box{
    width: 100%;
    height: auto;
      border: 1px solid #cccccc;
    
      position: relative;
      background-color: #f7f7f8;
    
    
    }
    .puppies-box img{
    width: 100%;
    height:auto;
    padding: 10px;
    border-radius: 20px 20px 0px 0px;
    object-fit: cover;
    }
    .puppies-box h3{
    font-size: 25px;
    font-weight: 400;
    padding: 10px;
    }
    .puppies-box p{
    height: auto;
    font-size: 15px;
    line-height: 24px;
    padding: 10px;
    border-bottom: 2px solid #cccccc;
    }
    
    
    
    
      .p-b-link-container{
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #dadce0;
    
      }
      .p-b-link-container a{
         border: 1px solid #cccccc;
         background-color: #066ff0;
         color: #fff;
         width: 100%;
         padding: 5px;
         border: 1px solid #6c6c6c;
         margin: 10px;
         border-radius: 5px;
         text-align: left;
         font-size: 15px;
         
    
      }
    
      .p-b-link-container a img{
        width: 20px;
        height: 20px;
      margin-right: 10px;
      padding: 0;
      float: left;
      }
    
      .breeder-owner-container{
        width: 100%;
      display: flex;
      flex-direction: column;
      margin: auto;
      justify-content: space-evenly;
      }
    
      .b-o-text{
        display: inline;
        margin: auto;
        padding-right: 0px;
        text-align: center;
      }
      .b-o-text h2{
        font-size: 25px;
        font-weight: 400;
        padding: 10px;
        margin: auto;
      }
      .b-o-text p{
        font-size: 18px;
      padding: 20px;
      text-align: left;
      }
    
      .b-o-box-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        margin-top: 50px;
        margin-bottom: 20px;
        margin: auto;
    
      }
      a .b-o-box {
        padding: 20px;
        border: 1px solid #dadce0;
        margin: 10px;
        width: 300px;
        height: 370px;
    
      }
      .b-o-box img{
        width: 70px;
        height: 70px;
        margin: 20px;
      }
      .b-o-box h4{
        font-size: 25px;
        font-weight: 300;
        padding: 20px;
      }
     .right-arrow{
      fill: #1a73e8;
      float: right;
      height: 16px;
      margin: 0 24px;
      right: 24px;
      width: 16px;
      bottom: 0;
      }
     .right-arrow img{
      width: 30px;
      }
    
      .abt-dbs-container{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: auto;
        padding: 10px;
      }
    
      .abt-dbs-text{
        margin: auto;
        width: auto;
        padding-right: 0px;
      }
      
      .abt-dbs-text h3{
        font-size: 25px;
        padding: 10px;
        font-weight: 400;
      }
      .abt-dbs-text P{
        font-size: 18px;
        padding: 10px;
        font-weight: 300;
      }
    
    
      .abt-dbs-box{
        width: 100%;
        margin: auto;
      }
      .abt-dbs-box h4{
       font-size: 20px;
       font-weight: 400;
       padding: 10px;
       padding-top: 0;
      }
      .abt-dbs-box p{
       font-size: 16px;
       font-weight: 400;
       padding: 10px;
       border-bottom: 1px solid #066ff0;
       margin-bottom: 20px;
      }
      .abt-dbs-box img{
        width: 70px;
        height: 70px;
        margin: 10px;
        border: 1px solid #066ff0;
        border-radius: 5px;
        padding: 5px;
      }
    
      .puppies-booking-form-section{
        width: 100%;
        margin: auto;
      }
    
      .puppies-booking-form-section h2{
        font-size: 25px;
        padding: 10px;
        font-weight: 400;
        text-align: center;
      }
      .puppies-booking-form-section p{
        font-size: 18px;
        padding: 20px;
        text-align: left;
      }
      .pbf-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px;
        
      }
      .pbf-box{
        width: 100%;
        height: 700px;
    
        margin-bottom: 10px;
      }
    
      .pbf-box iframe{
        width: 100%;
        height: 100%;
      
      }
    
      .serv-city{
        width: 100%;
        margin: auto;
        padding: 20px;
      }
      .serv-city h2{
      text-align: center;
      font-size: 30px;
      font-weight: 400;
      padding: 0px;
      text-transform: capitalize;
      }
      
        .sc-box{
          width: auto;
          height: auto;
          padding: 10px;
          text-align: center;
          text-transform: capitalize;
          box-shadow: 3px 3px 10px rgba(78, 2, 255, 0.4);
          border-radius: 5px;
          
        }
        .sc-box img{
          width: 100%;
          height: auto;
       
        }
        .sc-box h3{
          font-size: 15px;
          font-weight: 300;
       
        }
      
      
        .s-c-container{
      margin: auto;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          grid-column-gap: 10px;
          grid-row-gap: 10px;
          margin-top: 50px;
          margin-bottom: 20px;
        }

        /*area*/  

.areapuppy {
  padding: 10px;
}
.areapuppy h2{
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

.pup-from-section h2{
font-size: 25px;
font-weight: 300;
padding: 20px;
text-align: center;
}



    
      .top-artical-section h2{
    font-size: 25px;
    font-weight: 400;
    padding: 10px;
      }
      .t-a-container{
        height: 100%;
        width: 95%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
        margin-top: 0px;
        margin-bottom: 20px;
        margin: auto;
        padding: 5px;
    
      }
      .t-a-box{
        width: 100%;
        height: 100%;
        border: none;
        margin: auto;
        border-radius:5px;
        border-top: none;
        padding: 0px;
        margin: 0px;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    
      }
      .t-a-box img{
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-bottom: 1px solid #616161;
        border-radius: 10px 10px 0px 0px;
    
      }
      .t-a-box h5{
        font-size: 16px;
        font-weight: 300;
        padding: 10px;
        text-align: center;
    
      }
    
    
    
    
      .reviews-section h2{
        font-size: 25px;
        font-weight: 400;
        padding: 20px;
        text-align: center;
      }
      .reviews-container{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
        margin-top: 50px;
        margin-bottom: 20px;
        margin: auto;
        padding: 10px;
      }
    
      .reviews-box{
        border: 1px solid #6c6c6c;
        padding: 0px;
        width: 100%;
        height: auto;
      }
    
      .reviews-box h6{
        font-size: 20px;
        padding: 20px;
        text-align: center;
        font-weight: 400;
      }
      .reviews-box p{
    
        font-size: 16px;
        padding: 20px;
      }
      .footer-section{
        background-color: #F7F7F8;
        padding: 20px;
    position: relative;
        
      }
      .footer-container{
        display: inline;
        width: 100%;
      }
      .footer-container a{
       color: #6c6c6c;
      }
      .footer-container h3{
       font-size: 20px;
       padding-right: 0px;
       padding: 10px;
    
      }
      .social-icon-container{
        display: flex;
      width: 100%;
      border-bottom: 1px solid #80868b;
      margin: 10px auto;
      padding-bottom: 20px;
      }
      .social-icon img{
        width: 25px;
        height: 25px;
        margin-left: 5px;
        margin-top: 10px;
      }
    
      .logo-links-container{
        display: flex;
        width: 100%;
        border-bottom: 1px solid #80868b;
        margin: auto;
        padding-bottom: 20px;
      }
      .logo-links-container h3{
        color: #066ff0;
        font-family: 'Pacifico', cursive;
        font-weight: 100;
      }
      .logo-links-container ul{
        list-style: none;
        display: inline;
        margin-left: 10px;
        padding-top: 0px;
      }
      .logo-links-container li{
        list-style: none;
        display: inline;
        margin-left: 20px;
        line-height: 30px;
      }
    
      .contact-container{
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: auto;
        padding-bottom: 0px;
    
        }
    
      .contact-container p {
        list-style: none;
        display: inline;
        margin-left: 0px;
        padding-top: 10px;
        color: #6c6c6c ;
      }
      .contact-container  a{
        list-style: none;
        display: inline;
        margin-left: 0px;
        padding-top: 13px;
      }
    
      footer p{
    
        text-align: center;
        padding: 20px;
        border-top: 1px solid #6c6c6c;
        background-color: #F7F7F8;
        color: #066ff0;
      
      }
    
      footer a{
        font-size: 20px;
        color: #066ff0;
      
      }
    
    
    
      /*breederpage*/
    .dog-breeder-banner{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding-top: 50px;
        
    }
    
    .db-photo{
        width: auto;
        height: 500px;
    }
    
    .dog-breeder-banner img{
       padding: 20px;
       width: 100%;
       height: auto;
       object-fit: cover;
    }
    
    .db-heading{
      width: 100%;
      height: auto;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -10%);
        background-color: #fff;
        padding: 20px;
        border-radius: 10px 10px 0px 0px ;
    }
    .db-heading h1{
     font-size: 25px;
     font-weight: 400;
     padding: 10px;
     text-align: center;
     text-transform: capitalize;
    }
    .db-heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    }
    
    .db-block-section h2{
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
    }
    
    .db-block-container{
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
      padding: 20px;
    }
    .db-block{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 1px solid #6c6c6c;
      padding: 20px;
      border-radius: 5px;
    }
    .db-block img{
    margin: 20px;
    width: 70px;
    height: 70px;
    }
    .db-block h2{
    font-size: 30px;
    padding: 20px;
    }
    .db-block p{
    font-size: 16px;
    padding: 20px;
    }
    
    .db-form-section h2{
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
    text-transform: capitalize;
    }
    
    .db-form-box{
      width: auto;
      height: 300px;
      border: 1px solid #6c6c6c;
      border-radius: 5px;
    }
    
    .db-form-container{
      width: 100%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
      padding: 20px;
    }
    
    .dw-q-section h2{
      font-size: 25px;
      font-weight: 400;
      text-align: center;
      padding: 30px;
      text-transform: capitalize;
    }
    
    
    .dw-q-box{
      width: 100%;
      margin: auto;
      padding-bottom: 20px;
      padding-top:0px;
    }
    .dw-q-box h3{
      font-size: 20px;
      font-weight: 400;
      padding-left: 20px;
      text-align: left;
    }
    .dw-q-box p{
      width: 100%;
      font-size: 16px;
      font-weight: 300;
      line-height: 26px;
      padding-left: 20px;
      text-align: left;
    }
    
    /*artical-page*/
    
    
    
    .dog-art-container{
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap:30px;
      margin-top: 50px;
      margin-bottom: 20px;
      padding-top: 50px;
      margin: auto;
      padding: 10px;
    }
    .dog-artical-box{
      width: 100%;
      height: 100%;
      margin: auto;
      border-radius:10px;
      border-top: none;
      box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    
    }
    .dog-artical-box img{
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-bottom: 2px solid #1a73e8;
      border-radius: 10px 10px 0px 0px;
    }
    .dog-artical-box h2 :hover{
      text-decoration: underline;
    }
    .dog-artical-box h2 a{
      color: #272727;
    }
    .dog-artical-box h2{
      font-size: 15px;
      font-weight: 300;
      padding: 5px;
      text-align: center;
      color: #272727;
    
    }
    .read-more img{
      width: 25px;
      height: 25px;
      border: none;
    
    }
    .read-more{
     display: flex;
    padding: 10px;
    width: auto;
    float: right;
    color: #1a73e8;
    
    }
    
    .pagination {
      display: inline-block;
      display: flex;
      justify-content: end;
      margin: 50px;
    
    }
    
    .pagination a {
      color: black;
      float: left;
      padding: 8px 16px;
      text-decoration: none;
      transition: background-color .3s;
    }
    
    .pagination a.active {
      background-color: #066ff0;
      color: white;
    }
    
    .pagination a:hover:not(.active) {background-color: #ddd;}
    /*artical-page*/
    
    
    /*breed page*/
    .dog-breed-banner{
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      padding-top: 50px;
    }
    
    
    .dog-breed-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
    
    }
    
    .db-h3heading{
      width: 100%;
      height: auto;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -10%);
        background-color: #fff;
        padding: 20px;
        border-radius: 10px 10px 0px 0px ;
      }
    .db-h3heading h3{
    font-size: 30px;
    font-weight: 300;
    padding: 10px;
    padding-top: 0;
    text-align: center;
    text-transform: capitalize;
    }
    .db-h3heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    }
    
    /*breed page*/
    
    .breed-orgin img{
      width: 100px;
      height: 500px;
    }
    
    .bg-row{
      width: 100px;
      height: 100px;
      background-color: #80868b;
      border: 1px solid black;
    }
    .bg-column{
      width: 100px;
      height: 100px;
      background-color: #495057;
    }
    
    .breed-grid-container{
      width: 80%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 50px;
      grid-row-gap:50px;
      margin-top: 50px;
      margin-bottom: 20px;
      padding-top: 50px;
      margin: auto;
    }
    
    
    
    
    .br-inf-grid-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 5px;
      grid-row-gap:5px;
      margin-top: 50px;
      margin-bottom: 20px;
      padding-top: 20px;
      margin: auto;
    }
    
    .br-in-box{
      width: 100%;
      height: 100px;
      padding: 5px;
      margin: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
    }
    .br-in-box img{
     width: 25px;
     height: 25px;
    }
    .br-in-box h3{
     padding: 5px;
     font-size: 18px;
     font-weight: 400;
    }
    .br-in-box p{
     padding: 5px;
     font-size: 15px;
    
    }
    .p-f-s-section h1{
      text-align: center;
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
    .p-f-s-container{
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap:50px;
      margin-top: 50px;
      margin-bottom: 20px;
      padding-top: 50px;
      margin: auto;
      padding: 20px;
    }
    .pfs-box {
     width: 100%;
     height: 100%;
    
     border-top: none;
     border-radius: 10px 10px 10px 10px;
     box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
    }
    .pfs-box img{
     width: 100%;
     height: 100%;
     border-radius: 10px 10px 0px 0px;
    }
    .pfs-box a{
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .call-btn p{
    padding: 5px;
    border-radius: 5px;
    background-color: #066ff0;
    color: #fff;
    margin: 10px;
    font-size: 16px;
    }
    
    
    
    .accordion-container {
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      }
      
    .accordion-container h2 {
    width: 100%;
    font-size: 25px;
    font-weight: 400;
      }
      
      .accordion .accordion-item {
      border-bottom: 1px solid #e5e5e5;
      }
      
      .accordion .accordion-item button[aria-expanded='true'] {
      border-bottom: 1px solid #1a73e8;
      }
      
      .accordion button {
      position: relative;
      display: flex;
      text-align: left;
      width: 95%;
      padding: 1em 0;
      color: #7288a2;
      font-size: 1rem;
      font-weight: 400;
      border: none;
      background: none;
      outline: none;
    
      }
      
      .accordion button:hover,
      .accordion button:focus {
      cursor: pointer;
      color: #1a73e8;
      }
      
      .accordion button:hover::after,
      .accordion button:focus::after {
      cursor: pointer;
      color: #1a73e8;
      border: 1px solid #1a73e8;
      }
      
      .accordion button .accordion-title {
      padding: 1em 1.5em 1em 0;
      margin-right: 5px;
    
    
      }
      
      .accordion button .icon {
      display: inline-block;
      position: absolute;
      top: 35px;
      right: 0;
      width: 22px;
      height: 22px;
      border: 1px solid;
      border-radius: 22px;
      margin-left: 10px;
      }
      
      .accordion button .icon::before {
      display: block;
      position: absolute;
      content: '';
      top: 9px;
      left: 5px;
      width: 10px;
      height: 2px;
      background: currentColor;
      }
      .accordion button .icon::after {
      display: block;
      position: absolute;
      content: '';
      top: 5px;
      left: 9px;
      width: 2px;
      height: 10px;
      background: currentColor;
      }
      
      .accordion button[aria-expanded='true'] {
      color: #1a73e8;
      }
      .accordion button[aria-expanded='true'] .icon::after {
      width: 0;
      }
      .accordion button[aria-expanded='true'] + .accordion-content {
      opacity: 1;
      max-height: 20em ;
      transition: all 200ms linear;
      will-change: opacity, max-height;
      }
      .accordion .accordion-content {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: opacity 200ms linear, max-height 200ms linear;
      will-change: opacity, max-height;
      }
      .accordion .accordion-content p {
      font-size: 15px;
      font-weight: 300;
      margin: 2em 0;
    
      }
    
    
      .breed-info-container{
        padding: 20px;
      
      }
      
      .fbox{
        width: 100%;
        margin: auto;
        text-align: left;
        padding: 0px;
      }
      .fbox p{
        width: auto;
        text-align: left;
        padding: 5px;
        font-size: 16px;
      }
      .art-head{
        text-align: center;
        font-size: 30px;
        font-weight: 300;
        text-transform: capitalize;
        padding: 20px 10px 10px 10px;
      }
      
      .sbox {
      width: 100%;
      margin: auto;
      text-align: center;
      padding: 0px;
      }
      .sbox h3{
        font-size: 20px;
        font-weight: 400;
        width: 100%;
      text-align: left;
      padding: 20px 0px 0px 10px;
      margin: auto;
      }
      .sbox p{
        width: auto;
      text-align: left;
      padding: 5px;
      font-size: 16px;
      }
    
    /*blog-articals*/
    .dog-artical-banner{
      display: flex;
    flex-direction: column;
      width: 100%;
      height: auto;
      padding-top: 50px;
    
      margin: auto;
    }
    
    
    .dog-artical-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
    }
    
    .da-heading{
    width:100%;
    height: auto;
    margin: auto;
     
    }
    .da-heading h1{
    font-size: 25px;
    font-weight: 400;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    }
    .da-heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    text-align: center;
    }
    .top-ten-box{
    width: 100%;
    padding: 20px;
    align-items: center;
    margin: auto;
    }
    .top-ten-box img{
    width: 100%;
    padding: 20px;
    align-items: center;
    margin: auto;
    }
    
    
    .top-ten-section{
    width: 100%;
    text-align: center;
    
    }
    .top-ten-container{
      width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px;
    
    }
    .top-sec-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    
    }
    .top-box{
    width: 100%;
    height: auto;
    padding: 20px;
    margin: auto;
    border-bottom: 2px solid #066ff0;
    }
    .top-box img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
    }
    .top-box h2{
    font-size: 25px;
    padding: 20px;
    font-weight: 400;
    }
    .top-box p{
    padding: 5px;
    font-size: 16px;
    }
    .top-box a{
    padding: 10px;
    background-color: #1a73e8;
    color: #fff;
    border-radius: 5px;
    
    }
    
    
    
    .blog-heading{
      width: 100%;
      margin: auto;
    } 
    .blog-heading h1{
      font-size: 25px;
      font-weight: 300;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
    }
    .blog-heading p{
      font-size: 16px;
      font-weight: 300;
      color: #495057;
      padding: 10px;
      text-align: center;
      }
    
    
      .blog-head{
        width:100%;
        height: auto;
        margin: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        padding: 5px;
      }
      .blog-head h2{
        font-size: 20px;
      font-weight: 300;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
      }
      .blog-head h3{
        font-size: 18px;
      font-weight: 400;
      padding: 10px;
      padding-bottom: 0;
      text-align: left;
      text-transform: capitalize;
      }
      .blog-head p{
        font-size: 16px;
      font-weight: 300;
      padding: 10px;
      padding-top: 5px;
      text-align: left;
      text-transform: capitalize;
      }
    
      .blog-head ul{
        width: 100%;
        padding: 10px 10px 10px 30px;
      }
      .blog-head li{
        padding: 5px;
        list-style: decimal;
      }
    
    
    
    /*blog-articals*/
    
    /*city page*/
    .city-pup-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap:20px;
      margin-top: 50px;
      margin-bottom: 20px;
      padding-top: 50px;
      margin: auto;
    }
    
    .city-pup{
    padding: 5px;
    box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
    width: 100%;
    height: auto;
    }
    .city-pup img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    }
    .city-pup h2{
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    padding: 5px;
    }
    /*city page*/
    
    
    
    
  
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  

.top-header{
  height: auto;
    width: 100%;
    height: 50px;
    background-color: #fff;
    position: fixed;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 0;
  
  
  }
  
  .logo{
  width: 100%;
  height: auto;
  
  
  }
  
  .logo a{
    display: flex;
    align-items: baseline;
  }
  .logo a img{
    width:30px;
    height: 30px;
  
  
  }
  .logo a p{
  
   font-size: 25px;
   color: #066ff0;
   font-weight: 100;
   padding-left: 10px;
   font-family: 'Pacifico', cursive;
  
  }
  

  
  /*mobile navbar*/

  
  
    .home-banner{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding-top: 50px;
     
    
    }
  
   
    .home-banner img{
      width: 100%;
     height: 400px;
     object-fit:cover;
    }
  
    .hb-heading{
      width: 100%;
      height: auto;
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(-0%, -0%);
        background-color: #fff;
        padding:10px;
        margin: auto;
    }
    .hb-heading h1{
     font-size: 25px;
     font-weight: 400;
     padding: 10px;
     text-align: center;
     text-transform: capitalize;
    }
    .hb-heading p{
  
    font-weight: 300;
    color: #495057;
    padding:10px;
    margin: auto;
  
    }
  
  
   
    .p-s-text h2{
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  padding: 10px;
  
    }
    .p-s-text p{
        width: 100%;
        margin: auto;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  padding: 20px;
    }
  
  
  .puppies-container{
    margin: auto;
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-items: right;
  }
  
  .puppies-box{
  width: 100%;
  height: auto;
    border: 1px solid #cccccc;
  
    position: relative;
    background-color: #f7f7f8;
  
  
  }
  .puppies-box img{
  width: 100%;
  height:auto;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  object-fit: cover;
  }
  .puppies-box h3{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  }
  .puppies-box p{
  height: 210px;
  font-size: 15px;
  line-height: 24px;
  padding: 10px;
  border-bottom: 2px solid #cccccc;
  }
  
  
  
  
    .p-b-link-container{
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #dadce0;
  
    }
    .p-b-link-container a{
       border: 1px solid #cccccc;
       background-color: #066ff0;
       color: #fff;
       width: 100%;
       padding: 5px;
       border: 1px solid #6c6c6c;
       margin: 5px;
       border-radius: 5px;
       text-align: left;
       font-size: 15px;
       
  
    }
  
    .p-b-link-container a img{
      width: 20px;
      height: 20px;
    margin-right: 10px;
    padding: 0;
    float: left;
    }
  
    .breeder-owner-container{
      width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: space-evenly;
    }
  
    .b-o-text{
      display: inline;
      margin: auto;
      padding-right: 0px;
      text-align: center;
    }
    .b-o-text h2{
      font-size: 25px;
      font-weight: 400;
      padding: 10px;
      margin: auto;
    }
    .b-o-text p{
      font-size: 18px;
    padding: 20px;
    text-align: left;
    }
  
    .b-o-box-container{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
  
    }
    a .b-o-box {
      padding: 20px;
      border: 1px solid #dadce0;
      margin: 10px;
      width: auto;
      height: 370px;
  
    }
    .b-o-box img{
      width: 70px;
      height: 70px;
      margin: 20px;
    }
    .b-o-box h4{
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
   .right-arrow{
    fill: #1a73e8;
    float: right;
    height: 16px;
    margin: 0 24px;
    right: 24px;
    width: 16px;
    bottom: 0;
    }
   .right-arrow img{
    width: 30px;
    }
  
    .abt-dbs-container{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      margin: auto;
      padding: 10px;
    }
  
    .abt-dbs-text{
      margin: auto;
      width: auto;
      padding-right: 0px;
    }
    
    .abt-dbs-text h3{
      font-size: 25px;
      padding: 10px;
      font-weight: 400;
    }
    .abt-dbs-text P{
      font-size: 18px;
      padding: 10px;
      font-weight: 300;
    }
  
  
    .abt-dbs-box{
      width: 100%;
      margin: auto;
    }
    .abt-dbs-box h4{
     font-size: 20px;
     font-weight: 400;
     padding: 10px;
     padding-top: 0;
    }
    .abt-dbs-box p{
     font-size: 16px;
     font-weight: 400;
     padding: 10px;
     border-bottom: 1px solid #066ff0;
     margin-bottom: 20px;
    }
    .abt-dbs-box img{
      width: 70px;
      height: 70px;
      margin: 10px;
      border: 1px solid #066ff0;
      border-radius: 5px;
      padding: 5px;
    }
  
    .puppies-booking-form-section{
      width: 100%;
      margin: auto;
    }
  
    .puppies-booking-form-section h2{
      font-size: 25px;
      padding: 10px;
      font-weight: 400;
      text-align: center;
    }
    .puppies-booking-form-section p{
      font-size: 18px;
      padding: 20px;
      text-align: left;
    }
    .pbf-container{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
      
    }
    .pbf-box{
      width: 100%;
      height: 700px;
  
      margin-bottom: 10px;
    }
  
    .pbf-box iframe{
      width: 100%;
      height: 100%;
    
    }
  
    .serv-city{
      width: 100%;
      margin: auto;
      padding: 20px;
    }
    .serv-city h2{
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    padding: 0px;
    text-transform: capitalize;
    }
    
      .sc-box{
        width: auto;
        height: auto;
        padding: 10px;
        text-align: center;
        text-transform: capitalize;
        box-shadow: 3px 3px 10px rgba(78, 2, 255, 0.4);
        border-radius: 5px;
        
      }
      .sc-box img{
        width: 100%;
        height: auto;
     
      }
      .sc-box h3{
        font-size: 15px;
        font-weight: 300;
     
      }
    
    
      .s-c-container{
    margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        margin-top: 50px;
        margin-bottom: 20px;
      }

 /*area*/  

.areapuppy {
  padding: 10px;
}
.areapuppy h2{
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

.pup-from-section h2{
font-size: 25px;
font-weight: 300;
padding: 20px;
text-align: center;
}
  
    .top-artical-section h2{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
    }
    .t-a-container{
      height: 100%;
      width: 95%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      margin-top: 0px;
      margin-bottom: 20px;
      margin: auto;
      padding: 5px;
  
    }
    .t-a-box{
      width: 100%;
      height: 100%;
      border: none;
      margin: auto;
      border-radius:5px;
      border-top: none;
      padding: 0px;
      margin: 0px;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
  
    }
    .t-a-box img{
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-bottom: 1px solid #616161;
      border-radius: 10px 10px 0px 0px;
  
    }
    .t-a-box h5{
      font-size: 16px;
      font-weight: 300;
      padding: 10px;
      text-align: center;
  
    }
  
  
  
  
    .reviews-section h2{
      font-size: 25px;
      font-weight: 400;
      padding: 20px;
      text-align: center;
    }
    .reviews-container{
      width: 80%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 0px;
      grid-row-gap: 30px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
      padding: 10px;
    }
  
    .reviews-box{
      border: 1px solid #6c6c6c;
      padding: 0px;
      width: 100%;
      height: auto;
    }
  
    .reviews-box h6{
      font-size: 20px;
      padding: 20px;
      text-align: center;
      font-weight: 400;
    }
    .reviews-box p{
  
      font-size: 16px;
      padding: 20px;
    }
    .footer-section{
      background-color: #F7F7F8;
      padding: 20px;
  position: relative;
      
    }
    .footer-container{
      display: inline;
      width: 100%;
    }
    .footer-container a{
     color: #6c6c6c;
    }
    .footer-container h3{
     font-size: 20px;
     padding-right: 0px;
     padding: 10px;
  
    }
    .social-icon-container{
      display: flex;
    width: 100%;
    border-bottom: 1px solid #80868b;
    margin: 10px auto;
    padding-bottom: 20px;
    }
    .social-icon img{
      width: 25px;
      height: 25px;
      margin-left: 30px;
      margin-top: 10px;
    }
  
    .logo-links-container{
      display: flex;
      width: 100%;
      border-bottom: 1px solid #80868b;
      margin: auto;
      padding-bottom: 20px;
    }
    .logo-links-container h3{
      color: #066ff0;
      font-family: 'Pacifico', cursive;
      font-weight: 100;
    }
    .logo-links-container ul{
      list-style: none;
      display: inline;
      margin-left: 10px;
      padding-top: 0px;
    }
    .logo-links-container li{
      list-style: none;
      display: inline;
      margin-left: 20px;
      line-height: 30px;
    }
  
    .contact-container{
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin: auto;
      padding-bottom: 0px;
  
      }
  
    .contact-container p {
      list-style: none;
      display: inline;
      margin-left: 0px;
      padding-top: 10px;
      color: #6c6c6c ;
    }
    .contact-container  a{
      list-style: none;
      display: inline;
      margin-left: 0px;
      margin-right: 100px;
      padding-top: 13px;
    }
  
    footer p{
  
      text-align: center;
      padding: 20px;
      border-top: 1px solid #6c6c6c;
      background-color: #F7F7F8;
      color: #066ff0;
    
    }
  
    footer a{
      font-size: 20px;
      color: #066ff0;
    
    }
  
  
  
    /*breederpage*/
  .dog-breeder-banner{
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      padding-top: 50px;
      
  }
  
  .db-photo{
      width: auto;
      height: 500px;
  }
  
  .dog-breeder-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }
  
  .db-heading{
    width: 100%;
    height: auto;
      position: relative;
      top: 0%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
  }
  .db-heading h1{
   font-size: 25px;
   font-weight: 400;
   padding: 10px;
   text-align: center;
   text-transform: capitalize;
  }
  .db-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  .db-block-section h2{
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
  }
  
  .db-block-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
    padding: 20px;
  }
  .db-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #6c6c6c;
    padding: 20px;
    border-radius: 5px;
  }
  .db-block img{
  margin: 20px;
  width: 70px;
  height: 70px;
  }
  .db-block h2{
  font-size: 30px;
  padding: 20px;
  }
  .db-block p{
  font-size: 16px;
  padding: 20px;
  }
  
  .db-form-section h2{
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  text-transform: capitalize;
  }
  
  .db-form-box{
    width: auto;
    height: 300px;
    border: 1px solid #6c6c6c;
    border-radius: 5px;
  }
  
  .db-form-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
    padding: 20px;
  }
  
  .dw-q-section h2{
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
  }
  
  
  .dw-q-box{
    width: 100%;
    margin: auto;
    padding-bottom: 20px;
    padding-top:0px;
  }
  .dw-q-box h3{
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
    text-align: left;
  }
  .dw-q-box p{
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding-left: 20px;
    text-align: left;
  }
  
  /*artical-page*/
  
  
  
  .dog-art-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap:30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
    padding: 10px;
  }
  .dog-artical-box{
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius:10px;
    border-top: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  
  }
  .dog-artical-box img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 2px solid #1a73e8;
    border-radius: 10px 10px 0px 0px;
  }
  .dog-artical-box h2 :hover{
    text-decoration: underline;
  }
  .dog-artical-box h2 a{
    color: #272727;
  }
  .dog-artical-box h2{
    font-size: 15px;
    font-weight: 300;
    padding: 5px;
    text-align: center;
    color: #272727;
  
  }
  .read-more img{
    width: 25px;
    height: 25px;
    border: none;
  
  }
  .read-more{
   display: flex;
  padding: 10px;
  width: auto;
  float: right;
  color: #1a73e8;
  
  }
  
  .pagination {
    display: inline-block;
    display: flex;
    justify-content: end;
    margin: 50px;
  
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  .pagination a.active {
    background-color: #066ff0;
    color: white;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}
  /*artical-page*/
  
  
  /*breed page*/
  .dog-breed-banner{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-top: 50px;
  }
  
  
  .dog-breed-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  
  }
  
  .db-h3heading{
    width: 100%;
    height: auto;
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
    }
  .db-h3heading h3{
  font-size: 30px;
  font-weight: 300;
  padding: 10px;
  padding-top: 0;
  text-align: center;
  text-transform: capitalize;
  }
  .db-h3heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  /*breed page*/
  
  .breed-orgin img{
    width: 100px;
    height: 500px;
  }
  
  .bg-row{
    width: 100px;
    height: 100px;
    background-color: #80868b;
    border: 1px solid black;
  }
  .bg-column{
    width: 100px;
    height: 100px;
    background-color: #495057;
  }
  
  .breed-grid-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  
  
  
  .br-inf-grid-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5px;
    grid-row-gap:5px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 20px;
    margin: auto;
  }
  
  .br-in-box{
    width: 100%;
    height: 100px;
    padding: 5px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .br-in-box img{
   width: 25px;
   height: 25px;
  }
  .br-in-box h3{
   padding: 5px;
   font-size: 18px;
   font-weight: 400;
  }
  .br-in-box p{
   padding: 5px;
   font-size: 15px;
  
  }
  .p-f-s-section h1{
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    padding: 20px;
  }
  .p-f-s-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
    padding: 20px;
  }
  .pfs-box {
   width: 100%;
   height: 100%;
  
   border-top: none;
   border-radius: 10px 10px 10px 10px;
   box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .pfs-box img{
   width: 100%;
   height: 100%;
   border-radius: 10px 10px 0px 0px;
  }
  .pfs-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .call-btn p{
  padding: 5px;
  border-radius: 5px;
  background-color: #066ff0;
  color: #fff;
  margin: 10px;
  font-size: 16px;
  }
  
  
  
  .accordion-container {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    }
    
  .accordion-container h2 {
  width: 100%;
  font-size: 25px;
  font-weight: 400;
    }
    
    .accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    }
    
    .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #1a73e8;
    }
    
    .accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 95%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  
    }
    
    .accordion button:hover,
    .accordion button:focus {
    cursor: pointer;
    color: #1a73e8;
    }
    
    .accordion button:hover::after,
    .accordion button:focus::after {
    cursor: pointer;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    }
    
    .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    margin-right: 5px;
  
  
    }
    
    .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 35px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    margin-left: 10px;
    }
    
    .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
    }
    .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
    }
    
    .accordion button[aria-expanded='true'] {
    color: #1a73e8;
    }
    .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
    }
    .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 20em ;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    }
    .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    }
    .accordion .accordion-content p {
    font-size: 15px;
    font-weight: 300;
    margin: 2em 0;
  
    }
  
  
    .breed-info-container{
      padding: 20px;
    
    }
    
    .fbox{
      width: 100%;
      margin: auto;
      text-align: left;
      padding: 0px;
    }
    .fbox p{
      width: auto;
      text-align: left;
      padding: 5px;
      font-size: 16px;
    }
    .art-head{
      text-align: center;
      font-size: 30px;
      font-weight: 300;
      text-transform: capitalize;
      padding: 20px 10px 10px 10px;
    }
    
    .sbox {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 0px;
    }
    .sbox h3{
      font-size: 20px;
      font-weight: 400;
      width: 100%;
    text-align: left;
    padding: 20px 0px 0px 10px;
    margin: auto;
    }
    .sbox p{
      width: auto;
    text-align: left;
    padding: 5px;
    font-size: 16px;
    }
  
  /*blog-articals*/
  .dog-artical-banner{
    display: flex;
  flex-direction: column;
    width: 100%;
    height: auto;
    padding-top: 50px;
  
    margin: auto;
  }
  
  
  .dog-artical-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  }
  
  .da-heading{
  width:100%;
  height: auto;
  margin: auto;
   
  }
  .da-heading h1{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .da-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  text-align: center;
  }
  .top-ten-box{
  width: 100%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  .top-ten-box img{
  width: 100%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  
  
  .top-ten-section{
  width: 100%;
  text-align: center;
  
  }
  .top-ten-container{
    width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0px;
  
  }
  .top-sec-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  
  }
  .top-box{
  width: 100%;
  height: auto;
  padding: 20px;
  margin: auto;
  border-bottom: 2px solid #066ff0;
  }
  .top-box img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  }
  .top-box h2{
  font-size: 25px;
  padding: 20px;
  font-weight: 400;
  }
  .top-box p{
  padding: 5px;
  font-size: 16px;
  }
  .top-box a{
  padding: 10px;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 5px;
  
  }
  
  
  
  .blog-heading{
    width: 100%;
    margin: auto;
  } 
  .blog-heading h1{
    font-size: 25px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
  }
  .blog-heading p{
    font-size: 16px;
    font-weight: 300;
    color: #495057;
    padding: 10px;
    text-align: center;
    }
  
  
    .blog-head{
      width:100%;
      height: auto;
      margin: auto;
      padding-top: 20px;
      padding-bottom: 20px;
      padding: 5px;
    }
    .blog-head h2{
      font-size: 20px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    }
    .blog-head h3{
      font-size: 18px;
    font-weight: 400;
    padding: 10px;
    padding-bottom: 0;
    text-align: left;
    text-transform: capitalize;
    }
    .blog-head p{
      font-size: 16px;
    font-weight: 300;
    padding: 10px;
    padding-top: 5px;
    text-align: left;
    text-transform: capitalize;
    }
  
    .blog-head ul{
      width: 100%;
      padding: 10px 10px 10px 30px;
    }
    .blog-head li{
      padding: 5px;
      list-style: decimal;
    }
  
  
  
  /*blog-articals*/
  
  /*city page*/
  .city-pup-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap:20px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .city-pup{
  padding: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  width: 100%;
  height: auto;
  }
  .city-pup img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  }
  .city-pup h2{
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding: 5px;
  }
  /*city page*/
  
  
  
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .top-header{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    margin: auto;
    border-bottom: 1px solid #ececec;
    position: fixed;
    z-index: 200;
    background-color: #fff;
  }
  
  .logo a{
    display: flex;
    align-items: baseline;
    padding: 10px;
  }
  .logo a img{
    width:40px;
    height: 40px;
  
  
  }
  .logo a p{
  
   font-size: 35px;
   color: #066ff0;
   font-weight: 100;
   font-family: 'Borel', cursive;
   padding-left: 10px;
   font-family: 'Pacifico', cursive;
  
  }
  .contact-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
  }
  .contact-link{
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .contact-link img{
    width: 30px;
    height: 30px;
   margin: auto;
  }
  .contact-link p{
  padding-left: 10px;
  }
  
  /*mobile navbar*/
  .hamburger-menu {
    display: none;
  }
  
  #menu__toggle {
    opacity: 0;
  
  }
  
  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  #menu__toggle:checked~.menu__box {
    left: 0 !important;
  }
  
  .menu__btn {
    position: relative;
    top: 90px;
    right: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
  }
  
  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: .25s;
  }
  
  .menu__btn>span::before {
    content: '';
    top: -8px;
  }
  
  .menu__btn>span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    top: 150px;
    left: -100%;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 30px 0;
    list-style: none;
    background-color: #00FFFFFF;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    text-align: center;
    border-radius: 0px 5px 10px 0px
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  
  .menu__item:hover {
    background-color: #f1f1f2;
  }
  
  /*mobile navbar*/
  
  
  
    .page-nav {
      width: 100%;
      position: fixed;
      margin-top: 80px;
      z-index: 100;
      background-color: #fff;
      display: block;
    }
    .page-nav ul{
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #ececec;
  list-style: none;
    }
    .page-nav li{
  list-style: none;
  padding-left: 40px;
  list-style: none;
  
    }
  
    .page-nav li a {
      padding: 20px;
      text-transform: capitalize;
      color: #80868b;
      list-style: none;
    }
  
  
    .home-banner{
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        height: 750px;
        position: relative;
        padding-top: 140px;
    
    }
  
    .hb-photo{
        width: auto;
        height: 500px;
    }
   
    .home-banner img{
       padding: 20px;
       width: 100%;
       height: auto;
       object-fit: cover;
    }
  
    .hb-heading{
      width: 50%;
        position: absolute;
        top: 53%;
        left: 30%;
        transform: translate(-60%, -35%);
        background-color: #fff;
        padding: 50px;
    }
    .hb-heading h1{
     font-size: 35px;
     font-weight: 300;
     padding: 10px;
     text-align: center;
     text-transform: capitalize;
    }
    .hb-heading p{
    font-weight: 300;
    color: #495057;
    padding: 5px;
    }
  
  
   
  
    .p-s-text h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
    }
    .p-s-text p{
        width: 70%;
        margin: auto;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 10px;
    }
  
  
  .puppies-container{
    margin: auto;
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-items: right;
  }
  
  .puppies-box{
  width: 100%;
  height: auto;
    border: 1px solid #cccccc;
  
    position: relative;
    background-color: #f7f7f8;
  
  
  }
  .puppies-box img{
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  }
  .puppies-box h3{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  }
  .puppies-box p{
  height: 160px;
  font-size: 15px;
  line-height: 24px;
  padding: 10px;
  border-bottom: 2px solid #cccccc;
  }
  
  
  
  
    .p-b-link-container{
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #dadce0;
  
    }
    .p-b-link-container a{
       border: 1px solid #cccccc;
       background-color: #066ff0;
       color: #fff;
       width: 100%;
       padding: 5px;
       border: 1px solid #6c6c6c;
       margin: 10px;
       border-radius: 5px;
       text-align: left;
       font-size: 15px;
       
  
    }
  
    .p-b-link-container a img{
      width: 20px;
      height: 20px;
    margin-right: 10px;
    padding: 0;
    float: left;
    }
  
    .breeder-owner-container{
      width: 80%;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: space-evenly;
    }
  
    .b-o-text{
      display: inline;
      margin: auto;
      padding-right: 100px;
    }
    .b-o-text h2{
      font-size: 50px;
      font-weight: 300;
      padding: 10px;
      margin: auto;
    }
    .b-o-text p{
      font-size: 18px;
    padding: 10px;
    }
  
    .b-o-box-container{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }
    a .b-o-box {
      padding: 20px;
      border: 1px solid #dadce0;
      margin: 10px;
      width: auto;
      height: 370px;
  
    }
    .b-o-box img{
      width: 70px;
      height: 70px;
      margin: 20px;
    }
    .b-o-box h4{
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
   .right-arrow{
    fill: #1a73e8;
    float: right;
    height: 16px;
    margin: 0 24px;
    right: 24px;
    width: 16px;
    bottom: 0;
    }
   .right-arrow img{
    width: 30px;
    }
  
    .abt-dbs-container{
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin: auto;
      padding: 10px;
    }
  
    .abt-dbs-text{
      margin: auto;
      width: auto;
      padding-right: 100px;
    }
    
    .abt-dbs-text h3{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
    }
    .abt-dbs-text P{
      font-size: 18px;
      padding: 20px;
      font-weight: 300;
    }
  
  
    .abt-dbs-box{
      width: 100%;
      margin: auto;
    }
    .abt-dbs-box h4{
     font-size: 20px;
     font-weight: 400;
     padding: 10px;
     padding-top: 0;
    }
    .abt-dbs-box p{
     font-size: 16px;
     font-weight: 400;
     padding: 10px;
     border-bottom: 1px solid #066ff0;
     margin-bottom: 20px;
    }
    .abt-dbs-box img{
      width: 70px;
      height: 70px;
      margin: 10px;
      border: 1px solid #066ff0;
      border-radius: 5px;
      padding: 5px;
    }
  
    .puppies-booking-form-section{
      width: 80%;
      margin: auto;
    }
  
    .puppies-booking-form-section h2{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
      text-align: center;
    }
    .puppies-booking-form-section p{
      font-size: 18px;
      padding: 20px;
      text-align: center;
    }
    .pbf-container{
      display: flex;
      justify-content: space-evenly;
      padding: 20px;
    }
    .pbf-box{
      width:100%;
      height: 800px;
    }
    .pbf-box iframe{
      width: 100%;
      height: 100%;
      border: none;
  
    }
  
  .serv-city{
    width: 80%;
    margin: auto;
  }
  .serv-city h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  }
  
    .sc-box{
      width: 150px;
      height: auto;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
      border-radius: 5px;
      
    }
    .sc-box img{
      width: 100%;
      height: auto;
    }
  
  
    .s-c-container{
  
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      margin-top: 50px;
      margin-bottom: 20px;
    }

        /*area*/  

.areapuppy {
  padding: 20px;
}
.areapuppy h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

.pup-from-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
text-align: center;
}
  
    .top-artical-section h2{
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
    }
    .t-a-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
    .t-a-box{
      width: 100%;
      height: 100%;
      border: 1px solid #6c6c6c;
      margin: auto;
      border-radius:10px;
      border-top: none;
  
    }
    .t-a-box img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #616161;
      border-radius: 10px 10px 0px 0px;
  
    }
    .t-a-box h5{
      font-size: 18px;
      font-weight: 300;
      padding: 5px;
      text-align: center;
  
    }
    .t-a-box h6{
      font-size: 16px;
      color: #fff;
      font-weight: 400;
    background-color: #1a73e8;
  padding: 5px;
  text-align: center;
  
  
    }
  
  
  
  
    .reviews-section h2{
      font-size: 50px;
      font-weight: 300;
      padding: 30px;
    }
    .reviews-container{
      width: 80%;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
  
    .reviews-box{
      border: 1px solid #6c6c6c;
      padding: 20px;
    }
  
    .reviews-box h6{
      font-size: 20px;
      padding: 20px;
      text-align: center;
      font-weight: 400;
    }
    .reviews-box p{
      font-size: 16px;
      padding: 20px;
    }
    .footer-section{
      background-color: #F7F7F8;
      padding: 20px;
  position: relative;
      
    }
    .footer-container{
      display: inline;
      width: 80%;
    }
    .footer-container a{
     color: #6c6c6c;
    }
    .footer-container h3{
     font-size: 20px;
     padding-right: 50px;
     padding: 20px;
  
    }
    .social-icon-container{
      display: flex;
    width: 80%;
    border-bottom: 1px solid #80868b;
    margin: 10px auto;
    padding-bottom: 20px;
    }
    .social-icon img{
      width: 25px;
      height: 25px;
      margin-left: 30px;
      margin-top: 20px;
    }
  
  
    .logo-links-container{
      display: flex;
      width: 80%;
      border-bottom: 1px solid #80868b;
      margin: auto;
      padding-bottom: 20px;
    }
    .logo-links-container h3{
      color: #066ff0;
      font-family: 'Pacifico', cursive;
      font-weight: 100;
    }
  
    .logo-links-container ul{
      list-style: none;
      display: inline;
      margin-left: 0px;
      padding-top: 30px;
    }
    .logo-links-container li{
      list-style: none;
      display: inline;
      margin-left:30px;
    }
  
    .contact-container{
      display: flex;
  flex-direction: row;
      width: 80%;
      margin: auto;
      padding-bottom: 20px;
    }
  
    .contact-container p {
      list-style: none;
      display: inline;
      margin-left: 100px;
      padding-top: 20px;
      color: #6c6c6c ;
    }
    .contact-container  a{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
  
    footer p{
  
      text-align: center;
      padding: 20px;
      border-top: 1px solid #6c6c6c;
      background-color: #F7F7F8;
      color: #066ff0;
    
    }
  
    footer a{
      font-size: 20px;
      color: #066ff0;
    
    }
  
  
  
    /*breederpage*/
  .dog-breeder-banner{
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
      height: 650px;
      padding-top: 30px;
      position: relative;
      padding-top: 140px;
  }
  
  .db-photo{
      width: auto;
      height: 500px;
  }
  
  .dog-breeder-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }
  
  .db-heading{
    width: 70%;
    height: 200px;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
  }
  .db-heading h1{
   font-size: 30px;
   font-weight: 300;
   padding: 10px;
   text-align: center;
   text-transform: capitalize;
  }
  .db-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  .db-block-section h2{
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
  }
  
  .db-block-container{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }
  .db-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #6c6c6c;
    padding: 20px;
    border-radius: 5px;
  }
  .db-block img{
  margin: 20px;
  width: 70px;
  height: 70px;
  }
  .db-block h2{
  font-size: 30px;
  padding: 20px;
  }
  .db-block p{
  font-size: 16px;
  padding: 20px;
  }
  .db-block a{
  font-size: 16px;
  padding: 10px;
  background-color: #066ff0;
  border-radius: 5px;
  color: #fff;
  }
  
  .qr-code-container{
  margin: auto;
  width: 100%;
  }
  .qr-photo{
    width: 300px;
    height: auto;
    margin: auto;
  }
  
  .qr-photo img{
    width: 100%;
    height: auto;
  }
  
  
  .dw-q-section h2{
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
  }
  
  
  .dw-q-box{
    width: 60%;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .dw-q-box h3{
    font-size: 36px;
    font-weight: 400;
    padding: 10px;
    text-align: left;
  }
  .dw-q-box p{
    width: 80%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 10px;
    text-align: left;
  }
  
  /*artical-page*/
  
  
  
  .dog-art-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .dog-artical-box{
    width: 100%;
    height: auto;
    margin: auto;
    border-radius:10px;
    border-top: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  
  }
  .dog-artical-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #1a73e8;
    border-radius: 10px 10px 0px 0px;
  }
  .dog-artical-box h2 :hover{
    text-decoration: underline;
  }
  .dog-artical-box h2 a{
    color: #272727;
  }
  .dog-artical-box h2{
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    text-align: center;
    color: #272727;
  }
  .read-more img{
    width: 25px;
    height: 25px;
    border: none;
  
  }
  .read-more{
   display: flex;
  padding: 10px;
  width: auto;
  float: right;
  color: #1a73e8;
  }
  
  .pagination {
    display: inline-block;
    display: flex;
    justify-content: end;
    margin: 50px;
  
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  .pagination a.active {
    background-color: #066ff0;
    color: white;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}
  /*artical-page*/
  
  
  /*breed page*/
  .dog-breed-banner{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding-top: 30px;
    position: relative;
    padding-top: 140px;
  }
  
  
  .dog-breed-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  }
  
  .db-h3heading{
  width: 80%;
  height: 150px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 30%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0px 0px ;
  }
  .db-h3heading h3{
  font-size: 30px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .db-h3heading p{
  font-weight: 300;
  color: #495057;
  padding: 5px;
  }
  
  /*breed page*/
  
  .breed-orgin img{
    width: 100px;
    height: 500px;
  }
  
  .bg-row{
    width: 100px;
    height: 100px;
    background-color: #80868b;
    border: 1px solid black;
  }
  .bg-column{
    width: 100px;
    height: 100px;
    background-color: #495057;
  }
  
  .breed-grid-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  
  
  
  
  .br-inf-grid-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5px;
    grid-row-gap:5px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 20px;
    margin: auto;
  }
  
  .br-in-box{
    width: 100%;
    height: 100px;
    padding: 5px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .br-in-box img{
   width: 25px;
   height: 25px;
  }
  .br-in-box h3{
   padding: 5px;
   font-size: 18px;
   font-weight: 400;
  }
  .br-in-box p{
   padding: 5px;
   font-size: 15px;
  
  }
  .p-f-s-section h1{
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    padding: 20px;
  }
  .p-f-s-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
    padding: 20px;
  }
  .pfs-box {
   width: 100%;
   height: 100%;
  
   border-top: none;
   border-radius: 10px 10px 10px 10px;
   box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .pfs-box img{
   width: 100%;
   height: 100%;
   border-radius: 10px 10px 0px 0px;
  }
  .pfs-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .call-btn p{
  padding: 5px;
  border-radius: 5px;
  background-color: #066ff0;
  color: #fff;
  margin: 10px;
  font-size: 16px;
  }
  
  
  
  .accordion-container {
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    }
    
  .accordion-container h2 {
  width: 100%;
  font-size: 25px;
  font-weight: 400;
    }
    
    .accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    }
    
    .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #1a73e8;
    }
    
    .accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 95%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  
    }
    
    .accordion button:hover,
    .accordion button:focus {
    cursor: pointer;
    color: #1a73e8;
    }
    
    .accordion button:hover::after,
    .accordion button:focus::after {
    cursor: pointer;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    }
    
    .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    margin-right: 5px;
  
  
    }
    
    .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 35px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    margin-left: 10px;
    }
    
    .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
    }
    .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
    }
    
    .accordion button[aria-expanded='true'] {
    color: #1a73e8;
    }
    .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
    }
    .accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 20em ;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    }
    .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    }
    .accordion .accordion-content p {
    font-size: 15px;
    font-weight: 300;
    margin: 2em 0;
  
    }
  
  
    .breed-info-container{
      padding: 20px;
    
    }
    
    .fbox{
      width: 100%;
      margin: auto;
      text-align: left;
      padding: 0px;
    }
    .fbox p{
      width: auto;
      text-align: left;
      padding: 5px;
      font-size: 16px;
    }
    .art-head{
      text-align: center;
      font-size: 30px;
      font-weight: 300;
      text-transform: capitalize;
      padding: 20px 10px 10px 10px;
    }
    
    .sbox {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 0px;
    }
    .sbox h3{
      font-size: 20px;
      font-weight: 400;
      width: 100%;
    text-align: left;
    padding: 20px 0px 0px 10px;
    margin: auto;
    }
    .sbox p{
      width: auto;
    text-align: left;
    padding: 5px;
    font-size: 16px;
    }
  
  
  
  
  
  
  
  
  /*city page*/
  .city-pup-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .city-pup{
  padding: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  width: 100%;
  height: auto;
  }
  .city-pup img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  }
  .city-pup h2{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 5px;
  }
  /*city page*/
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .top-header{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    margin: auto;
    border-bottom: 1px solid #ececec;
    position: fixed;
    z-index: 200;
    background-color: #fff;
  }
  
  .logo a{
    display: flex;
    align-items: baseline;
    padding: 10px;
  }
  .logo a img{
    width:40px;
    height: 40px;
  
  
  }
  .logo a p{
  
   font-size: 35px;
   color: #066ff0;
   font-weight: 100;
   font-family: 'Borel', cursive;
   padding-left: 10px;
   font-family: 'Pacifico', cursive;
  
  }
  .contact-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
  }
  .contact-link{
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .contact-link img{
    width: 30px;
    height: 30px;
   margin: auto;
  }
  .contact-link p{
  padding-left: 10px;
  }
  
  /*mobile navbar*/
  .hamburger-menu {
    display: none;
  }
  
  #menu__toggle {
    opacity: 0;
  
  }
  
  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  #menu__toggle:checked~.menu__box {
    left: 0 !important;
  }
  
  .menu__btn {
    position: relative;
    top: 90px;
    right: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
  }
  
  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: .25s;
  }
  
  .menu__btn>span::before {
    content: '';
    top: -8px;
  }
  
  .menu__btn>span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    top: 150px;
    left: -100%;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 30px 0;
    list-style: none;
    background-color: #00FFFFFF;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    text-align: center;
    border-radius: 0px 5px 10px 0px
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  
  .menu__item:hover {
    background-color: #f1f1f2;
  }
  
  /*mobile navbar*/
  
  
  
    .page-nav {
      width: 100%;
      position: fixed;
      margin-top: 80px;
      z-index: 100;
      background-color: #fff;
      display: block;
    }
    .page-nav ul{
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #ececec;
  list-style: none;
    }
    .page-nav li{
  list-style: none;
  padding-left: 50px;
  list-style: none;
  
    }
  
    .page-nav li a {
      padding: 20px;
      text-transform: capitalize;
      color: #80868b;
      list-style: none;
    }
  
  
    .home-banner{
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        height: 750px;
        position: relative;
        padding-top: 140px;
    
    }
  
    .hb-photo{
        width: auto;
        height: 500px;
    }
   
    .home-banner img{
       padding: 20px;
       width: 100%;
       height: auto;
       object-fit: cover;
    }
  
    .hb-heading{
      width: 50%;
        position: absolute;
        top: 53%;
        left: 30%;
        transform: translate(-60%, -35%);
        background-color: #fff;
        padding: 50px;
    }
    .hb-heading h1{
     font-size: 40px;
     font-weight: 300;
     padding: 30px;
     text-align: center;
     text-transform: capitalize;
    }
    .hb-heading p{
    font-weight: 300;
    color: #495057;
    padding: 20px;
    }
  
  
   
  
    .p-s-text h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
    }
    .p-s-text p{
        width: 70%;
        margin: auto;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 10px;
    }
  
  
  .puppies-container{
    margin: auto;
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-items: right;
  }
  
  .puppies-box{
  width: 100%;
  height: auto;
    border: 1px solid #cccccc;
  
    position: relative;
    background-color: #f7f7f8;
  
  
  }
  .puppies-box img{
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  }
  .puppies-box h3{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  }
  .puppies-box p{
  height: 200px;
  font-size: 15px;
  line-height: 24px;
  padding: 10px;
  border-bottom: 2px solid #cccccc;
  }
  
  
  
  
    .p-b-link-container{
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #dadce0;
  
    }
    .p-b-link-container a{
       border: 1px solid #cccccc;
       background-color: #066ff0;
       color: #fff;
       width: 100%;
       padding: 5px;
       border: 1px solid #6c6c6c;
       margin: 10px;
       border-radius: 5px;
       text-align: left;
       font-size: 15px;
       
  
    }
  
    .p-b-link-container a img{
      width: 20px;
      height: 20px;
    margin-right: 10px;
    padding: 0;
    float: left;
    }
  
    .breeder-owner-container{
      width: 80%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-evenly;
    }
  
    .b-o-text{
      display: inline;
      margin: auto;
      padding-right: 100px;
    }
    .b-o-text h2{
      font-size: 50px;
      font-weight: 300;
      padding: 10px;
      margin: auto;
    }
    .b-o-text p{
      font-size: 18px;
    padding: 10px;
    }
  
    .b-o-box-container{
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }
    a .b-o-box {
      padding: 20px;
      border: 1px solid #dadce0;
      margin: 10px;
      width: 300px;
      height: 370px;
  
    }
    .b-o-box img{
      width: 70px;
      height: 70px;
      margin: 20px;
    }
    .b-o-box h4{
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
   .right-arrow{
    fill: #1a73e8;
    float: right;
    height: 16px;
    margin: 0 24px;
    right: 24px;
    width: 16px;
    bottom: 0;
    }
   .right-arrow img{
    width: 30px;
    }
  
    .abt-dbs-container{
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin: auto;
      padding: 10px;
    }
  
    .abt-dbs-text{
      margin: auto;
      width: auto;
      padding-right: 100px;
    }
    
    .abt-dbs-text h3{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
    }
    .abt-dbs-text P{
      font-size: 18px;
      padding: 20px;
      font-weight: 300;
    }
  
  
    .abt-dbs-box{
      width: 100%;
      margin: auto;
    }
    .abt-dbs-box h4{
     font-size: 20px;
     font-weight: 400;
     padding: 10px;
     padding-top: 0;
    }
    .abt-dbs-box p{
     font-size: 16px;
     font-weight: 400;
     padding: 10px;
     border-bottom: 1px solid #066ff0;
     margin-bottom: 20px;
    }
    .abt-dbs-box img{
      width: 70px;
      height: 70px;
      margin: 10px;
      border: 1px solid #066ff0;
      border-radius: 5px;
      padding: 5px;
    }
  
    .puppies-booking-form-section{
      width: 80%;
      margin: auto;
    }
  
    .puppies-booking-form-section h2{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
      text-align: center;
    }
    .puppies-booking-form-section p{
      font-size: 18px;
      padding: 20px;
      text-align: center;
    }
    .pbf-container{
      display: flex;
      justify-content: space-evenly;
      padding: 20px;
    }
    .pbf-box{
      width:100%;
      height: 800px;
    }
    .pbf-box iframe{
      width: 100%;
      height: 100%;
      border: none;
  
    }
  
  .serv-city{
    width: 90%;
    margin: auto;
  }
  .serv-city h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  }
  
    .sc-box{
      width: 120px;
      height: auto;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
      border-radius: 5px;
      
    }
    .sc-box img{
      width: 100%;
      height: auto;
    }
  
  
    .s-c-container{
  
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }

        /*area*/  

.areapuppy {
  padding: 20px;
}
.areapuppy h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

.pup-from-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
text-align: center;
}
  
    .top-artical-section h2{
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
    }
    .t-a-container{
      width: 95%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
    .t-a-box{
      width: 100%;
      height: 100%;
      border: 1px solid #6c6c6c;
      margin: auto;
      border-radius:10px;
      border-top: none;
  
    }
    .t-a-box img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #616161;
      border-radius: 10px 10px 0px 0px;
  
    }
    .t-a-box h5{
      font-size: 18px;
      font-weight: 300;
      padding: 5px;
      text-align: center;
  
    }
    .t-a-box h6{
      font-size: 16px;
      color: #fff;
      font-weight: 400;
    background-color: #1a73e8;
  padding: 5px;
  text-align: center;
  
  
    }
  
  
  
  
    .reviews-section h2{
      font-size: 50px;
      font-weight: 300;
      padding: 30px;
    }
    .reviews-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
  
    .reviews-box{
      border: 1px solid #6c6c6c;
      padding: 20px;
    }
  
    .reviews-box h6{
      font-size: 20px;
      padding: 0px;
      text-align: center;
      font-weight: 400;
    }
    .reviews-box p{
      font-size: 16px;
      padding: 5px;
    }
    .footer-section{
      background-color: #F7F7F8;
      padding: 20px;
  position: relative;
      
    }
    .footer-container{
      display: inline;
      width: 80%;
    }
    .footer-container a{
     color: #6c6c6c;
    }
    .footer-container h3{
     font-size: 20px;
     padding-right: 50px;
     padding: 20px;
  
    }
    .social-icon-container{
      display: flex;
    width: 80%;
    border-bottom: 1px solid #80868b;
    margin: 10px auto;
    padding-bottom: 20px;
    }
    .social-icon img{
      width: 25px;
      height: 25px;
      margin-left: 10px;
      margin-top: 20px;
    }
  
  
    .logo-links-container{
      display: flex;
      width: 80%;
      border-bottom: 1px solid #80868b;
      margin: auto;
      padding-bottom: 20px;
    }
    .logo-links-container h3{
      color: #066ff0;
      font-family: 'Pacifico', cursive;
      font-weight: 100;
    }
  
    .logo-links-container ul{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
    .logo-links-container li{
      list-style: none;
      display: inline;
      margin-left: 50px;
    }
  
    .contact-container{
      display: flex;
  flex-direction: row;
      width: 80%;
      margin: auto;
      padding-bottom: 20px;
    }
  
    .contact-container p {
      list-style: none;
      display: inline;
      margin-left: 150px;
      padding-top: 20px;
      color: #6c6c6c ;
    }
    .contact-container  a{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
  
    footer p{
  
      text-align: center;
      padding: 20px;
      border-top: 1px solid #6c6c6c;
      background-color: #F7F7F8;
      color: #066ff0;
    
    }
  
    footer a{
      font-size: 20px;
      color: #066ff0;
    
    }
  
  
  
    /*breederpage*/
  .dog-breeder-banner{
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
      height: 650px;
      padding-top: 30px;
      position: relative;
      padding-top: 140px;
  }
  
  .db-photo{
      width: auto;
      height: 500px;
  }
  
  .dog-breeder-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }
  
  .db-heading{
    width: 50%;
    height: 200px;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
  }
  .db-heading h1{
   font-size: 40px;
   font-weight: 300;
   padding: 10px;
   text-align: center;
   text-transform: capitalize;
  }
  .db-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  .db-block-section h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
  }
  
  .db-block-container{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }
  .db-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #6c6c6c;
    padding: 5px;
    border-radius: 5px;
  }
  .db-block img{
  margin: 20px;
  width: 70px;
  height: 70px;
  }
  .db-block h2{
  font-size: 20px;
  padding: 10px;
  }
  .db-block p{
  font-size: 16px;
  padding: 10px;
  }
  .db-block a{
  font-size: 16px;
  padding: 10px;
  background-color: #066ff0;
  border-radius: 5px;
  color: #fff;
  }
  
  .qr-code-container{
  margin: auto;
  width: 100%;
  }
  .qr-photo{
    width: 300px;
    height: auto;
    margin: auto;
  }
  
  .qr-photo img{
    width: 100%;
    height: auto;
  }
  
  
  .dw-q-section h2{
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
  }
  
  
  .dw-q-box{
    width: 60%;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .dw-q-box h3{
    font-size: 36px;
    font-weight: 400;
    padding: 10px;
    text-align: left;
  }
  .dw-q-box p{
    width: 80%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 10px;
    text-align: left;
  }
  
  /*artical-page*/
  
  
  
  .dog-art-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .dog-artical-box{
    width: 100%;
    height: auto;
    margin: auto;
    border-radius:10px;
    border-top: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  
  }
  .dog-artical-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #1a73e8;
    border-radius: 10px 10px 0px 0px;
  }
  .dog-artical-box h2 :hover{
    text-decoration: underline;
  }
  .dog-artical-box h2 a{
    color: #272727;
  }
  .dog-artical-box h2{
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    text-align: center;
    color: #272727;
  }
  .read-more img{
    width: 25px;
    height: 25px;
    border: none;
  
  }
  .read-more{
   display: flex;
  padding: 10px;
  width: auto;
  float: right;
  color: #1a73e8;
  }
  
  .pagination {
    display: inline-block;
    display: flex;
    justify-content: end;
    margin: 50px;
  
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  .pagination a.active {
    background-color: #066ff0;
    color: white;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}
  /*artical-page*/
  
  
  /*breed page*/
  .dog-breed-banner{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding-top: 30px;
    position: relative;
    padding-top: 140px;
  }
  
  
  .dog-breed-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  }
  
  .db-h3heading{
  width: 50%;
  height: 150px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, 30%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0px 0px ;
  }
  .db-h3heading h3{
  font-size: 30px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .db-h3heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  /*breed page*/
  
  .breed-orgin img{
    width: 100px;
    height: 500px;
  }
  
  .bg-row{
    width: 100px;
    height: 100px;
    background-color: #80868b;
    border: 1px solid black;
  }
  .bg-column{
    width: 100px;
    height: 100px;
    background-color: #495057;
  }
  
  .breed-grid-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  
  
  
  .br-inf-grid-container{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 20px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .br-in-box{
    width: auto;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .br-in-box img{
   width: 50px;
   height: 50px;
   margin: 10px;
  }
  .br-in-box h3{
   padding: 5px;
   font-size: 20px;
   font-weight: 400;
  }
  
  .p-f-s-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .pfs-box {
   width: 100%;
   height: 100%;
  
   border-top: none;
   border-radius: 10px 10px 10px 10px;
   box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .pfs-box img{
   width: 100%;
   height: 100%;
   border-radius: 10px 10px 0px 0px;
  }
  .pfs-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .call-btn p{
  padding: 5px;
  border-radius: 5px;
  background-color: #066ff0;
  color: #fff;
  margin: 10px;
  }
  
  
  .breed-info-container{
    padding: 20px;
  
  }
  
  .fbox{
    width: 100%;
    margin: auto;
    text-align: left;
    padding: 20px;
  }
  .fbox p{
    width: 60%;
    font-size: 18px;
    text-align: center;
    margin: auto;
    line-height: 26px;
  }
  .art-head{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    text-transform: capitalize;
    padding: 20px;
  }
  
  .sbox {
  width: 70%;
  margin: auto;
  text-align: center;
  padding: 20px;
  }
  .sbox h3{
    font-size: 30px;
    font-weight: 300;
    width: 100%;
  text-align: left;
  padding: 10px;
  margin: auto;
  }
  .sbox p{
    width: auto;
  text-align: left;
  padding: 10px;
  }
  
  
  
  
  
  
  .p-f-s-section h1{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    padding: 20px;
  }
  .cb-box{
    padding: 10px;
  }
  .cb-box h4{
    padding: 5px;
    font-size: 18px;
    font-weight: 400;
  }
  
  
  .cb-box p{
    padding: 5px;
    font-size: 16px;
    
  }
  .cb-box-pro{
  width: 50%;
  height: auto;
  margin: auto;
  padding: 10px;
  margin: 20px;
  border-bottom: 1px solid #1a73e8;
  }
  .cbb-p-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    width: auto;
    height: auto;
   line-height: 0px;
   padding: 10px;
  
  }
  
  .cbb-p-container img {
    width: 30px;
    height: 30px;
  
  }
  
  /*blog-articals*/
  .dog-artical-banner{
    display: flex;
  flex-direction: column;
    width: 90%;
    height: 100%;
    padding-top: 30px;
    padding-top: 140px;
    margin: auto;
  }
  
  .da-photo{
    width: auto;
    height: 500px;
  }
  
  .dog-artical-banner img{
   padding: 20px;
   width: 100%;
   height: 550px;
   object-fit: cover;
  }
  
  .da-heading{
  width:80%;
  height: 200px;
  margin: auto;
   
  }
  .da-heading h1{
  font-size: 50px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .da-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  text-align: center;
  }
  .top-ten-box{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  .top-ten-box img{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  
  
  .top-ten-section{
  width: 80%;
  text-align: center;
  
  }
  .top-ten-container{
  display: flex;
  flex-direction: column;
  margin: 20px;
  
  }
  .top-sec-container{
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  
  }
  .top-box{
  width: 80%;
  height: auto;
  padding: 20px;
  margin: 20px;
  border-bottom: 2px solid #066ff0;
  position: relative;
  }
  .top-box img{
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  }
  .top-box h2{
  font-size: 25px;
  padding: 20px;
  font-weight: 400;
  }
  .top-box p{
  padding: 10px;
  margin-bottom: 10px;
  }
  .top-box a{
  padding: 10px;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 5px;
  
  }
  
  
  .blog-heading{
    width: 80%;
    margin: auto;
  } 
  .blog-heading h1{
    font-size: 50px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
  }
  .blog-heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    text-align: center;
    }
  
  
    .blog-head{
      width:70%;
      height: auto;
      margin: auto;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .blog-head h2{
      font-size: 30px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    }
    .blog-head h3{
      font-size: 25px;
    font-weight: 400;
    padding: 10px;
    padding-bottom: 0;
    text-align: left;
    text-transform: capitalize;
    }
    .blog-head p{
      font-size: 18px;
    font-weight: 300;
    padding: 10px;
    padding-top: 5px;
    text-align: left;
    text-transform: capitalize;
    }
  
    .blog-head ul{
      padding: 10px 10px 10px 30px;
    }
    .blog-head li{
      padding: 5px;
      list-style: decimal;
    }
  
  
  
  
  
  
  
  
  
  .accordion-container {
  margin: 0 auto;
  padding: 4rem;
  width: 60rem;
  }
  
  .accordion-container h2{
  text-align: center;
  font-size: 30px;
  }
  
  .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #1a73e8;
  }
  
  .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
  cursor: pointer;
  color: #1a73e8;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
  cursor: pointer;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  }
  
  .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  }
  
  .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  }
  .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
  color: #1a73e8;
  }
  .accordion button[aria-expanded='true'] .icon::after {
  width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  }
  /*blog-articals*/
  
  
  
  
  
  
  
  /*city page*/
  .city-pup-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .city-pup{
  padding: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  width: 100%;
  height: auto;
  }
  .city-pup img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  }
  .city-pup h2{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 5px;
  }
  /*city page*/
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {


  .top-header{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    margin: auto;
    border-bottom: 1px solid #ececec;
    position: fixed;
    z-index: 200;
    background-color: #fff;
  }
  
  .logo a{
    display: flex;
    align-items: baseline;
    padding: 10px;
  }
  .logo a img{
    width:40px;
    height: 40px;
  
  
  }
  .logo a p{
  
   font-size: 35px;
   color: #066ff0;
   font-weight: 100;
   font-family: 'Borel', cursive;
   padding-left: 10px;
   font-family: 'Pacifico', cursive;
  
  }
  .contact-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
  }
  .contact-link{
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .contact-link img{
    width: 30px;
    height: 30px;
   margin: auto;
  }
  .contact-link p{
  padding-left: 10px;
  }
  
  /*mobile navbar*/
  .hamburger-menu {
    display: none;
  }
  
  #menu__toggle {
    opacity: 0;
  
  }
  
  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  #menu__toggle:checked~.menu__box {
    left: 0 !important;
  }
  
  .menu__btn {
    position: relative;
    top: 90px;
    right: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
  }
  
  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: .25s;
  }
  
  .menu__btn>span::before {
    content: '';
    top: -8px;
  }
  
  .menu__btn>span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    top: 150px;
    left: -100%;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 30px 0;
    list-style: none;
    background-color: #00FFFFFF;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    text-align: center;
    border-radius: 0px 5px 10px 0px
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  
  .menu__item:hover {
    background-color: #f1f1f2;
  }
  
  /*mobile navbar*/
  
  
  
    .page-nav {
      width: 100%;
      position: fixed;
      margin-top: 80px;
      z-index: 100;
      background-color: #fff;
      display: block;
    }
    .page-nav ul{
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #ececec;
  list-style: none;
    }
    .page-nav li{
  list-style: none;
  padding-left: 50px;
  list-style: none;
  
    }
  
    .page-nav li a {
      padding: 20px;
      text-transform: capitalize;
      color: #80868b;
      list-style: none;
    }
  
  
    .home-banner{
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        height: 750px;
        position: relative;
        padding-top: 140px;
    
    }
  
    .hb-photo{
        width: auto;
        height: 500px;
    }
   
    .home-banner img{
       padding: 20px;
       width: 100%;
       height: auto;
       object-fit: cover;
    }
  
    .hb-heading{
      width: 50%;
        position: absolute;
        top: 53%;
        left: 30%;
        transform: translate(-60%, -35%);
        background-color: #fff;
        padding: 50px;
    }
    .hb-heading h1{
     font-size: 50px;
     font-weight: 300;
     padding: 30px;
     text-align: center;
     text-transform: capitalize;
    }
    .hb-heading p{
    font-weight: 300;
    color: #495057;
    padding: 20px;
    }
  
  
   
  
    .p-s-text h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
    }
    .p-s-text p{
        width: 70%;
        margin: auto;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 10px;
    }
  
  
  .puppies-container{
    margin: auto;
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-items: right;
  }
  
  .puppies-box{
  width: 100%;
  height: auto;
    border: 1px solid #cccccc;
  
    position: relative;
    background-color: #f7f7f8;
  
  
  }
  .puppies-box img{
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  }
  .puppies-box h3{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  }
  .puppies-box p{
  height: 200px;
  font-size: 15px;
  line-height: 24px;
  padding: 10px;
  border-bottom: 2px solid #cccccc;
  }
  
  
  
  
    .p-b-link-container{
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #dadce0;
  
    }
    .p-b-link-container a{
       border: 1px solid #cccccc;
       background-color: #066ff0;
       color: #fff;
       width: 100%;
       padding: 4px;
       border: 1px solid #6c6c6c;
       margin: 10px;
       border-radius: 5px;
       text-align: left;
       font-size: 15px;
       
  
    }
  
    .p-b-link-container a img{
      width: 20px;
      height: 20px;
    margin-right: 10px;
    padding: 0;
    float: left;
    }
  
    .breeder-owner-container{
      width: 80%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-evenly;
    }
  
    .b-o-text{
      display: inline;
      margin: auto;
      padding-right: 100px;
    }
    .b-o-text h2{
      font-size: 50px;
      font-weight: 300;
      padding: 10px;
      margin: auto;
    }
    .b-o-text p{
      font-size: 18px;
    padding: 10px;
    }
  
    .b-o-box-container{
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }
    a .b-o-box {
      padding: 20px;
      border: 1px solid #dadce0;
      margin: 10px;
      width: 300px;
      height: 370px;
  
    }
    .b-o-box img{
      width: 70px;
      height: 70px;
      margin: 20px;
    }
    .b-o-box h4{
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
   .right-arrow{
    fill: #1a73e8;
    float: right;
    height: 16px;
    margin: 0 24px;
    right: 24px;
    width: 16px;
    bottom: 0;
    }
   .right-arrow img{
    width: 30px;
    }
  
    .abt-dbs-container{
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin: auto;
      padding: 10px;
    }
  
    .abt-dbs-text{
      margin: auto;
      width: auto;
      padding-right: 100px;
    }
    
    .abt-dbs-text h3{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
    }
    .abt-dbs-text P{
      font-size: 18px;
      padding: 20px;
      font-weight: 300;
    }
  
  
    .abt-dbs-box{
      width: 100%;
      margin: auto;
    }
    .abt-dbs-box h4{
     font-size: 20px;
     font-weight: 400;
     padding: 10px;
     padding-top: 0;
    }
    .abt-dbs-box p{
     font-size: 16px;
     font-weight: 400;
     padding: 10px;
     border-bottom: 1px solid #066ff0;
     margin-bottom: 20px;
    }
    .abt-dbs-box img{
      width: 70px;
      height: 70px;
      margin: 10px;
      border: 1px solid #066ff0;
      border-radius: 5px;
      padding: 5px;
    }
  
    .puppies-booking-form-section{
      width: 80%;
      margin: auto;
    }
  
    .puppies-booking-form-section h2{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
      text-align: center;
    }
    .puppies-booking-form-section p{
      font-size: 18px;
      padding: 20px;
      text-align: center;
    }
    .pbf-container{
      display: flex;
      justify-content: space-evenly;
      padding: 20px;
    }
    .pbf-box{
      width:100%;
      height: 800px;
    }
    .pbf-box iframe{
      width: 100%;
      height: 100%;
      border: none;
  
    }
  
  .serv-city{
    width: 90%;
    margin: auto;
  }
  .serv-city h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  }
  
    .sc-box{
      width: 150px;
      height: auto;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
      border-radius: 5px;
      
    }
    .sc-box img{
      width: 100%;
      height: auto;
    }
  
  
    .s-c-container{
  
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }



            /*area*/  

.areapuppy {
  padding: 20px;
}
.areapuppy h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/

.pup-from-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
text-align: center;
}
  
    .top-artical-section h2{
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
    }
    .t-a-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
    .t-a-box{
      width: 100%;
      height: 100%;
      border: 1px solid #6c6c6c;
      margin: auto;
      border-radius:10px;
      border-top: none;
  
    }
    .t-a-box img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #616161;
      border-radius: 10px 10px 0px 0px;
  
    }
    .t-a-box h5{
      font-size: 18px;
      font-weight: 300;
      padding: 5px;
      text-align: center;
  
    }
    .t-a-box h6{
      font-size: 16px;
      color: #fff;
      font-weight: 400;
    background-color: #1a73e8;
  padding: 5px;
  text-align: center;
  
  
    }
  
  
  
  
    .reviews-section h2{
      font-size: 50px;
      font-weight: 300;
      padding: 30px;
    }
    .reviews-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
  
    .reviews-box{
      border: 1px solid #6c6c6c;
      padding: 20px;
    }
  
    .reviews-box h6{
      font-size: 20px;
      padding: 20px;
      text-align: center;
      font-weight: 400;
    }
    .reviews-box p{
      font-size: 16px;
      padding: 20px;
    }
    .footer-section{
      background-color: #F7F7F8;
      padding: 20px;
  position: relative;
      
    }
    .footer-container{
      display: inline;
      width: 80%;
    }
    .footer-container a{
     color: #6c6c6c;
    }
    .footer-container h3{
     font-size: 20px;
     padding-right: 50px;
     padding: 20px;
  
    }
    .social-icon-container{
      display: flex;
    width: 80%;
    border-bottom: 1px solid #80868b;
    margin: 10px auto;
    padding-bottom: 20px;
    }
    .social-icon img{
      width: 25px;
      height: 25px;
      margin-left: 10px;
      margin-top: 20px;
    }
  
  
    .logo-links-container{
      display: flex;
      width: 80%;
      border-bottom: 1px solid #80868b;
      margin: auto;
      padding-bottom: 20px;
    }
    .logo-links-container h3{
      color: #066ff0;
      font-family: 'Pacifico', cursive;
      font-weight: 100;
    }
  
    .logo-links-container ul{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
    .logo-links-container li{
      list-style: none;
      display: inline;
      margin-left: 50px;
    }
  
    .contact-container{
      display: flex;
  flex-direction: row;
      width: 80%;
      margin: auto;
      padding-bottom: 20px;
    }
  
    .contact-container p {
      list-style: none;
      display: inline;
      margin-left: 150px;
      padding-top: 20px;
      color: #6c6c6c ;
    }
    .contact-container  a{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
  
    footer p{
  
      text-align: center;
      padding: 20px;
      border-top: 1px solid #6c6c6c;
      background-color: #F7F7F8;
      color: #066ff0;
    
    }
  
    footer a{
      font-size: 20px;
      color: #066ff0;
    
    }
  
  
  
    /*breederpage*/
  .dog-breeder-banner{
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
      height: 650px;
      padding-top: 30px;
      position: relative;
      padding-top: 140px;
  }
  
  .db-photo{
      width: auto;
      height: 500px;
  }
  
  .dog-breeder-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }
  
  .db-heading{
    width: 50%;
    height: 200px;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
  }
  .db-heading h1{
   font-size: 40px;
   font-weight: 300;
   padding: 10px;
   text-align: center;
   text-transform: capitalize;
  }
  .db-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  .db-block-section h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
  }
  
  .db-block-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }
  .db-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #6c6c6c;
    padding: 20px;
    border-radius: 5px;
  }
  .db-block img{
  margin: 20px;
  width: 70px;
  height: 70px;
  }
  .db-block h2{
  font-size: 30px;
  padding: 20px;
  }
  .db-block p{
  font-size: 16px;
  padding:10px;
  }
  .db-block a{
  font-size: 16px;
  padding: 10px;
  background-color: #066ff0;
  border-radius: 5px;
  color: #fff;
  }
  
  .qr-code-container{
  margin: auto;
  width: 100%;
  }
  .qr-photo{
    width: 300px;
    height: auto;
    margin: auto;
  }
  
  .qr-photo img{
    width: 100%;
    height: auto;
  }
  
  
  .dw-q-section h2{
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
  }
  
  
  .dw-q-box{
    width: 60%;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .dw-q-box h3{
    font-size: 36px;
    font-weight: 400;
    padding: 10px;
    text-align: left;
  }
  .dw-q-box p{
    width: 80%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 10px;
    text-align: left;
  }
  
  /*artical-page*/
  
  
  
  .dog-art-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .dog-artical-box{
    width: 100%;
    height: auto;
    margin: auto;
    border-radius:10px;
    border-top: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  
  }
  .dog-artical-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #1a73e8;
    border-radius: 10px 10px 0px 0px;
  }
  .dog-artical-box h2 :hover{
    text-decoration: underline;
  }
  .dog-artical-box h2 a{
    color: #272727;
  }
  .dog-artical-box h2{
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    text-align: center;
    color: #272727;
  }
  .read-more img{
    width: 25px;
    height: 25px;
    border: none;
  
  }
  .read-more{
   display: flex;
  padding: 10px;
  width: auto;
  float: right;
  color: #1a73e8;
  }
  
  .pagination {
    display: inline-block;
    display: flex;
    justify-content: end;
    margin: 50px;
  
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  .pagination a.active {
    background-color: #066ff0;
    color: white;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}
  /*artical-page*/
  
  
  /*breed page*/
  .dog-breed-banner{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding-top: 30px;
    position: relative;
    padding-top: 140px;
  }
  
  
  .dog-breed-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  }
  
  .db-h3heading{
  width: 70%;
  height: 200px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, 30%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0px 0px ;
  }
  .db-h3heading h3{
  font-size: 40px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .db-h3heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  /*breed page*/
  
  .breed-orgin img{
    width: 100px;
    height: 500px;
  }
  
  .bg-row{
    width: 100px;
    height: 100px;
    background-color: #80868b;
    border: 1px solid black;
  }
  .bg-column{
    width: 100px;
    height: 100px;
    background-color: #495057;
  }
  
  .breed-grid-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  
  
  
  .br-inf-grid-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .br-in-box{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .br-in-box img{
   width: 50px;
   height: 50px;
  }
  .br-in-box h3{
   padding: 5px;
   font-size: 20px;
   font-weight: 400;
  }
  
  .p-f-s-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .pfs-box {
   width: 100%;
   height: 100%;
  
   border-top: none;
   border-radius: 10px 10px 10px 10px;
   box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .pfs-box img{
   width: 100%;
   height: 100%;
   border-radius: 10px 10px 0px 0px;
  }
  .pfs-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .call-btn p{
  padding: 5px;
  border-radius: 5px;
  background-color: #066ff0;
  color: #fff;
  margin: 10px;
  }
  
  
  .breed-info-container{
    padding: 20px;
  
  }
  
  .fbox{
    width: 100%;
    margin: auto;
    text-align: left;
    padding: 20px;
  }
  .fbox p{
    width: 60%;
    font-size: 18px;
    text-align: center;
    margin: auto;
    line-height: 26px;
  }
  .art-head{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    text-transform: capitalize;
    padding: 20px;
  }
  
  .sbox {
  width: 70%;
  margin: auto;
  text-align: center;
  padding: 20px;
  }
  .sbox h3{
    font-size: 30px;
    font-weight: 300;
    width: 100%;
  text-align: left;
  padding: 10px;
  margin: auto;
  }
  .sbox p{
    width: auto;
  text-align: left;
  padding: 10px;
  }
  
  
  
  
  
  
  .p-f-s-section h1{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    padding: 20px;
  }
  .cb-box{
    padding: 10px;
  }
  .cb-box h4{
    padding: 5px;
    font-size: 18px;
    font-weight: 400;
  }
  
  
  .cb-box p{
    padding: 5px;
    font-size: 16px;
    
  }
  .cb-box-pro{
  width: 50%;
  height: auto;
  margin: auto;
  padding: 10px;
  margin: 20px;
  border-bottom: 1px solid #1a73e8;
  }
  .cbb-p-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    width: auto;
    height: auto;
   line-height: 0px;
   padding: 10px;
  
  }
  
  .cbb-p-container img {
    width: 30px;
    height: 30px;
  
  }
  
  /*blog-articals*/
  .dog-artical-banner{
    display: flex;
  flex-direction: column;
    width: 90%;
    height: 100%;
    padding-top: 30px;
    padding-top: 140px;
    margin: auto;
  }
  
  .da-photo{
    width: auto;
    height: 500px;
  }
  
  .dog-artical-banner img{
   padding: 20px;
   width: 100%;
   height: 550px;
   object-fit: cover;
  }
  
  .da-heading{
  width:80%;
  height: 200px;
  margin: auto;
   
  }
  .da-heading h1{
  font-size: 50px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .da-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  text-align: center;
  }
  .top-ten-box{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  .top-ten-box img{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  
  
  .top-ten-section{
  width: 80%;
  text-align: center;
  
  }
  .top-ten-container{
  display: flex;
  flex-direction: column;
  margin: 20px;
  
  }
  .top-sec-container{
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  
  }
  .top-box{
  width: 80%;
  height: auto;
  padding: 20px;
  margin: 20px;
  border-bottom: 2px solid #066ff0;
  position: relative;
  }
  .top-box img{
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  }
  .top-box h2{
  font-size: 25px;
  padding: 20px;
  font-weight: 400;
  }
  .top-box p{
  padding: 10px;
  margin-bottom: 10px;
  }
  .top-box a{
  padding: 10px;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 5px;
  
  }
  
  
  .blog-heading{
    width: 80%;
    margin: auto;
  } 
  .blog-heading h1{
    font-size: 50px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
  }
  .blog-heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    text-align: center;
    }
  
  
    .blog-head{
      width:70%;
      height: auto;
      margin: auto;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .blog-head h2{
      font-size: 30px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    }
    .blog-head h3{
      font-size: 25px;
    font-weight: 400;
    padding: 10px;
    padding-bottom: 0;
    text-align: left;
    text-transform: capitalize;
    }
    .blog-head p{
      font-size: 18px;
    font-weight: 300;
    padding: 10px;
    padding-top: 5px;
    text-align: left;
    text-transform: capitalize;
    }
  
    .blog-head ul{
      padding: 10px 10px 10px 30px;
    }
    .blog-head li{
      padding: 5px;
      list-style: decimal;
    }
  
  
  
  
  
  
  
  
  
  .accordion-container {
  margin: 0 auto;
  padding: 4rem;
  width: 60rem;
  }
  
  .accordion-container h2{
  text-align: center;
  font-size: 30px;
  }
  
  .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #1a73e8;
  }
  
  .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
  cursor: pointer;
  color: #1a73e8;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
  cursor: pointer;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  }
  
  .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  }
  
  .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  }
  .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
  color: #1a73e8;
  }
  .accordion button[aria-expanded='true'] .icon::after {
  width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  }
  /*blog-articals*/
  
  
  
  
  
  
  
  /*city page*/
  .city-pup-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .city-pup{
  padding: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  width: 100%;
  height: auto;
  }
  .city-pup img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  }
  .city-pup h2{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 5px;
  }
  /*city page*/
  

}

/* Large devices (laptops/desktops, 1600px and up) */
@media only screen and (min-width: 1600px) {
  .top-header{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    margin: auto;
    border-bottom: 1px solid #ececec;
    position: fixed;
    z-index: 200;
    background-color: #fff;
  }
  
  .logo a{
    display: flex;
    align-items: baseline;
    padding: 10px;
  }
  .logo a img{
    width:40px;
    height: 40px;
  
  
  }
  .logo a p{
  
   font-size: 35px;
   color: #066ff0;
   font-weight: 100;
   font-family: 'Borel', cursive;
   padding-left: 10px;
   font-family: 'Pacifico', cursive;
  
  }
  .contact-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
  }
  .contact-link{
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .contact-link img{
    width: 30px;
    height: 30px;
   margin: auto;
  }
  .contact-link p{
  padding-left: 10px;
  }
  
  /*mobile navbar*/
  .hamburger-menu {
    display: none;
  }
  
  #menu__toggle {
    opacity: 0;
  
  }
  
  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
  }
  
  #menu__toggle:checked+.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  #menu__toggle:checked~.menu__box {
    left: 0 !important;
  }
  
  .menu__btn {
    position: relative;
    top: 90px;
    right: 30px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 111;
  }
  
  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: .25s;
  }
  
  .menu__btn>span::before {
    content: '';
    top: -8px;
  }
  
  .menu__btn>span::after {
    content: '';
    top: 8px;
  }
  
  .menu__box {
    display: block;
    position: fixed;
    top: 150px;
    left: -100%;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 30px 0;
    list-style: none;
    background-color: #00FFFFFF;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
    transition-duration: .25s;
    text-align: center;
    border-radius: 0px 5px 10px 0px
  }
  
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  
  .menu__item:hover {
    background-color: #f1f1f2;
  }
  
  /*mobile navbar*/
  
  
  
    .page-nav {
      width: 100%;
      position: fixed;
      margin-top: 80px;
      z-index: 100;
      background-color: #fff;
      display: block;
    }
    .page-nav ul{
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #ececec;
  list-style: none;
    }
    .page-nav li{
  list-style: none;
  padding-left: 50px;
  list-style: none;
  
    }
  
    .page-nav li a {
      padding: 20px;
      text-transform: capitalize;
      color: #80868b;
      list-style: none;
    }
  
  
    .home-banner{
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        height: 750px;
        position: relative;
        padding-top: 140px;
    
    }
  
    .hb-photo{
        width: auto;
        height: 500px;
    }
   
    .home-banner img{
       padding: 20px;
       width: 100%;
       height: auto;
       object-fit: cover;
    }
  
    .hb-heading{
      width: 50%;
        position: absolute;
        top: 53%;
        left: 30%;
        transform: translate(-60%, -35%);
        background-color: #fff;
        padding: 50px;
    }
    .hb-heading h1{
     font-size: 50px;
     font-weight: 300;
     padding: 30px;
     text-align: center;
     text-transform: capitalize;
    }
    .hb-heading p{
    font-weight: 300;
    color: #495057;
    padding: 20px;
    }
  
  
   
  
    .p-s-text h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 20px;
    }
    .p-s-text p{
        width: 70%;
        margin: auto;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 10px;
    }
  
  
  .puppies-container{
    margin: auto;
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-items: right;
  }
  
  .puppies-box{
  width: 100%;
  height: auto;
    border: 1px solid #cccccc;
  
    position: relative;
    background-color: #f7f7f8;
  
  
  }
  .puppies-box img{
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 20px 20px 0px 0px;
  }
  .puppies-box h3{
  font-size: 25px;
  font-weight: 400;
  padding: 10px;
  }
  .puppies-box p{
  height: 200px;
  font-size: 15px;
  line-height: 24px;
  padding: 10px;
  border-bottom: 2px solid #cccccc;
  }
  
  
  
  
    .p-b-link-container{
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #dadce0;
  
    }
    .p-b-link-container a{
       border: 1px solid #cccccc;
       background-color: #066ff0;
       color: #fff;
       width: 100%;
       padding: 5px;
       border: 1px solid #6c6c6c;
       margin: 10px;
       border-radius: 5px;
       text-align: left;
       font-size: 15px;
       
  
    }
  
    .p-b-link-container a img{
      width: 20px;
      height: 20px;
    margin-right: 10px;
    padding: 0;
    float: left;
    }
  
    .breeder-owner-container{
      width: 80%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-evenly;
    }
  
    .b-o-text{
      display: inline;
      margin: auto;
      padding-right: 100px;
    }
    .b-o-text h2{
      font-size: 50px;
      font-weight: 300;
      padding: 10px;
      margin: auto;
    }
    .b-o-text p{
      font-size: 18px;
    padding: 10px;
    }
  
    .b-o-box-container{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }
    a .b-o-box {
      padding: 20px;
      border: 1px solid #dadce0;
      margin: 10px;
      width: 300px;
      height: 370px;
  
    }
    .b-o-box img{
      width: 70px;
      height: 70px;
      margin: 20px;
    }
    .b-o-box h4{
      font-size: 25px;
      font-weight: 300;
      padding: 20px;
    }
   .right-arrow{
    fill: #1a73e8;
    float: right;
    height: 16px;
    margin: 0 24px;
    right: 24px;
    width: 16px;
    bottom: 0;
    }
   .right-arrow img{
    width: 30px;
    }
  
    .abt-dbs-container{
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin: auto;
      padding: 10px;
    }
  
    .abt-dbs-text{
      margin: auto;
      width: auto;
      padding-right: 100px;
    }
    
    .abt-dbs-text h3{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
    }
    .abt-dbs-text P{
      font-size: 18px;
      padding: 20px;
      font-weight: 300;
    }
  
  
    .abt-dbs-box{
      width: 100%;
      margin: auto;
    }
    .abt-dbs-box h4{
     font-size: 20px;
     font-weight: 400;
     padding: 10px;
     padding-top: 0;
    }
    .abt-dbs-box p{
     font-size: 16px;
     font-weight: 400;
     padding: 10px;
     border-bottom: 1px solid #066ff0;
     margin-bottom: 20px;
    }
    .abt-dbs-box img{
      width: 70px;
      height: 70px;
      margin: 10px;
      border: 1px solid #066ff0;
      border-radius: 5px;
      padding: 5px;
    }
  
    .puppies-booking-form-section{
      width: 80%;
      margin: auto;
    }
  
    .puppies-booking-form-section h2{
      font-size: 50px;
      padding: 20px;
      font-weight: 300;
      text-align: center;
    }
    .puppies-booking-form-section p{
      font-size: 18px;
      padding: 20px;
      text-align: center;
    }
    .pbf-container{
      display: flex;
      justify-content: space-evenly;
      padding: 20px;
    }
    .pbf-box{
      width:100%;
      height: 800px;
    }
    .pbf-box iframe{
      width: 100%;
      height: 100%;
      border: none;
  
    }
  
  .serv-city{
    width: 80%;
    margin: auto;
  }
  .serv-city h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  }
  
    .sc-box{
      width: 150px;
      height: auto;
      padding: 10px;
      text-align: center;
      text-transform: capitalize;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, .4);
      border-radius: 5px;
      
    }
    .sc-box img{
      width: 100%;
      height: auto;
    }
  
  
    .s-c-container{
  
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
    }





            /*area*/  

.areapuppy {
  padding: 20px;
}
.areapuppy h2{
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
  text-transform: capitalize;

}
#more {display: none;}

#myBtn{
  padding: 5px;
  background-color: #066ff0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}
/*area*/


.pup-from-section h2{
font-size: 50px;
font-weight: 300;
padding: 20px;
text-align: center;
}
  
    .top-artical-section h2{
  font-size: 50px;
  font-weight: 300;
  padding: 20px;
    }
    .t-a-container{
      width: 90%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
    .t-a-box{
      width: 100%;
      height: 100%;
      border: 1px solid #6c6c6c;
      margin: auto;
      border-radius:10px;
      border-top: none;
  
    }
    .t-a-box img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #616161;
      border-radius: 10px 10px 0px 0px;
  
    }
    .t-a-box h5{
      font-size: 18px;
      font-weight: 300;
      padding: 5px;
      text-align: center;
  
    }
    .t-a-box h6{
      font-size: 16px;
      color: #fff;
      font-weight: 400;
    background-color: #1a73e8;
  padding: 5px;
  text-align: center;
  
  
    }
  
  
  
  
    .reviews-section h2{
      font-size: 50px;
      font-weight: 300;
      padding: 30px;
    }
    .reviews-container{
      width: 80%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 30px;
      grid-row-gap: 10px;
      margin-top: 50px;
      margin-bottom: 20px;
      margin: auto;
    }
  
    .reviews-box{
      border: 1px solid #6c6c6c;
      padding: 20px;
    }
  
    .reviews-box h6{
      font-size: 20px;
      padding: 20px;
      text-align: center;
      font-weight: 400;
    }
    .reviews-box p{
      font-size: 16px;
      padding: 20px;
    }
    .footer-section{
      background-color: #F7F7F8;
      padding: 20px;
  position: relative;
      
    }
    .footer-container{
      display: inline;
      width: 80%;
    }
    .footer-container a{
     color: #6c6c6c;
    }
    .footer-container h3{
     font-size: 20px;
     padding-right: 50px;
     padding: 20px;
  
    }
    .social-icon-container{
      display: flex;
    width: 80%;
    border-bottom: 1px solid #80868b;
    margin: 10px auto;
    padding-bottom: 20px;
    }
    .social-icon img{
      width: 25px;
      height: 25px;
      margin-left: 10px;
      margin-top: 20px;
    }
  
  
    .logo-links-container{
      display: flex;
      width: 80%;
      border-bottom: 1px solid #80868b;
      margin: auto;
      padding-bottom: 20px;
    }
    .logo-links-container h3{
      color: #066ff0;
      font-family: 'Pacifico', cursive;
      font-weight: 100;
    }
  
    .logo-links-container ul{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
    .logo-links-container li{
      list-style: none;
      display: inline;
      margin-left: 50px;
    }
  
    .contact-container{
      display: flex;
  flex-direction: row;
      width: 80%;
      margin: auto;
      padding-bottom: 20px;
    }
  
    .contact-container p {
      list-style: none;
      display: inline;
      margin-left: 150px;
      padding-top: 20px;
      color: #6c6c6c ;
    }
    .contact-container  a{
      list-style: none;
      display: inline;
      margin-left: 50px;
      padding-top: 20px;
    }
  
    footer p{
  
      text-align: center;
      padding: 20px;
      border-top: 1px solid #6c6c6c;
      background-color: #F7F7F8;
      color: #066ff0;
    
    }
  
    footer a{
      font-size: 20px;
      color: #066ff0;
    
    }
  
  
  
    /*breederpage*/
  .dog-breeder-banner{
      display: flex;
      flex-direction: row-reverse;
      width: 100%;
      height: 650px;
      padding-top: 30px;
      position: relative;
      padding-top: 140px;
  }
  
  .db-photo{
      width: auto;
      height: 500px;
  }
  
  .dog-breeder-banner img{
     padding: 20px;
     width: 100%;
     height: auto;
     object-fit: cover;
  }
  
  .db-heading{
    width: 50%;
    height: 200px;
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -10%);
      background-color: #fff;
      padding: 20px;
      border-radius: 10px 10px 0px 0px ;
  }
  .db-heading h1{
   font-size: 50px;
   font-weight: 300;
   padding: 10px;
   text-align: center;
   text-transform: capitalize;
  }
  .db-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  .db-block-section h2{
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  padding: 30px;
  text-transform: capitalize;
  }
  
  .db-block-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    margin: auto;
  }
  .db-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #6c6c6c;
    padding: 20px;
    border-radius: 5px;
  }
  .db-block img{
  margin: 20px;
  width: 70px;
  height: 70px;
  }
  .db-block h2{
  font-size: 30px;
  padding: 20px;
  }
  .db-block p{
  font-size: 16px;
  padding: 20px;
  }
  .db-block a{
  font-size: 16px;
  padding: 10px;
  background-color: #066ff0;
  border-radius: 5px;
  color: #fff;
  }
  
  .qr-code-container{
  margin: auto;
  width: 100%;
  }
  .qr-photo{
    width: 300px;
    height: auto;
    margin: auto;
  }
  
  .qr-photo img{
    width: 100%;
    height: auto;
  }
  
  
  .dw-q-section h2{
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    padding: 30px;
    text-transform: capitalize;
  }
  
  
  .dw-q-box{
    width: 60%;
    margin: auto;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .dw-q-box h3{
    font-size: 36px;
    font-weight: 400;
    padding: 10px;
    text-align: left;
  }
  .dw-q-box p{
    width: 80%;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 10px;
    text-align: left;
  }
  
  /*artical-page*/
  
  
  
  .dog-art-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .dog-artical-box{
    width: 100%;
    height: auto;
    margin: auto;
    border-radius:10px;
    border-top: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  
  }
  .dog-artical-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #1a73e8;
    border-radius: 10px 10px 0px 0px;
  }
  .dog-artical-box h2 :hover{
    text-decoration: underline;
  }
  .dog-artical-box h2 a{
    color: #272727;
  }
  .dog-artical-box h2{
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    text-align: center;
    color: #272727;
  }
  .read-more img{
    width: 25px;
    height: 25px;
    border: none;
  
  }
  .read-more{
   display: flex;
  padding: 10px;
  width: auto;
  float: right;
  color: #1a73e8;
  }
  
  .pagination {
    display: inline-block;
    display: flex;
    justify-content: end;
    margin: 50px;
  
  }
  
  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
  }
  
  .pagination a.active {
    background-color: #066ff0;
    color: white;
  }
  
  .pagination a:hover:not(.active) {background-color: #ddd;}
  /*artical-page*/
  
  
  /*breed page*/
  .dog-breed-banner{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding-top: 30px;
    position: relative;
    padding-top: 140px;
  }
  
  
  .dog-breed-banner img{
   padding: 20px;
   width: 100%;
   height: auto;
   object-fit: cover;
  }
  
  .db-h3heading{
  width: 50%;
  height: 200px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 30%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0px 0px ;
  }
  .db-h3heading h3{
  font-size: 50px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .db-h3heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  }
  
  /*breed page*/
  
  .breed-orgin img{
    width: 100px;
    height: 500px;
  }
  
  .bg-row{
    width: 100px;
    height: 100px;
    background-color: #80868b;
    border: 1px solid black;
  }
  .bg-column{
    width: 100px;
    height: 100px;
    background-color: #495057;
  }
  
  .breed-grid-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  
  
  
  .br-inf-grid-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .br-in-box{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .br-in-box img{
   width: 50px;
   height: 50px;
  }
  .br-in-box h3{
   padding: 5px;
   font-size: 20px;
   font-weight: 400;
  }
  
  .p-f-s-container{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  .pfs-box {
   width: 100%;
   height: 100%;
  
   border-top: none;
   border-radius: 10px 10px 10px 10px;
   box-shadow: 0 3px 10px rgba(78, 2, 255, 0.2);
  }
  .pfs-box img{
   width: 100%;
   height: 100%;
   border-radius: 10px 10px 0px 0px;
  }
  .pfs-box a{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .call-btn p{
  padding: 5px;
  border-radius: 5px;
  background-color: #066ff0;
  color: #fff;
  margin: 10px;
  }
  
  
  .breed-info-container{
    padding: 20px;
  
  }
  
  .fbox{
    width: 100%;
    margin: auto;
    text-align: left;
    padding: 20px;
  }
  .fbox p{
    width: 60%;
    font-size: 18px;
    text-align: center;
    margin: auto;
    line-height: 26px;
  }
  .art-head{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    text-transform: capitalize;
    padding: 20px;
  }
  
  .sbox {
  width: 70%;
  margin: auto;
  text-align: center;
  padding: 20px;
  }
  .sbox h3{
    font-size: 30px;
    font-weight: 300;
    width: 100%;
  text-align: left;
  padding: 10px;
  margin: auto;
  }
  .sbox p{
    width: auto;
  text-align: left;
  padding: 10px;
  }
  
  
  
  
  
  
  .p-f-s-section h1{
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    padding: 20px;
  }
  .cb-box{
    padding: 10px;
  }
  .cb-box h4{
    padding: 5px;
    font-size: 18px;
    font-weight: 400;
  }
  
  
  .cb-box p{
    padding: 5px;
    font-size: 16px;
    
  }
  .cb-box-pro{
  width: 50%;
  height: auto;
  margin: auto;
  padding: 10px;
  margin: 20px;
  border-bottom: 1px solid #1a73e8;
  }
  .cbb-p-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
    width: auto;
    height: auto;
   line-height: 0px;
   padding: 10px;
  
  }
  
  .cbb-p-container img {
    width: 30px;
    height: 30px;
  
  }
  
  /*blog-articals*/
  .dog-artical-banner{
    display: flex;
  flex-direction: column;
    width: 90%;
    height: 100%;
    padding-top: 30px;
    padding-top: 140px;
    margin: auto;
  }
  
  .da-photo{
    width: auto;
    height: 500px;
  }
  
  .dog-artical-banner img{
   padding: 20px;
   width: 100%;
   height: 550px;
   object-fit: cover;
  }
  
  .da-heading{
  width:80%;
  height: 200px;
  margin: auto;
   
  }
  .da-heading h1{
  font-size: 50px;
  font-weight: 300;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  }
  .da-heading p{
  font-weight: 300;
  color: #495057;
  padding: 10px;
  text-align: center;
  }
  .top-ten-box{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  .top-ten-box img{
  width: 80%;
  padding: 20px;
  align-items: center;
  margin: auto;
  }
  
  
  .top-ten-section{
  width: 80%;
  text-align: center;
  
  }
  .top-ten-container{
  display: flex;
  flex-direction: column;
  margin: 20px;
  
  }
  .top-sec-container{
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  
  }
  .top-box{
  width: 80%;
  height: auto;
  padding: 20px;
  margin: 20px;
  border-bottom: 2px solid #066ff0;
  position: relative;
  }
  .top-box img{
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  }
  .top-box h2{
  font-size: 25px;
  padding: 20px;
  font-weight: 400;
  }
  .top-box p{
  padding: 10px;
  margin-bottom: 10px;
  }
  .top-box a{
  padding: 10px;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 5px;
  
  }
  
  
  .blog-heading{
    width: 80%;
    margin: auto;
  } 
  .blog-heading h1{
    font-size: 50px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
  }
  .blog-heading p{
    font-weight: 300;
    color: #495057;
    padding: 10px;
    text-align: center;
    }
  
  
    .blog-head{
      width:70%;
      height: auto;
      margin: auto;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .blog-head h2{
      font-size: 30px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    }
    .blog-head h3{
      font-size: 25px;
    font-weight: 400;
    padding: 10px;
    padding-bottom: 0;
    text-align: left;
    text-transform: capitalize;
    }
    .blog-head p{
      font-size: 18px;
    font-weight: 300;
    padding: 10px;
    padding-top: 5px;
    text-align: left;
    text-transform: capitalize;
    }
  
    .blog-head ul{
      padding: 10px 10px 10px 30px;
    }
    .blog-head li{
      padding: 5px;
      list-style: decimal;
    }
  
  
  
  
  
  
  
  
  
  .accordion-container {
  margin: 0 auto;
  padding: 4rem;
  width: 60rem;
  }
  
  .accordion-container h2{
  text-align: center;
  font-size: 30px;
  }
  
  .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  }
  
  .accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #1a73e8;
  }
  
  .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  }
  
  .accordion button:hover,
  .accordion button:focus {
  cursor: pointer;
  color: #1a73e8;
  }
  
  .accordion button:hover::after,
  .accordion button:focus::after {
  cursor: pointer;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  }
  
  .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  }
  
  .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  }
  
  .accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
  }
  .accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
  }
  
  .accordion button[aria-expanded='true'] {
  color: #1a73e8;
  }
  .accordion button[aria-expanded='true'] .icon::after {
  width: 0;
  }
  .accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  }
  /*blog-articals*/
  
  
  
  
  
  
  
  /*city page*/
  .city-pup-container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 30px;
    grid-row-gap:50px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin: auto;
  }
  
  .city-pup{
  padding: 5px;
  box-shadow: 0 3px 10px rgba(8, 123, 255, 0.2);
  width: 100%;
  height: auto;
  }
  .city-pup img{
  width: 100%;
  height: auto;
  border-radius: 5px;
  }
  .city-pup h2{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 5px;
  }
  /*city page*/
  
}