* {
  box-sizing: border-box;
}

body {
  margin:0;
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFFFF;
}

.topnav {
  overflow: hidden;
  background-color: #E6E3E2;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
    justify-content: center;
}


.logo {
    text-align: center;
}

.logo img {
    width: 30vw;
    height: auto;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #000000;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #72472E;
  color: #FFFFFF;
}

.dropdown-content a:hover {
  background-color: #72472E;
  color: #FFFFFF;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Style Sections */
.column1 {
  float: left;
  width: 50%;
  padding: 10px;
}

.column2 {
  float: left;
  width: 50%;
  padding-right: 10%;
  padding-top: 2.5em;
}

.column2 > h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4em;
  margin: 0.67em 0em;
  letter-spacing: 3px;
}

button.sectionbtn {
  background-color: #72472E;
  border:#454545;
  color: #fff;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  margin-top: 2em;
}

.imgsection {
  display: block;
  width: 80%;
  margin-left: 15%;
  margin-right: auto;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Slideshow */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  background-color: #F8F6EF;
}

.mySlides {
  display: none;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media screen and (max-width: 768px) {
.topnav a:not(:first-child), .dropdown .dropbtn {
  display: none;
}
.topnav a.icon {
  float: right;
  display: block;
}
.topnav {
  overflow: hidden;
  background-color: #E6E3E2;
  display: block;
}
.menu {
  display: block;
  gap: none;
  font-size: 18px;
}

.column1 {
  width:100%
}

.column2 {
  width: 100%;
  text-align: center;   
  padding-left: 10%; 
  padding-top: none;
}

.column2 > h3 {
  font-size: 3em;
}

/* Slideshow */
.prev, .next,.text {
  font-size: 11px
}

}

@media screen and (max-width: 768px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
