:root {
  --val-blue: rgba(54,101,243,255);
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: local(''),
      url('webfonts/RobotoSlab-VariableFont_wght.ttf') format('ttf'), 
}
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto Slab', serif;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
* Initial state, hidden off screen
*/
.clicky-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
}

/**
* Open/Close Menu Behavior with JS
*/
.clicky-menu ul[aria-hidden="false"] {
  visibility: visible;
}

/* Prevent offscreen-submenus */
.clicky-menu .sub-menu--right {
  left: auto !important;
  right: 0 !important;
}


#errorMsg {
  color: #C34700;
  font-size: xx-large;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html, body {
  height: 100vh;
  font-size: 18px;
  background-color: #fff;
}

header {
  background-image: url('../Images/banner.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: background-image 2s ease-in-out;
  -o-transition: background-image 2s ease-in-out;
  transition: background-image 2s ease-in-out;
  width: 100%;
  height: 70%;
  padding-top: 2rem;
  text-transform: uppercase;
  color: #fff;
}

/* Hidden SVG used for down arrows */
svg[hidden] {
  display: none;
  position: absolute;
}

.nav-wrapper-outer {
  width: 100%;
  background-color: rgba(65, 57, 57, .75);
}

.nav-wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.clicky-menu {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 991px) {
  .clicky-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* General Link & Button Styles */
.clicky-menu a, .ben-logo a,
.clicky-menu button {
  margin: .25em;
  background: transparent;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-family: inherit;
  border-radius: 3px;
  padding: 1rem;
}

.clicky-menu a:hover,
.clicky-menu button:hover {
  background: var(--val-blue);
  color: #000;
}

.clicky-menu a:focus,
.clicky-menu button:focus {
  outline: .125em dotted purple;
  outline-offset: -.125em;
}

/* Top Level Items */
.clicky-menu > li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.clicky-menu > li > a,
.clicky-menu > li > button {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  font-size: inherit;
  cursor: pointer;
}
@media (min-width: 991px) {
  .clicky-menu > li > a,
  .clicky-menu > li > button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }	
}

/* Icon */
.clicky-menu svg {
  width: 1.5em;
  height: 1.5em;
  margin-left: .5em;
}

.clicky-menu [aria-expanded="true"] svg {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}

/* Submenu Styles */
.clicky-menu ul {
  min-width: 100%;
  width: 12em;
  margin-top: .25em;
  padding: 0;
  list-style: none;
  background-color: rgba(65, 57, 57, .6);
  border-radius: 3px;
  z-index: 1;
}

/* Responsive Submenu Behavior */
.clicky-menu ul[aria-hidden="false"] {
  position: static;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}

@media (min-width: 991px) {
  .clicky-menu ul[aria-hidden="false"] {
    position: absolute;
    width: auto;
  }
}

/* Submenu Links */
.clicky-menu ul a {
  display: block;
  padding-top: .375em;
  padding-bottom: .375em;
}
@media (min-width: 991px) {
  .clicky-menu ul a {
    padding: .375em 1em;
    white-space: nowrap;
  }
}
.ben-logo img {
  width: 150px;
  height: auto;
}

#menu-toggle {
  color: #fff;
  line-height: 50px;
  font-size: 32px;
  cursor: pointer;
  display: none;
  margin: 24px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  -ms-transform: rotate(-45deg) translate(-9px, 6px);
      transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  -ms-transform: rotate(45deg) translate(-8px, -8px);
      transform: rotate(45deg) translate(-8px, -8px);
}

.pretty {
  display: none;
}

.subheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  padding-top: 2em;
  padding-bottom: 1em;
  margin: 0 auto;
  margin-top: 8em;
  background-color: rgba(65, 57, 57, .4);
}
.subheader h2 {
  font-size: 2em;
}
.subheader h1 {
  font-size: 2.5em;
}
@media (max-width: 991px) {
  .subheader h1 {
    font-size: 2em;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1400px){
  .subheader {
    margin-top: 2em;
  }
}


.subdetail ul li  {
  border-radius: 9px 9px 9px 9px;
  color: #EEE;
  text-align: center;  
  background-color: rgb(65, 57, 57);
}

.subdetail ul.clicky-menu ul, .subdetail ul.clicky-menu li {
  border-radius: 9px 9px 9px 9px;
  color: #EEE;
  background-color: slategray;
}
.subdetail ul.clicky-menu li button a { 
  padding: 0;
}

.main-wrapper {
  width: 82%;
  padding: 0 2rem;
  margin: 1rem auto;
}

.hotel-text {
  font-size: larger;
}

.tempinfo {
  font-size: smaller;
  border: 1px solid;
  margin: 10px 0px;
  padding:15px 10px;
  color: midnightblue;
  background-color: #dff2bf;
}

.largefont {
    font-size: xx-large;
}

.main-header {
  background-color: var(--val-blue);
  color: white;
  padding: 0 2rem;
  margin: 1rem auto;
  font-size: 2em;
  text-align: center;
}

.main-map {
  padding: 2rem 0;
  width: 100%;
  height: 450px;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc( ((100% - 4rem)/3)) 2rem calc( ((100% - 4rem)/3)) 2rem calc( ((100% - 4rem)/3));
  grid-template-columns: repeat(3, calc( ((100% - 4rem)/3)) ); 
  grid-gap: 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 2rem 0;
}


.card {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 3px 8px rgb(100,100,100);
  box-shadow: 0px 3px 8px rgb(100,100,100);
  cursor: pointer;
}
.card > img, .item > img {
  width: 100%;
  height: auto;
  display:block;
}

.item {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
}

.item-price {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-gap: 0 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  justify-items: center;
}


.item p, .item ul {
  padding: .5em;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(3, auto); /* 3 IMAGES PER ROW */
  grid-gap: 10px;
  margin: 1em auto; /* HORIZONTAL CENTER */
}
/* (A2) ON SMALL SCREENS */
@media screen and (max-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, auto); /* 2 IMAGES PER ROW */
  }
}
 
.gallery img {
  width: 100%;
  height: 250px;
  /* FILL, CONTAIN, COVER, SCALE-DOWN : USE WHICHEVER YOU LIKE */
  object-fit: cover;
}

.gold{
  color: rgb(255, 215, 0);
  font-size: xxx-large;
  text-decoration: none;
}
.blue{
  color: var(--val-blue);
  font-size: xxx-large;
  text-decoration: none;
}
.black{
  color: black;
  font-size: xxx-large;
  text-decoration: none;
}
.phone{
  padding: 20px 0 20px;
}

.golf-courses {
  background-color: rgb(236, 228, 228);
  margin: .5rem auto;
  font-size: 1em;
  width: 100%;
}
.golf-courses p {
  padding: .4rem;
}
.golf-courses a {
  color: royalblue;
  text-decoration: none;
}

input:focus,
textarea:focus {
  outline: 3px solid var(--val-blue);
}

.sub-wrapper .item {
  cursor: default;
}
.sub-wrapper {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 1fr;
  grid-template-columns: 33% 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.sub-wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.sub-wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.sub-wrapper .contacts {
  padding: 0;
}

.contacts {
  background: #4b5195;
  color: #fff;
}

.form {
  background: #fff;
}

.form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 20px 1fr;
  grid-template-columns: 25% 1fr;
  grid-gap: 20px;
  margin: 2em 1em;
}
.form > * {
  padding: .5em;
}

.form label {
  display: block;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: bold;
}

.full-width {
  grid-column: 1/-1;
  -ms-grid-column-align: center;
      justify-self: center;
}

.form input[type=submit] {
	background : url("/Images/golfer-3.jpg") no-repeat center;
	background-size: cover;
	width: 125px;
	height: 125px;
	border : none;
	color : transparent;
	cursor: pointer;
}

.center-content {
  margin: auto;
}
.center-text {
  text-align: center;
}

form#quotes fieldset
{
  display:block;
  padding:5px;
  margin:15px 0 0 0;
  font-family:verdana, sans-serif;
  font-weight:bold;
  font-size:.95em;
  font-style:italic;
  border:1px solid #37CD05;
  color:#555;
  background-color: rgb(236, 228, 228);
  text-align: center;
}
form#quotes legend
{
  display:block;
  padding:5px;
  font-family:verdana, sans-serif;
  font-weight:normal;
  font-size:1.5em;
  font-style:italic;
  color:#339900;
  line-height:1.5em;
  border:1px solid #37CD05;
  background-color: rgb(236, 228, 228);
}

