* {
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
    display:block;
}

/********** General Styles ****************/
body {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: .8rem;
  line-height: 0.9rem;
}

h2 {
    font-family: signo, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #059eb1;
    text-transform: uppercase;
}

.cta {
  background-color: #059eb1;
  color: white; 
  font-family: signo, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: .9rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px;
  margin-top: 20px; 
  display: block;
  width: 46%;
  text-align: center;
}

.cta:hover {
  background-color: white;
  color: #059eb1; 
  border: 2px #059eb1 solid;
  border-radius: 6px;
}

/********** Header Styles ****************/
header {
    width: 100%;
}

nav {
  height: 125px; 
}

.logo {
    width: 80%;
    max-width: 375px;
    padding: 15px 0; 
    position: relative;
	  float: left;
}

.desktop-menu {
	display: none;
}

/********** Hamburger Menu Start ****************/
.ham {
    position: absolute;
    z-index: 100;
    top: 1rem;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    padding-top: 3%; 
  }

.cross {
    display: none;
    color: white;
    font-size: 3em; 
  }

.menu {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #059eb1; 
    transform: translateY(-100%);
    transition: transform 0.2s;
    list-style: none;
    padding-top: 4rem;
  }

.hamburger{
    color:#949398;
    font-size: 1.4em;
    font-weight: bold;
  }

.showMenu {
    transform: translateY(0);
  }

li {
    padding: 1rem 2.5rem;
  }
  
.menuLink {
    display: inline;
    font-size: 2rem;
    font-weight: 700;
    color: white; 
    text-decoration: none;
  }

.menuLink:hover {
    text-decoration: underline;
  }

.sub-menu {
  list-style: none;
}

.sub-menu li { 
  padding: 0 0 1rem 4rem;
}

.sub-menu li a {
  color: white; 
  text-decoration: none;
}

.menu li p {
  padding-bottom: 10px; 
}

/********** Hamburger Menu End ****************/


/********** Hero Section Styles ***************/
.hero-wrapper {
  background-image: url(../images/home_header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 240px;
  width: 100%;
}

.hero-wrapper-dogs {
  background-image: url(../images/dogs_header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 240px;
  width: 100%;
}

.hero-wrapper-cats {
  background-image: url(../images/cats_header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 240px;
  width: 100%;
}

.hero-text {
  width: 52%;
  position: absolute;
  top: 50%;
  left: 71%;
  transform: translate(-50%, -50%);
}

.hero-text-cats {
  width: 53%;
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
}

/********** Main Section Styles ****************/

.container {
  width: 92%; 
  padding: 4%; 
}

.cta2 {
  width: 35%; 
  margin: 30px 0 40px 0; 
}

.meet figure img {
  width: 75%;
  max-width: 375px; 
  margin: auto;
}

.meet {
  margin: auto; 
}

.meet a {
  display: block;
  color: #949398;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  padding: 5px 0 40px 10px; 
}

.meet a:hover {
  color: #059eb1;
}

/********** Adoptable Dogs Listings Styles ****************/
#adoptable {
  padding-top: 40px;
  max-width: 1318px; 
}

#adoptable figure {
  width: 300px; 
  height: 300px; 
  margin: auto;
  padding-bottom: 20px;
  display: block;
}

#adoptable figure img {
  /* float: left;  */
  height: 300px; 
  width: 300px; 
  object-fit: cover;
}

#adoptable figure figcaption {
  color: #949398;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.description {
  width: 300px;
  text-align: center;
  margin: auto; 
  padding: 10px 0 40px 0;
  display: block; 
}

/********** Footer Styles ****************/
footer {
  background-color: #059eb1;
  color: white;
  text-align: center;
}

.social-logo {
  width: 40px;
  padding: 20px 10px; 
}

.center {
  display: flex; 
  justify-content: center;
}

footer p {
  font-size: 0.7rem;
  padding-bottom: 15px; 
}

