body, html {
    margin: 0;
    font: 1em, sans-serif;
    background-color: #777777;
}
.main-content {
    padding: 30px;
    font-size: 1.25em;;
}
footer {
    position: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333333;
    color: #dbb67b;
    text-align: center;
}
.logo {
    float: left;
    height: 55px;
    padding: 7px 30px;
    font-size: 3em;
    font-family: 'Tangerine', sans-serif;
    line-height: 42px;
    background-color: #333333;
    color: #dbb67b;
}
* {
    box-sizing: border-box;
}
.contact-text p {
    width: 75%;
    margin-top: 0px;
    margin-bottom: 39px;
}
.main-content1 {
    padding-left: 50px;
}
.contact-form {
    margin-top: 23px;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.about-text {
    width: 75%;
}
/* NAVBAR ###########################################################*/

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
    font-size: 1.5em;
    text-align: right;
    font-family: sans-serif;
}
li {
    float: left;
}
li a, .dropbtn {
    display: inline-block;
    color: #dbb67b;
    text-align: center;
    padding: 13.5px 16px;
    text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
    background-color: #555555;
}
li.dropdown {
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: #dbb67b;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #555555
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* NAVBAR END #####################################################*/


/* CAROUSEL #######################################################*/

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  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;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* CAROUSEL END ##################################################*/


/* IMAGES #########################################################*/
/* The grid: Three equal columns that float next to each other */
.column {            
    float: left;            
    width: 33.3%;
    padding: 10px;
}          
/* Style the images inside the grid */
.column img {
    opacity: 0.8; 
    cursor: pointer; 
}
.column img:hover {
    opacity: 1;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* IMAGES END #######################################################*/


/* CONTACT FORM #####################################################*/

.main-content h2 {
    font-family: sans-serif;
    margin: 0;
    padding: 5px;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
input[type=submit] {
    background-color: #333333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    background-color: #555555;
}
.container {
    border-radius: 5px;
    background-color: #777777;
    padding: 0, 0, 20px;
    font-family: sans-serif;
    width: 75%
}

/* CONTACT FORM END ####################################################*/