@import url('https://fonts.googleapis.com/css?family=Just+Another+Hand');

/*FAQS AT BOTTOM*/

/* start popup*/

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* end popup */

/*Small screens (mobile phones); max-width 640px*/
@media only screen and (max-width: 40em) { 
	.HBPR-logo div {margin-left: auto !important; margin-right: auto !important;width: 200px;height: 50px;margin: 10px;}
	.petprofile-name {text-align:center;}
	.header-menu ul {float: none;}
	.nav-break {display:block;}
	.petprofile-adopt {text-align: center;}
} 
/*Medium screens (tablets); min-width 641px and max-width 1024px */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
	.HBPR-logo div {margin-left: auto !important; margin-right: auto !important;width: 266px;height: 66px;margin: 10px;}
	.petprofile-name {text-align:center;}
	.header-menu ul {float: none;}
	.nav-break {display:block;}
	.petprofile-adopt {text-align: center;}
}

/*Large screens; min-width 1025px and max-width 1440px */
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
	.HBPR-logo div {margin-left: auto !important; margin-right: auto !important;width: 200px;height: 50px;margin: 10px;}
	.petprofile-name {text-align:left;}
	.header-menu ul {float: right;}
	.nav-break {display:inline-block;}
	.petprofile-adopt {text-align: right;}
}

/*XLarge screens; min-width 1441px and max-width 1920px */
@media only screen and (min-width: 90.063em) and (max-width: 120em) {
	.HBPR-logo div {margin-left: auto !important; margin-right: auto !important;width: 200px;height: 50px;margin: 10px;}
	.petprofile-name {text-align:left;}
	.header-menu ul {float: right;}
	.nav-break {display:inline-block;}
	.petprofile-adopt {text-align: right;}
}

/*XXLarge screens; min-width 1921px, xxlarge screens */
@media only screen and (min-width: 120.063em) {
	.HBPR-logo div {margin-left: auto !important; margin-right: auto !important;width: 200px;height: 50px;margin: 10px;}
	.petprofile-name {text-align:left;}
	.header-menu ul {float: right;}
	.nav-break {display:inline-block;}
	.petprofile-adopt {text-align: right;}
}


html, body {
  height: 100%; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  font-size: 16px; }

body {
  background: white;
  color: #000000;
  padding: 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5em;
  position: relative;
  cursor: default;
text-align:justify;}

h1 a {font-weight:normal;}

a { color:#ef3e36;
	font-weight:bold;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover {cursor: pointer;}

h1 {font-family: 'Just Another Hand', cursive;font-size:3em;line-height: 1em;font-weight: normal !important;}
h2, h3, h4, h5, h6 {font-family: 'Just Another Hand', cursive;font-weight: normal !important;}

#header {
	border-bottom: 3px solid #17b4e9;
    width: 100%;
    background-color: black;
    position: relative;
    top: 0;
    left: 0;
}

/* -- NAVIGATION STYLING --*/
nav {
    display: block;
    background: #000;
	text-align:center;
}

.menu {
    display: block;
	margin: 0px;
	padding:0px;
}

.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}

.menu li:first-child {
    margin-left: 0;
}

.menu li a {
    font-weight: 300;
    text-decoration: none;
    padding: 8px 15px 4px 15px;
    display: block;
    color: #fff;
	font-family: 'Just Another Hand', cursive;
	letter-spacing: 1px;
	font-size:24px;
    transition: all 0.2s ease-in-out 0s;
}

.menu li a:hover,.menu li:hover>a {
    color: #fff;
    background: #ef3e36;
}

.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 200px;
    position: absolute;
    left: 0px;
    background: #fff;
    z-index: 99;
    /*transform: translate(0,20px);*/
    transition: all 0.2s ease-out;
}

/*.menu ul:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px;
}*/

.menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    font-weight: normal;
    display: block;
    color: #ffffff;
    background: #17b4e9;
}

.menu ul li a:hover,.menu ul li:hover>a {
    background: #ef3e36;
    color: #fff;
}

.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

.menu ul ul {
    left: 169px;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px,20px);
    transition: all 0.2s ease-out;
}

.menu ul ul:after {
    left: -6px;
    top: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 6px;
    margin-top: -6px;
}

.menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