form#quotes input[type=submit] {
  background : url("/Images/golfer-3.jpg") no-repeat center;
  background-size: cover;
  width: 125px;
  height: 125px;
  border : none;
  color : transparent;
  cursor: pointer;
}
form#quotes .button {
  background-color:  #339900;
  width: 125px;
  height: 125px;
  color : #fff;
  font-size : 16px;
  margin-right: 100px;
}

table.ben-table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
  margin: 30px 5px 10px 5px;
  white-space: nowrap;
}

.ben-table thead {
  background-color: #37CD05;
}
.ben-table tbody td:nth-child(1):not(.center-text) {
  text-align: left;
  padding-left: 10px;
}
.ben-table tbody td {
  text-align: center;
}
.ben-table tbody tr:hover {
  background-color: #ddd;
}
.ben-display tbody td:nth-child(1) {
  text-align: center;
  padding: 6px;
}

p.season {
  font-weight: bold;
  padding-top:  20px;
  padding-bottom: 20px;
  background-color: #fff004;
  text-align: center;
  margin: 0 auto;
}
.monofont{
  font-family: 'Roboto Mono', monospace;
  font-weight: bold;
  font-size: smaller;
}

footer{
  width: 100%;
  background: #111;
}
footer .content{
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .content p,a{
  color: #fff;
}
footer .content .box{
  width: 45%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;

}
footer .content p{
  text-align: justify;
}
footer .content .lower .topic{
  margin: 24px 0 5px 0;
}
footer .content .lower i{
  padding-right: 16px;
}
footer .content .middle{
  padding-left: 80px;
}
footer .content .middle a{
  line-height: 32px;
}
footer .content .right input[type="text"]{
  height: 45px;
  width: 100%;
  outline: none;
  color: #d9d9d9;
  background: #000;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 17px;
  border: 2px solid #222222;
}
footer .content .right input[type="submit"]{
  height: 42px;
  width: 100%;
  font-size: 18px;
  color: #d9d9d9;
  background: black;
  outline: none;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  border: 2px solid #eb2f06;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.content .right input[type="submit"]:hover{
  background: white;
  color:  black;
}
footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content .media-icons a:hover{
  border-color: #eb2f06;
}
footer .bottom{
  width: 100%;
  text-align: right;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
}
footer .bottom a{
  color: #eb2f06;
}
footer a{
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer a:hover{
  color: #eb2f06;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
  }
}
@media (max-width:950px){
  footer .content .box{
    width: 50%;
  }
  .content .right{
    margin-top: 40px;
  }
}
@media (max-width:560px){
  footer{
    position: relative;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle{
    padding-left: 0;
  }
}

@media screen and (max-width: 990px) {
  header {
    background-position: right bottom;
    padding-top: 0;
  }
  .nav-wrapper-inner {
    width: 100%;
  }

  #menu-toggle {
    display: block;
  }
  #site-navigation {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: calc(100vh - 100px);
    top: 100px;
    left: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    z-index: 999999;
    font-size: xx-large;
    background-color: rgba(65, 57, 57, .8);
  }

  .subheader {
    width: 100%;
    padding-top: 5em;
    padding-bottom: 1em;
    margin: 0 auto;
    margin-top: 2em;
    background-color: rgba(65, 57, 57, .4);
  }
  .subheader h2 {
    font-size: small;
  }
  .subdetail {
    padding: 1em;
    font-size: small;
  }

  .main-wrapper {
    width: 100%;
    padding: 0;
  }

  .main-wrapper > p, .hotel-text {
    padding: 0 .5em;
  }
  
  .main-header {
    background-color: var(--val-blue);
    font-size: .8em;
    text-align: center;
    width: 100%;
    padding: 1em 0;
  }

  .grid, .form, .sub-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; 
    grid-gap: 2rem;
    padding: .5em;
    margin: 0;
  }

  .grid > *:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1/1;
  }
  .grid > *:nth-child(1) .item {
    position: inherit;
    opacity: 100%;
  }
  
}
