*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

 body{
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;

  }

  .topnav {
    overflow: hidden;
    background-color: #333;
    text-align: center;
  }
  
  .topnav img{
    height: 75px;
    margin: 5px;
    border-radius: 5px;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 16px;
  }
  
  .topnav a:hover {
    color: #fff;
  }
  
  .topnav .icon {
    display: none;
  }

  .header-login {
    display: flex;
    padding: 15px;
    background-color: #333;
}

.header-login label {
    font-size: 16px;
    padding-right: 5px;
    color: #fff;
}

.golf-button{
  padding: 5px 15px;
  color: #000;
  background: #fff;
  font-size: 16px;
  border: 1px solid #344e86;
  border-radius: 50em;
  margin: 0px 10px;
}

.main-welcome {
  display: flex;
  flex-flow: wrap;
  padding: 10px;
  margin: 10px;
  background: #f5f5f5;
  align-items: center;
}
  
.main-welcome h1 {
  font-size: 32px;
  font-weight: 100;
  margin: 10px;
}
  
.main-welcome p {
  font-size: 13px;
  font-weight: 100;
  margin: 10px;
  padding-left: 10px;
} 

.main-img {
  display: flex;
  flex-flow: wrap;
  margin: 10px;
  justify-content: center;
  align-items: center;
}

.main-img img {
  height: 150px;
  width: 300;
}

.main-links {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  text-align: left;
  margin: 10px;
}

.main-links h4 {
  padding: 5px 10px;
}

.main-links p {
  padding: 5px 10px;
}

.contact-us-container{
  display: flex;
  flex-flow: wrap;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px;
  background: whitesmoke;
  align-items: flex-start;
}

.contact-us-dtl label {
  display:inline-block;
  text-align: left;
  padding-right:20px;
  min-width:75px;
  padding: 15px 10px;
}

.contact-us-dtl input {
  font-size: 16px;
  padding: 5px 10px;
  color: #444;
}

.contact-us-dtl select {
  font-size: 16px;
  padding: 5px 5px;
  color: #444;
}

.contact-us-dtl option {
  font-size: 16px;
  padding: 5px 10px;
  color: #444;
}

  
  @media screen and (min-width: 600px) {
  
    .header-page{
    display: flex;
    flex-flow: wrap;
    /* align-items: top; */
    background-color:#333;
    justify-content: space-between;
  }
 
  .main-img img {
    height: auto;
    width: auto;
  }

  }

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

    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }

    .header-login{
      display: none;
    }

   
   
  }

.dropnav {
  float: left;
  overflow: hidden;
}

.dropnav .dropnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 10px 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropnav:hover .dropnavbtn {
  background-color:  #3b5998;
}

.dropnav-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 182px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropnav-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropnav-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropnav:hover .dropnav-content {
  display: block;
}
  
