html{

}

body{
  margin: 0;
}

#myTopnav{
  background-color: #f6f3f0;
  border-bottom: 2px solid white;
}

#myTopnav a{
  color: #000000;
  font-family: 'wonderella', sans-serif;
  font-size: 12px;
}

.fa-bars{
  color: #000000;
}

ul{
  margin-bottom: 0px;
}

li{
  display: inline-block;
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 14px;
}


#home-top-image-container{
  width: 100%;
  right:0px;
  left:0px;
}

.active{
  background-color: #f6f3f0;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 999;
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  padding: 1vh 6.5vw 1vh 0;
}

.topnav a:hover {
  text-decoration: none;
  opacity: 0.5;
  transition: .3s ease;
}

.topnav a.active {

}

.topnav a img{
  height: 2.5vh;
  padding-left: 1vw;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .topnav a{
    margin-left: 1.5vw;
  }
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

b{
  font-size: 16px;
}

p{
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 14px;
}

.row-full{
 position: relative;
 width: 100vw;
 margin-left: -50vw;
 left: 50%;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 3vh; /* Place the button at the bottom of the page */
  right: 2vw; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #f6f3f1; /* Set a background color */
  color: #726060; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 12px 18px 12px 18px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 1px 1px 2px #4d4d4d;
  font-size: 20px; /* Increase font size */
}

#myBtn:hover {
  background-color: #e8dbc7; /* Add a dark-grey background on hover */
  color: white;
  transition: .3s ease;
}

#contact-sections{
  background-color: #f6f3f0;
  height: 120vh;
}

#contact-sections-left{
  float: left;
  width: 50vw;
  border-right: 1px solid black;
}

#contact-sections-left li{
  display: inline-grid;
}

#contact-sections-title{
  /*border-bottom: 2px solid;
  border-color: #3f771d;*/
  padding-top: 10vh;
  padding-bottom: 4vh;
  text-align: center;
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 16px;
  font-weight: 1000;
}

#contact-sections-left-items{
  width: 320px;
}

#contact-sections-left-items-title{
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 14px;
  font-weight: 550;
}

#contact-sections-left-items-text{
  width: 300px;
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 14px;
  font-weight: 550;
}

#contact-sections-left-items-image{
  width: 300px;
  height: 200px;
}

#contact-sections-right{
  float: right;
  width: 50vw;
  padding-left: 5vw;
}

#contact-form-items{
  border: none;
  border-bottom: 1px solid black;
  background-color: transparent;
  width: 40vw;
  padding: 3vh 0 1vh 0;
}

#contact-form-items-textarea{
  border: 1px solid black;
  background-color: transparent;
  width: 40vw;
  height: 20vh;
  margin: 3vh 0 1vh 0;
  resize: none;
}

#contact-form-items-newsletter{
  border: none;
  background-color: transparent;
  width: 35vw;
  padding-left: 5px;
}

#contact-form-items-submit{
  border: none;
  background-color: transparent;
  font-family: 'Neue Hans Kendrick', sans-serif;
  font-size: 14px;
}

@media only screen and (max-width: 800px){
  #contact-sections-title{
    font-size: 14px;
    padding: 6% 0 0 0;
  }
  #contact-sections{
    height: 280vh;
  }
  #contact-sections-right{
    float: left;
    width: 90vw;
  }
  #contact-sections-left{
    width: 100vw;
    border-right: none;
  }
  #contact-form-items{
    width: 90vw;
  }
  #contact-form-items-textarea{
    width: 90vw;
  }
  #contact-form-items-newsletter{
    width: 90vw;
  }
}

