.index-page-wrapper {
  position:absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  background: var(--bg-image);
  background-position:50% 50%;
  background-repeat:no-repeat;
  background-size:cover;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  text-align:center;
  user-select: none;
}

.index .logo {
  /*filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=60);*/
  opacity:.6
}

.index-inline-block {
  display:inline-block;
  vertical-align:middle;
}

.index-slogan-cnt {
  text-align:center;
  margin-top:250px;
}

.slogan {
  font-family:'Playfair Display', sans-serif;
  font-weight:normal;
  font-size:48px;
  color:#fff;
  line-height:70px;
  letter-spacing:1px;
  text-transform:uppercase;
  position:relative;
  margin-bottom:40px;
}

.slogan:after {
  content:'';
  width:300px;
  height:1px;
  background-color:#737373;
  position:absolute;
  left:50%;
  margin-left:-150px;
  bottom:-12px
}

.subhead {
  font-family:'Playfair Display Bold', sans-serif;
  font-weight:normal;
  font-size:12px;
  color:#fff;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:6px
}

.index-menu-cnt {
  max-width:1024px;
  margin-top:120px
}

.index-menu li {
  display:inline-block;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  vertical-align:middle;
  padding-left:33px;
  padding-right:33px;
  position:relative;
  margin-bottom:80px
}

.index-menu li:before {
  content:'';
  position:absolute;
  left:0;
  top:50%;
  height:55px;
  width:1px;
  background:#fff;
  /*filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);*/
  opacity:.3;
  margin-top:-27px
}

.index-menu li:first-child:before {
  display:none
}

.index-menu li a {
  font-family:'Playfair Display Bold', sans-serif;
  font-weight:normal;
  font-size:13px;
  color:#fff;
  line-height:20px;
  text-transform:uppercase;
  text-decoration: none;
  letter-spacing:4px;
  display:block;
  -webkit-transition:color .2s;
  -o-transition:color .2s;
  transition:color .2s;
}

.index-menu li a:hover {
  color: #f5cb58;
}


/* Mobile styles */
@media only screen and (max-width: 768px) {
  .index-page-wrapper {
    padding: 20px;
  }

  .index-slogan-cnt {
    margin-top: 100px;
  }

  .slogan {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .slogan:after {
    width: 200px;
    margin-left: -100px;
  }

  .subhead {
    font-size: 10px; /* Slightly smaller font */
    letter-spacing: 4px; /* Reduced letter spacing */
  }

  .index-menu-cnt {
    margin-top: 80px;
    max-width: 100%;
  }

  .index-menu li {
    display: block;
    padding: 15px 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .index-menu li:before {
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    margin-top:-10px;
    height:1px;
    background:#fff;
    /*filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);*/
    opacity:.3;
  }

  .index-menu li:first-child:before {
    display:none
  }

  .index-menu li a {
    font-size: 12px;
    letter-spacing: 3px;
  }
}

@media only screen and (max-width: 480px) {
  .slogan {
    font-size: 24px;
    line-height: 36px;
  }

  .slogan:after {
    width: 150px;
    margin-left: -75px;
  }

  .subhead {
    font-size: 9px;
  }

  .index-menu-cnt {
    margin-top: 80px;
  }

  .index-menu li {
    margin-bottom: 15px;
  }

  .index-menu li a {
    font-size: 11px;
  }
}
