/* app */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
  }
  .app {
    min-height: 100vh;
    min-width: 100vw;
    position: relative;
    background-color: #f1f1f1;
  }
  .container {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .mobile-container {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
    min-width: 400px;
  }
  
  .btn {
    font-weight: bold;
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 25px;
    font-family: Helvetica, Arial,  sans-serif;
    height:75px;
    width:200px;
  }
  
  .btn:focus {
    outline: none;
  }
  .btn:active {
    transform: scale(0.98);
  }
  .btn-block {
    display: block;
    width: 100%;
  }
  
/* nav bar */

.navbar {
  background-color: rgba(50, 102, 152, 1);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index:999;
  width: 100%;
  transition: 0.5s ease all;
  color: #ffff;
}

.navbar-active {
  box-shadow: 0 0 10px #aaa;
  background-color: rgba(0, 0, 0, 0.0);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align:center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #fff;
  display:flex;
  align-items:center;
  justify-content: center;
  text-decoration: none;
  margin: 0 1.5rem;
  height: 100%;
}
.navbar__links:hover{
  color: red;
  border-color: red;
  transition: all 0.3s ease;
}

.link {
    font-weight: 500;
    color: #ffff;
    list-style: none;
    text-decoration: none;
}

.link:hover{
  color: red;
  border-color: red;
  transition: all 0.3s ease;
}

.logodiv {
    padding: 16px;
}

.branding {
    display: flex;
    align-items: center;
}
.logopic {
    height:57px;
    width:100px;
}

.mobile-logopic {
    height:43px;
    width: 75px;
}

.logo {
    position: absolute;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    left: 8%;
    top: 20%;
    color: white;
    font-weight: bold;
    font-family: Helvetica, Arial,  sans-serif;
    font-size: 25px;
    text-decoration: none;
    
}

.mobile-logo {
    position: absolute;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    left: 8%;
    top: 30%;
    color: white;
    font-weight: bold;
    font-family: Helvetica, Arial,  sans-serif;
    font-size: 15px;
    text-decoration: none;
    
}

@media screen and (max-width:1000px) {

  .logo {
    position: absolute;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    left: 8%;
    top: 30%;
    color: white;
    font-weight: bold;
    font-family: Helvetica, Arial,  sans-serif;
    font-size: 15px;
    text-decoration: none;
    
  
  }

  .navbar__container {
    display:flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
  }

  .navbar__menu.active {
    background:rgba(50, 102, 152, 1);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index:99;
    height: 50vh;
    font-size: 1.6rem;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;

  }

  #mobile-menu {
    position: absolute;
    top:30%;
    right:5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {

    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity:0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);

  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    
  }
}
/* home */

.hero {
  
  opacity: 0.8;
  width: 100%;
  height: 600px;
  filter: brightness(60%);
}

.middle {
  font-weight: bold;
  font-family: Helvetica, Arial,  sans-serif;
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 50px;
  width: 75%;
  text-align: center;
}

.middle2 {
  font-family: Helvetica, Arial,  sans-serif;
  position: relative;
  text-align: center;
  color: black;
  font-size: 30px;
  font-weight: bold;
  display: block;
  margin: 50px 320px;
}

.row1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  top: 23%;
  
}

.row2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  
  
}

.bottom {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 35px;
  font-weight: bold;
}

@media screen and (max-width:1000px) {
  .hero {
    opacity: 0.8;
    width: 100%;
    height: 600px;
    filter: brightness(60%);
    position:absolute;
  }

  .pic-text {
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 200px;
  }

  .middle {
    font-weight: bold;
    font-family: Helvetica, Arial,  sans-serif;
    position: absolute;
    color: white;
    font-size: 30px;
    top: 50%;
    width: 75%;
    text-align: center;
    margin-bottom: 20px;
    max-height:20px;
  }

  .middle2 {
    font-family: Helvetica, Arial,  sans-serif;
    position: relative;
    text-align: center;
    color: black;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin: 300px 120px 100px 120px;
  }

  .row1 {
    margin-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  
}

.row2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
  
}

.bottom {
    margin-top: 220px;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  color: white;
  font-size: 25px;
  font-weight: bold;
  top: 60%;
}
}

/* home card */

.card {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  width: 120px;
  margin: 40px 35px;
}
.card-icon {
  width: 100px;
  height: 100px;
  
}
.caption {
  margin: 10px 0px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* clearance */

.blue {
  background-color: rgba(50, 102, 152, 1);
}

.clearance-img {
  margin-top:100px;
  
  height:175px;
  width:100%;
}

.clearance-row {
  justify-content: space-between;
}

.clearance-row:after {
  content: "";
  display: table;
  clear: both;
  
}

.column {
  float: left;
  width: 30%;
  margin: 50px 0px 100px 200px;
  
}



.clearance-section {
  font-weight: bold;
  margin-bottom: 30px;
}



.word-block1 {
  line-height: 1.5;
  margin-bottom: 25px;
  font-size: 25px;

 
}

.word-block2 {
  line-height: 1.5;
  margin-bottom: 25px;
  font-size: 20px;
  background-color: rgba(50, 102, 152, 1);
  color: white;
  
  padding:30px;
  border-radius: 20px;
}



.poa-link {
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 16px;
  
}

.black-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px 30px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
  font-family: Helvetica, Arial,  sans-serif;
  height: fit-content;
  width: fit-content;
}



