:root {
    --primary-color: rgba(0, 0, 0, 0.55);
    --overlay-color: rgba(0, 0, 0, 0.85);
    --menu-speed: 0.75s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.slide-container {
    max-width: 960px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
	padding-bottom: 50px;

}


/* ~~~~~~~~~~~~~~~~~~~~~ ADDED FOR TOP NAVIGATION ----------------- */
.top-navigation-container-info-page {
    position: fixed !important; /* Fix to the top of the viewport */
    top: 0; /* Align to the top */
    width: 100%;
    max-width: 960px; /* Limit the width to 960px */
    height: 35px; /* Set a height for the container */
    z-index: 7; /* Ensure it’s above other elements */
    display: flex; /* Flexbox layout */
    justify-content: space-evenly; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    background-color: #fff; /* Background color */
    border-bottom: 1px solid #ccc; /* Optional border to separate from content */
   /* transform-origin: top center; *//* Ensure the origin remains fixed */
      margin: 0 auto;*/ /* Center the container horizontally */
    /*  left: 0;*/
    /*  right: 0; */
	    padding: 0 30px; /* Add padding for spacing from screen edges */

}

/* New Home button styling for Navigation Container*/
/* Separate styling for each button */
.top-home-button-info-page,
.top-exit-button-info-page {
    flex: none;
    text-align: center;
    padding-right: 0.5em;
    background-color: #fff;
    box-shadow: none;
	margin: 0;
}


.container7 {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    z-index: 110;
    visibility: visible;
}

.video7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    z-index: 110;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-size: 16px;
    padding: 1em;
}

a:link {
    color: #ADD8E6;
}

a:visited {
    color: orange;
}

h2,
h3,
h6,
h7 {
    text-align: center;
    margin-bottom: 10px;
    color: black;
}

h1 {
    margin-bottom: -10px;
}

.hh4 {
    margin-top: 20px;
    margin-bottom: 1px;
    font-size: 1.0rem;
    font-style: italic;
}

h6 {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: normal;
}

[data-role='page'] {
    width: 100%;
    max-width: 960px;
    z-index: 3;
    padding: 0;
    padding-top: 35px;
    margin: 0 auto;
    box-shadow: none;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ui-content {
    width: 100%;
    max-width: 960px;
    margin: auto;
    padding-bottom: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
    padding-top: 0 !important;
}

.info-page-navigation {
    justify-content: center;
    padding: 0 1em;
}

.ui-btn {
    margin: 0;
    padding: 0;
}

.left-nav-button {
    margin-left: 0.5em;
}

.right-nav-button {
    margin-right: 0.5em;
}

.fullwidth {
    max-width: 100% !important;
    height: auto !important;
    margin-top: 20px !important;
}

.ui-page {
    padding-bottom: 50px;
}

.fixedfooter {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
}

.showcase {
    background: var(--primary-color);
    color: #fff;
    height: 100vh;
    position: relative;
}

.showcase:before {
    content: '';
    background: url('images/showcase.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.showcase .showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.showcase h1 {
    font-size: 4rem;
}

.showcase p {
    font-size: 1.3rem;
}

.btn {
    display: inline-block;
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.7;
}

.menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
}

.menu-wrap .togglertwo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .hamburger>div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}

.menu-wrap .hamburger>div::after {
    top: 10px;
}

.menu-wrap .togglertwo:checked+.hamburger>div {
    transform: rotate(135deg);
}

.menu-wrap .togglertwo:checked+.hamburger>div:before,
.menu-wrap .togglertwo:checked+.hamburger>div:after {
    top: 0;
    transform: rotate(90deg);
}

.menu-wrap .togglertwo:checked:hover+.hamburger>div {
    transform: rotate(225deg);
}

.menu-wrap .togglertwo:checked~.menu {
    visibility: visible;
}

.menu-wrap .togglertwo:checked~.menu>div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
}

.menu-wrap .togglertwo:checked~.menu>div>div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-wrap .menu>div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div>ul>li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-wrap .menu>div>div>ul>li>a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}

.fixedfooter {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
}

h6 {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: normal;
}

.halfwidth {
    width: 50%;
    margin-top: 20px;
    float: left;
}

.halfwidthleft {
    width: 50%;
    margin: 10px;
    float: left;
}

.halfwidthright {
    width: 50%;
    margin: 10px;
    float: right;
}

.quarterwidthleft {
    width: 25%;
    margin: 10px;
    float: left;
}

.quarterwidthright {
    width: 25%;
    margin: 10px;
    float: right;
}

.quarterwidth {
    width: 25%;
    margin: 10px;
    float: center;
}

.roundedicon {
    border-radius: 6px;
}

.numberview {
    display: inline-block;
    width: 20%;
    background-color: #3366ff;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
    margin-top: 5px;
    border-bottom: 3px solid #2f9697;
    box-shadow: none;
    padding: 10px;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .clearfix {
    zoom: 1;
}

.twothirdswidthleft {
    width: 66%;
    margin: 10px;
    float: left;
}

.twothirdswidthright {
    width: 66%;
    margin: 10px;
    float: right;
}

.halfwidthcenter {
    width: 50%;
    margin-top: 20px;
    text-align: center;
}

.para {
    margin-top: 0px;
    text-indent: 3em;
    padding: 0px 0px 0px 0px;
}

.hh4 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.0rem;
    font-style: italic;
}

span.apptitle {
    text-align: center;
    font-size: 1.9rem;
    font-family: arial black;
}

.quote {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.bullets {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.noitalic {
    font-style: normal;
    font-weight: bold;
}

.islandicon {
    width: 50px;
    float: left;
    margin: 5px;
}

.heading {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0px !important;
}

span.small {
    font-size: .75rem;
}

.centerit {
    text-align: center;
}

.features-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.features-slides-wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.slide {
    flex: 0 0 auto;
    width: 30%;
    max-width: 130px;
    margin-right: 10px;
    scroll-snap-align: start;
}

.slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.features-slider-container::before,
.features-slider-container::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    z-index: 2;
}

.features-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.features-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: top;
    font-size: 50px;
    font-weight: bold;
    color: red;
    z-index: 3;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease-in-out;
}

.arrow-left:hover,
.arrow-right:hover {
    background-color: rgba(0, 0, 0, 0);
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.arrow-left::before {
    content: '‹';
}

.arrow-right::before {
    content: '›';
}