@charset "UTF-8";

/* SPA Responsive Navigation */

/*

Colours:

#fff5e9 rgba(255, 245, 233, 1) - Cream
#67686a - Dark Grey 
#c1a37f - Gold
#f5d9d3 - Pink 

*/


#rn-navigation {
    width: 100%;
    height: 50px;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    transition: all .5s ease-in-out;
    pointer-events: none;
    background-color: none; /* Edit this */
}

#rn-navigation.rn-open {
    background: rgba(255, 245, 233, 0.9); /* Edit this */
    height: 100%;
    pointer-events: auto;
}

#rn-nav-text {
    width: auto;
    height: auto;
    top: 17px;
    right: 15px;
    position: absolute;
    margin: 0;
    pointer-events: auto;
    font-family: "calder-script", sans-serif; /* Edit this */
    font-weight: 400; /* Edit this */
    font-style: normal; /* Edit this */
}

#rn-nav-text p {
    color: #67686a; /* Edit this */
	font-size: 1.20em;
}

#rn-nav-text p a {
    color: #67686a; /* Edit this */
    text-decoration: underline;
}

#rn-nav-text p a:hover {
    color: #c1a37f; /* Edit this */
    text-decoration: underline;
}

#rn-nav-button {
    width: 35px;
    height: auto;
    top: 10px;
    left: 10px;
    position: absolute;
    margin: 0;
    pointer-events: auto;
}

#rn-nav-button:after, #rn-nav-button:before, #rn-nav-button div {
  background-color: #67686a; /* Edit this */
  border-radius: 1px;
  content: '';
  display: block;
  height: 2px;
  margin: 7px 0;
  transition: all .5s ease-in-out;
}

#rn-nav-button.rn-toggle:before {
  transform: translateY(9px) rotate(135deg);
}

#rn-nav-button.rn-toggle:after {
  transform: translateY(-9px) rotate(-135deg);
}

#rn-nav-button.rn-toggle div {
  transform: scale(0);
}

#rn-nav-button {
    appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    background-color: transparent !important;
    box-sizing: content-box !important;
    margin: 0 !important;
    font: 400 13.3333px Arial;
    padding: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: none !important;
    border-image: none !important;
}

#rn-main-navigation {
    visibility: hidden;
    opacity: 0;
    pointer-events: auto;
}

#rn-main-navigation.rn-visible {
    visibility: visible;
    width: 90%;
    height: 90%;
    position: relative;
    top: 5%;
    left: 5%;
    text-align: center;
    opacity: 1;
    transition-delay: 0.5s !important;
    transition: opacity 0.5s ease-in-out;
}

#rn-main-navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#rn-main-navigation li {
	color: #67686a; /* Edit this */
	font-size: 2.50em; /* Edit this */
    margin: 0px 0px 16px 0px; /* Edit this */
    text-transform: uppercase;
    font-family: "calder-script", sans-serif; /* Edit this */
    font-weight: 400; /* Edit this */
    font-style: normal; /* Edit this */
}

#rn-main-navigation li a {
    color: #67686a; /* Edit this */
    text-decoration: none;
}

#rn-main-navigation li a:hover, #rn-main-navigation li.current-menu-item a, #rn-main-navigation li.current-page-ancestor a, #rn-main-navigation li.current_page_parent a {
    color: #c1a37f; /* Edit this */
    text-decoration: none;
}


/* Small */

@media only screen and (max-width: 449px) {
    
    
    /* Hidden */
    
    #sn-navigation {
        display: none !important;
    }
    
}


/* Small Phones */

@media only screen and (min-width : 450px) and (max-width: 699px) {
    
    
    /* Hidden */
    
    #sn-navigation {
        display: none !important;
    }
    
}


/* Large Phones */

@media only screen and (min-width : 700px) and (max-width: 959px) {
    
    
    /* Hidden */
    
    #sn-navigation {
        display: none !important;
    }

}


/* Desktop */

@media only screen and (min-width: 960px) and (max-width: 1599px) {

    /* Hidden */
    
    #rn-navigation {
        display: none !important;
    }
    
}


/* Large Desktop */

@media only screen and (min-width : 1600px) {
    
    /* Hidden */
    
    #rn-navigation {
        display: none !important;
    }
    
}