/* CSS Document */

body {
	margin: 0px;
}

p {
    padding-bottom: 5px;
    padding-top: 5px;
}
  
h1 {
    padding-top: 5px;   padding-bottom: 5px;    padding-left: 5px;  padding-right: 5px;
    color: white;   font-size:24px; font-style: oblique;
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    padding-top: 5px;   padding-bottom: 5px;    padding-left: 5px;  padding-right: 5px;
    color: lightskyblue;   font-size:16px; font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
}

h3 {
    padding-top: 5px;   padding-bottom: 5px;    padding-left: 5px;  padding-right: 5px;
    color: cyan;   font-size:12px; font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    background-image:url(./images/header.jpg); background-size: cover; background-repeat: no-repeat; 
    background-color: #0099FF;
    text-align: center;
    padding: 80px;
}

.header h1 {
    font-size: 50px;
}

/* The navbar container */
.linksmenu {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #56975A;
}

/* Navbar links */
.linksmenu a {
    float: left;
    display: block;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Links - change color on hover */
.linksmenu a:hover {
    background-color: #ddd;
    color: black;
}

.linksmenu a:hover:not(.active) {
    background-color: #B1EBB9;
}

.active {
    background-color: #043557;
    color: white;
}

.right {
    float: right;
}

@media screen and (max-width: 600px) {
    linksmenu.a, linksmenu.right {float: none;}
}

/* Create two unequal columns that floats next to each other */
.leftcolumn {
    float: left;
    width: 75%;
    background-color: #A6F1C3;
}

.rightcolumn {
    float: left;
    width: 25%;
    background-color: #A6F1C3;
}

/* Fake image */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

.row > .column {
    padding: 0 8px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float:left;
    width: 25%;
}
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .linksmenu a {
        float: none;
        width: 100%;
    }
}

.collinks a{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: cyan;
	text-decoration:none;
}
.collinks a:hover{
    text-decoration:underline;
    font-size:16px;
}

.footer {
    background-color: #0099FF;
    text-align: center;
    padding: 10px;
}

.img1 {
    background-color: #043557;
    padding: 20px;
    max-width: 100%;
}

.img1:hover {
    max-width: 105%;
}

/* Gallery */


div.gallery h1 {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    overflow: hidden;
    width: 100%;
    color: white;
    size: 20px; 
    background-color: #043557;
    padding:10px;
}

div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Gallery End */

/* Pets Start */
/* Create two unequal columns that floats next to each other */
.petsheadings {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 45px;
    overflow: hidden;
}
.petsleftcolumn {
    float: left;
    width: 33.33%;
    background-color: #A6F1C3;
}

.petscentercolumn {
    float: left;
    width: 33.33%;
    background-color: #A6F1C3;
}

.petsrightcolumn {
    float: left;
    width: 33.33%;
    background-color: #A6F1C3;
}

/* Images Modal Start*/
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: relative;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -50px;
    color: #837676;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  img {
    margin-bottom: -4px;
  }
  
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
/* Images Modal End */
/* Pets Start */