@media screen and (max-width:1000px) {

  .word-block {
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 15px;
   
  }

  .column {
    float: left;
    width: 50%;
    margin: 80px 75px 100px 75px;
  }
  .clearance-section {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 20px;
  }
  .black-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    font-family: Helvetica, Arial,  sans-serif;
    height: fit-content;
    width: fit-content;
  }

}

/* resources */

.empty {
  margin-bottom: 125px;
}
.longpic {
  margin-top:100px;
  margin-bottom:100px;
  height:200px;
  width:100%;
}

.puppypic {
  position:absolute;
  top: 8%;
  left: 79%;
  width: auto;
  height: 380px;
  
}

.kittenpic {
  position:absolute;
  top: 70.7%;
  left: 60%;
  width: auto;
  height: 600px;
  
}

@media screen and (max-width:1400px) {
  .puppypic {
    opacity: 0;
  }

  .kittenpic {
    opacity: 0;
  }
}

.resource-list{
  padding-left: 75px;
}


.space {
  margin-bottom: 20px;
}

.resource-title {
  font-weight: bold;
  color: #00afea;
  font-size: 40px;
  margin-bottom:50px;
}

.pet-section {
  font-weight: bold;
  font-size: 35px;
  margin-bottom:30px;
}

.section-title {
  font-weight: bold;
  margin-bottom: 30px;
}

.bold {
  font-weight: bold;
}

.italics {
  font-style: italic;
}

.section {
    vertical-align: top;
    display: inline-block;
    width: auto;
    margin: 40px 0px;
}

.word-block {
  line-height: 1.5;
  
  margin: 0px 100px 25px 0px;
  width:100%;
}

.empty {
  color: rgba(1,1,1,0);
  margin-bottom: 125px;
}

/* contacts */
.contactpic {
  position: absolute;
  left:40%;
  width:auto;
  height:300px;
  top:17.5%;
}
.gmap_canvas {
  overflow:hidden;
  background:none!important;
  height:400px;
  width:500px;}

.contact-row {
  justify-content: space-between;
}

.contact-row:after {
  content: "";
  display: table;
  clear: both;
  
}

.contact-column1 {
  float: left;
  width: 25%;
  margin: 80px 300px 100px 150px;
  
}

.contact-column2 {
  float: left;
  width: 20%;
  margin: 80px 150px 100px 300px;
  
}

.contact-title {
  font-weight: bold;
  margin-bottom: 30px;
  font-size:20px;
}


.contact {
    vertical-align: top;
    display: inline-block;
    width: auto;
    margin: 20px 0px;
}

.contact-block {
  width: 300px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5px;
  font-family: Helvetica, Arial,  sans-serif;
  font-size:20px;
}

@media screen and (max-width:1500px) {
  .contactpic {
    opacity: 0;
  }
}

/* poaform */

.radio {
  display: inline-block;
  width:16px;
  margin: 0 10px 0 0;
  position: relative;
  top: 2px;
}


.title {
  font-size:0.8em;
}

.label-input {
  display: flex;
  margin-bottom: 15px;
}


.personal-form {
  max-width: 620px;
  margin: 30px auto;
  background: #FFCD98;
  text-align: left;
  padding:40px;
  border-radius: 10px;
}

.business-form {
  max-width: 750px;
  margin: 30px auto;
  background: #FFCD98;
  text-align: left;
  padding:40px;
  border-radius: 10px;
}

label {
 
  display: inline-block;
  margin: 25px 10px 15px 0px;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

input {
  margin-top: 15px;
  display: block;
  padding: 10px 6px;
  height:fit-content;
  width: 70%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ddd;
  color: #555;
}

input[type="checkbox"] {
  display: inline-block;
  width:16px;
  margin: 0 20px 0 0;
  position: relative;
  top: 2px;
}

.centered {
  text-align:center;
}
.submit {
  background: #0b6dff;
  border: 0;
  padding: 10px 20px;
  margin-top: 20px;
  color: white;
  border-radius: 20px;
  width:100px;
  margin-left: 215px;
  
}

textarea{
  display: block;
  padding: 10px 6px;
  width: 100%;
  box-sizing: border-box;
  
  
  color: #555;
  height:200px;
  width:100%;
}
/* footer */

.footer-about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  flex-direction: column;
  text-align:center;
  font-size:15px;
  color: #fff;
  padding-top: 20px;
  padding-left: 50px;
  padding-right:50px;
}
.footer-container {
  width:100%;
  background-color: #212329;
  padding-bottom: 4rem;
}

.footer {
  width: 80%;
  height: 40vh;
  background-color: #212329;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  flex-direction: column;
  text-align:center;
  font-size: 12px;
  line-height: 2;
}

.footer-logo {
  width:100px;
  height:auto;
  position: relative;
  left: 47%;
  
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: green; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}