/********************** Modal Styles **************************/
.modal-wrap {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.modal-wrap.visible {
  opacity: 1;
  visibility: visible;
}

.modal-wrap .modal-container {
  background: #fff;
  margin: 1em;
  max-width: 100%;
  width: 600px;
  z-index: 100;
}

.modal-wrap .modal-container .modal-header,  .modal-wrap .modal-container .modal-footer {
  background: #059eb1; 
  float: left;
  width: 100%;
}

.modal-wrap .modal-header .modal-title {
  color: #fff;
  float: left;
  font-size: 2em;
  margin: 0;
  padding: 15px 30px;
}

.modal-wrap .modal-header .close-modal {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  float: right;
  font-size: 40px;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.modal-wrap .modal-header .close-modal:hover { opacity: 1; }

.modal-wrap .modal-content {
  float: left;
  margin: 0;
  padding: 15px 35px 30px 30px;
  width: 90%;
}

.modal-wrap .modal-content p:last-child { margin-bottom: 0; }

.modal-wrap .modal-footer { text-align: center; }

.modal-wrap .modal-footer p {
  color: #ccc;
  font-size: 12px;
  font-style: italic;
  margin: 10px;
}

.modal-wrap .modal-footer a { color: #fff; }


/********** Start Min-Width 650px Media Query ****************/
@media (min-width: 650px) {
  .hero-wrapper, .hero-wrapper-dogs, .hero-wrapper-cats {
    height: 300px; 
  }

  .cta {
    width: 35%; 
  }

  .cta2 {
    width: 25%; 
  }

  footer p {
    font-size: 1rem;
    padding-bottom: 25px;
  }

  #adoptable {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  #adoptable figure {
    max-width: 300px; 
    height: 300px; 
    margin: auto;
    padding-bottom: 20px; 
  }
/********** End Min-Width 650px Media Query ****************/

/********** Start Min-Width 900px Media Query ****************/
@media (min-width: 900px) {
  .menu, .ham, .cross, .hamburger {
		display: none;
  }
  
  .desktop-menu {
    display: flex;
    text-align: right;
    padding-right: 10px;
    justify-content: flex-end;
    position: relative;
    top: 35px;
  } 

  .desktop-menu li {
    list-style-type: none;
    top: 45px;
    padding: 1rem 1rem;
  }
  
  .menuLink {
    display: inline;
    font-size: 1rem;
    color: #949398; 
    text-decoration: none;
  }

  .menuLink:hover {
    text-decoration: none;
    color: #059eb1;
  }

  .sub-menu-desktop {
    background-color: #059eb1;
    position: absolute; 
    z-index: 1000;
    text-align: left;
    top: 90px;
  }

  .sub-menu li {
    display: block; 
  }

  .sub-menu-desktop li a {
    color: white; 
    text-decoration: none;
  }

  .condensed {
    height: 0px; 
    overflow: hidden;
    transition: height .5s
  }

  .show-adopt {
    height: 290px; 
    transition: height .5s;
  }

  .show-volunteer {
    height: 175px; 
    transition: height .5s;
  }
  
  .hero-wrapper, .hero-wrapper-dogs, .hero-wrapper-cats {
    height: 350px;
  }

  .hero-text {
    width: 42%;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
  }

  h2 {
    font-size: 2.3em;
  }

  .cta {
    width: 30%;
    color: white; 
  }

  .cta2 {
    width: 18%;
  }
  
  .meet {
    display: flex; 
  }

  .meet figure img {
    width: 100%;
    max-width: 375px; 
    margin: auto;
  }

  .container figure {
    padding: 15px; 
  }
}

/********** End Min-Width 900px Media Query ****************/

/********** Start Min-Width 1100px Media Query ****************/
@media (min-width: 1100px) {
  li {
    padding: 1rem 1.5rem;
  }
  
  .hero-wrapper, .hero-wrapper-dogs, .hero-wrapper-cats {
    height: 400px;
  }

  .cta {
    width: 25%;
  }

  .cta2 {
    width: 14%;
  }

  .meet a {
    font-size: 1.2rem;
  }
}
/********** End Min-Width 1100px Media Query ****************/

/********** Start Min-Width 1300px Media Query ****************/
@media (min-width: 1300px) {
  .hero-wrapper, .hero-wrapper-dogs, .hero-wrapper-cats {
    height: 460px;
  }
}
/********** End Min-Width 1300px Media Query ****************/