 html, body{
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
  }

/* NAVBAR */

.logo_style{
    color: #9c853e;
    font-family: 'Herr Von Muellerhoff', cursive!important; 
    text-align: center;
}

.logo_homepage_style{
  margin-top: 10%;
}

.link-navbar{
  margin-left: 5%;
}
  
.navbar-brand {
  font-size: 2.25rem!important;

}

.nav-link:hover{
    text-decoration: underline;
}
 
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: white;
  position: fixed;
  height: 100%;
  overflow: auto;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: #7c7c7c;
    font-size: 15px;
  padding: 16px;
  text-decoration: none;
}

/* Active/current link */
.sidebar a.active {
  background-color:white;
  color: rgb(5, 5, 5);
}


/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  /* background-color:  rgb(253, 253, 152); */
  color: black;
  text-decoration: underline;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 106px;
  padding: 0;
  height: 1000px;
}

/* GALLERY */

.paint-info_container{
  margin-top: 15px;
}

.title_size{
  font-size: 1.2rem!important;
  font-weight: bold;
}

.gallery-pics:hover{
  cursor: zoom-in!important;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}



.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.navbar {
  background-color: white!important;
}

.gallery-pics{
  height:400px;
  width: 420px;
  object-fit: cover;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: black;
  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;
 
}
.mySlides img{
  min-height:100vh;
  width: auto;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  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: #f2f2f2;
  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;
}





/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .sidebar a {
    text-align: center;
    float: none;
  }

  .gallery-row{
    padding-right: 3vw;
      padding-left: 0vw;
      margin-bottom: 3vw;
      
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .sidebar a {
    text-align: center;
    float: none;
  }

  .gallery-row{
    padding-right: 3vw;
      padding-left: 0vw;
      margin-bottom: 3vw;
      
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  .gallery-row{
    padding-right: 3vw;
      padding-left: 16vw;
      margin-bottom: 3vw;
      
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

  .gallery-row{
    padding-right: 3vw;
      padding-left: 5vw;
      margin-bottom: 3vw;
      
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  .gallery-row{
    padding-right: 3vw;
      padding-left: 5vw;
      margin-bottom: 3vw;
      
  }
}

/* CONTACT FORM */

.container-contact{
  margin-bottom: 4%;
}

* {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #9c853e;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #9c853e;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}