.responsive-menu {
    display: none;
    width: 100%;
    padding: 8px 15px 4px 15px;
    background: #000000;
    color: #fff;
	font-family: 'Just Another Hand', cursive;
	font-weight: 300;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.responsive-menu:hover {
    background: #ef3e36;
    color: #fff;
    text-decoration: none;
}

a.homer {
    background: #ef3e36;
}

@media (min-width: 768px) and (max-width: 979px) {
    .mainWrap {
        width: 768px;
    }

    .menu ul {
        top: 37px;
    }

    .menu li a {
        font-size: 24px;
    }

    a.homer {
        background: #000000;
    }
}

@media (max-width: 767px) {
    .mainWrap {
        width: auto;
        padding: 50px 20px;
    }

    .menu {
        display: none;
    }

    .responsive-menu {
        display: block;
    }

    nav {
        margin: 0;
        background: none;
    }

    .menu li {
        display: block;
        margin: 0;
    }

    .menu li a {
        background: #000;
        color: #fff;
    }

    .menu li a:hover,.menu li:hover>a {
        background: #ef3e36;
        color: #fff;
    }

    .menu ul {
        visibility: hidden;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        transform: initial;
    }

    .menu li:hover>ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        transform: initial;
    }

    .menu ul ul {
        left: 0;
        transform: initial;
    }

    .menu li>ul ul:hover {
        transform: initial;
    }
}

@media (max-width: 480px) {
}

@media (max-width: 320px) {
}
/* -- END NAVIGATION STYLING --*/

.donor {margin:20px;display:inline-block;max-width:150px;height:auto !important;vertical-align: middle;}

.HBPR-logo div {
	display: block;
    border: 0 !important;
    background-image: url(/img/HBPR-logo-white-PinkGreen.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.HBPR-logo div span {display:none;}
.CarouselRow {position: relative;top: 0;z-index: -100;}

.bgdark {background-color:#17b4e9;}
.tagline {background-color: #17b4e9;color: #ffffff !important; text-align:center; line-height: 1.5em;margin-top: -2px;padding: 10px 20px;border-bottom: 10px solid #ef3e36;}

#callouts {}
#callouts a div {text-align:center;text-decoration:none !important;cursor:pointer !important;padding-top: 10px;}
#callouts a div .title {font-family: 'Just Another Hand', cursive;font-size:24px;font-weight:bold;text-transform: uppercase;}
#callouts a div i {color:#ef3e36;padding-right:5px;}
#callouts a div span {color:#000;}
#callouts a div p {font-family: 'Raleway', sans-serif;font-size:14px;color:#000;font-weight: normal;}

.adoption, .foster, .volunteer, .donate {background-color:white;}
.adoption:hover, .foster:hover, .volunteer:hover, .donate:hover {background-color:#17b4e9;}

/*--Adoption page styling for dog and cat data loop--*/
.petprofile {margin:10px 0px;}
.petprofile-pic {border: 0px !important;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    /* margin-left: auto !important; */
    /* margin-right: auto !important; */
    display: inline-block;
    height: 200px;
    width: auto !important;
    margin: 10px;}
.petprofile-info {margin:10px 0px;}
.petprofile-name {line-height:1em;color: #17b4e9;font-family: 'Just Another Hand', cursive;font-size:40px;font-weight:normal;}
.petprofile-bio {font-family: 'Raleway', sans-serif;font-size:14px;color:#000;text-align:justify;line-height: 1.5em;}

.petprofile-adopt a {background-color:white;color:#ef3e36;padding:5px;}
	.petprofile-adopt a:hover {background-color:#ef3e36;color:white;padding:5px;}
.adopt-list {text-align:center;}
#footer {background-color:#3A3A3A;color:white !important;text-align:center;padding: 10px;}

/*--Slick Slider--*/
.slider1 {width: 100%;height:auto !important;margin: 0px auto;}
	.Carousel div.slick-list div.slick-track div.slick-slide {margin:0px !important;}
	.Carousel button {display:none !important;visibility:hidden !important;}
.slider2 {width: 50%;margin: 100px auto;}

    .slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
        color: black;
    }
.slick-dotted.slick-slider {
    margin-bottom: 30px;
    margin-top: 30px;
    

/*FAQS*/
.faq_question {
	margin: 0px;
	padding: 0px 0px 5px 0px;
	display: inline-block;
	cursor: pointer;
	font-weight: bold;
}

.faq_answer_container {
	height: 0px;
	overflow: hidden;
	padding: 0px;
}