* {
    padding: 0px;
    margin: 0px;
}

body {
    background: rgb(141, 154, 184);
}

@font-face {
    font-family: 'lighthouse';
    src: url('roundest-serial-bold.ttf');
}

.home {
    background: rgb(141, 154, 184)
}
.supercontainer {
    background: #1c2230;
    padding-top: 10px;
    padding-bottom: 20px;
}
.supercontainer .container {
    margin-top: 0;
    width: 80%;
}


.loading {
    width: 100%;
    height: 100vh;
    background: #1c2230;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: absolute;
    animation: forwards  1.2s load;
    opacity: 0;
    z-index: 10;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading img {
    width: 30%;
}

@keyframes load {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
        display: none;
    }
}

.navigation_home {
    margin: auto;
    position: absolute;
    z-index: 5;
    right: 0;
    top: 250px;
    height: 350px;
    margin-right: 15px;
    display: flex;
    width: 600px;
    text-align: center;
}

.navigation_contain {
    display: flex;
    width: 600px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'ligthouse';
    z-index: 5;
}

.navigation_contain h2 {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    width: 150px;
    margin: auto;
    font-family: 'lighthouse';
}

.navh:hover {
    scale: 1.1;
}

.navh img:hover{
    box-shadow: 5px 5px 5px;
}


.navigation_home img {
    width: 70%;
    margin: 0px 0px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    margin: 5px;
    border-radius: 50%;
}

.one1 {
    opacity: 0;
    animation: navslide 2s 1.2s forwards;
}

.two2 {
    opacity: 0;
    animation: navslide 2s 1.9s forwards;
}

.three3 {
    opacity: 0;
    animation: navslide 2s 2.8s forwards;
}


@keyframes navslide {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.sticky img{
    width: 120px;
    margin: auto;
    padding: 5px 0px;
    justify-content: center;
    display: flex;
}

.sticky {
    top: 0;
    background-color: rgba(28, 34, 48, 0.6);
    width: 100%;
    position: absolute;
    z-index: 5;
    border-bottom: 5px solid white;
    display: flex;
    box-shadow: 5px 5px 5px;
}

.sticky li {
    text-decoration: none;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.sticky {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sticky img {
    max-width: 120px;
    height: auto;
    margin: 10px;
}


.introduction {
    background-image: url('./testimg-fotor-20231024213344.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    animation: blurry 1s 2s forwards;
}
.supercontainer {
    position: relative;
    z-index: 10px;
}
.intro_contain {
    margin-top: 100px;
    margin-bottom: 100px;
}

@keyframes blurry {
    0% {
        filter: none;
    }

    100% {
        filter: brightness(99%);
    }
}

.title {
    font-family: 'lighthouse';
    color: black;
    position: absolute;
    z-index: 5;
    top: 250px;
    margin: 0px 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    width: 800px;
    border-bottom: 5px solid #6e8c8e;
    border-radius: 15px 15px 0px 0px;
    animation: 2s forwards slide-left;
    translate: transformX(-150%);
    opacity: 0;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slide-left {
    0% {
        transform: translateX(-150%)
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
        box-shadow: 5px 5px 5px black;
    }
}

.title h1 {
    font-size: 120px;
    text-align: center;
}
.title h2 {
    font-size: 60px;
    text-align: center;
}

.title .button {
    border: 3px solid black;
    font-family: 'lighthouse';
    background: #6e8c8e;
    margin: auto;
    display: flex;
    font-size: 30px;
    width: 170px;
    justify-content: center;
}

.title .button a:link {
    color:#1c2230;
    text-decoration: none;
}
.title .button a:active {
    color: #1c2230;
    text-decoration: none;
}
.title .button a:visited {
    color: #1c2230;
    text-decoration: none;
}

.title .button:hover {
    background: rgba(255, 255, 255, 0.6);
    scale: 1.1;
}

.title p {
    color: black;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.title p span {
    color: #b4211a;
    position: relative;
}
/** .title p span::before {
    content: "";
    height: 30px;
    width: 2px;
    position: absolute;
    top: 50%;
    right: -8px;
    background: black;
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}
.title p span.stop-blinking::before {
    animation: none;
} 

@keyframes blink {
    50% { opacity: 0 }
} **/

@media screen and (max-width: 1500px) {
    .navigation_home  {
        top: 520px;
        left: 0;
        right:auto;
        width: 830px;
        margin: 0px 20px;
    }
    .navigation_home img {
        width: 60%;
    }
    .navigation_contain {
        width: 830px;
    }
    .title {
        top: 170px;
    }

}
@media screen and (max-width: 960px) {
    .title {
        margin: auto;
        left: 0;
        right: 0;
    }
    .navigation_home {
        margin: auto;
        left: 0;
        right: 0;
    }
}
@media screen and (max-width: 870px) {
    .title {
        width: 90%;
        height: auto;
        margin: auto;
        left: 0;
        right: 0;
    }
    .navigation_home {
        width: 90%;
        margin: 0 auto;
        display: inline-flex;
        top: 32em;
        left: 0;
        right: 0;
    }
    .title h1 {
        font-size: 13vw;
    }
    .title h2 {
        font-size: 6.5vw;
    }
    .title p {
        font-size: 5vw;
    }
    .title .button {
        font-size: 4vw;
        width: 150px;
        border: 0.5vw solid;
    }
    .navigation_contain h2 {
        font-size: 3.5vw;
        width: 25vw;
    }
}

.introduction {
    overflow: hidden;
}
@media screen and (max-width: 650px) {
    .title {
        width: 85%;
    }
    .navigation_home {
        width: 90%;
        margin: 0 auto;
        display: inline-flex;
        top: 25em;
        left: 0;
        right: 0;
    }
}
@media screen and (max-width: 450px) {
    .navigation_home {
        width: 90%;
        margin: 0 auto;
        display: inline-flex;
        top: 20em;
        left: 0;
        right: 0;
    }
}
@media screen and (max-width: 350px) {
    .navigation_home {
        width: 90%;
        margin: 0 auto;
        display: inline-flex;
        top: 20em;
        left: 0;
        right: 0;
    }
}
@media screen and (max-width: 350px) {
    .navigation_home {
        width: 90%;
        margin: 0 auto;
        display: inline-flex;
        top: 16em;
        left: 0;
        right: 0;
    }
    .navigation_home img {
        padding: 10px;
    }
}

ul li {
    float: right;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 38px;
    margin: 20px;
    font-family: 'Concert One', cursive;
}

.nav-bar img {
    width: 125px;
}

.nav-bar a:link {
    color: #f1e5b5;
    text-decoration: none;
}

.nav-bar a:active {
    color: #f1e5b5;
    text-decoration: none;
}

.nav-bar a:visited {
    color: #f1e5b5;
    text-decoration: none;
}
        
.nav-bar img:hover {
    scale: 1.05;
}

.nav-bar {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: absolute;
    z-index: 10 !important;
    top: 0; 
    margin: auto;
    background: #1e406e;
    box-shadow: 0px 5px 5px;
}

.main nav, .market nav, .lighthousebody nav, .contactusbody nav, .home nav {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background: #1e406e;
    box-shadow: 0px 5px 5px;
    z-index: 6;
    z-index: 10 !important;
}


.navbarmainbody {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}

.menu {
    margin: auto;
}

.menu {display: flex;}
.menu li {width: 210px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
    font-family: 'lighthouse';
    margin: auto;
}

.menu li a:hover {
    scale: 1.05;
}

.menu li a img {
    scale: 1.12;
}
.menu li a img:hover {
    scale: 1.20;
}
.menu_bar_mobile a:hover {
    background: #1c2230;
    border-radius: 15px;
    padding: 15px 5px; 
}

.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color:white;
    cursor: pointer;
    font-size: 2.2rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}

hr.solid {
    border-top: 3px solid red;
  }

.mobile-nav {
    padding-left: 30px
}
#check {display: none;}
@media(max-width: 1270px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 90vh;
        position: fixed;
        top: 0;
        top: -200%;
        z-index: 100;
        transition: all 0.2s ease-in-out;
        background: #6e8c8e;
        border-bottom: 5px #f1e5b5 solid;
        box-shadow: 0px 5px 5px;
    }
    .menu .logo_nav_img_mobile {
        display: none;
    }
    .menu li {width: 90%;}
    .nav-bar a:link {
        color:#1c2230;
    }
    
    .nav-bar a:active {
        color:#1c2230;
    }
    
    .nav-bar a:visited {
        color:#1c2230;
    }

    .menu li a {
        font-size: 5vh;
        line-height: 0px;
        margin: 3%;
    }
    .fas.fa-times {
        color:#151d28;
    }

    .menu li {
        height: 5vh;
    }

    .menu_bar_mobile a:hover {
        background-color: #6e8c8e;
    }

    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {top: 0;}
    .menu_bar_mobile {border-bottom: solid rgba(28, 34, 48, 0.6) 1px}
}

@media screen and (min-width: 1270px) {
    .logo_nav_img {
        display: none;
    }
    .mobile-nav {
        display: none;
    }
    .logo_nav_img_computer {
        display: none;
    }

}
.lighthousebody .golfcontainer img {
    width: 90%;
}
.lighthousebody .golfimagecontain {
    width: 80%;
    border: 5px solid #1e406e;
}

.mingolfheader {
    background-image: url('./image000000-fotor-202310222349.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    animation: 2s 1.2s darkness forwards;
    position: relative; 
    display: flex;
    align-items: center;
}
.market .mingolfheader {
    background-image: url('./IMG_20231023_153500-fotor-20231025195055.jpg');
}
.contactusbody .mingolfheader {
    background-image: url('./image000005-fotor-202310252046.jpg');
}
.lighthousebody .mingolfheader {
    background-image: url('./tips-for-easier-laundromat-trips-2145703-hero-7284dc0c51e647dab28aae46fdc6428e-fotor-2023102520173.jpg');
}

.heading {
    border-bottom: 5px solid #1e406e;
    font-family: 'lighthouse';
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading h1 {
    margin: auto;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 6;
    text-align: center;
    font-size: calc(5vw + 35px);
    top: 55%;
    color: #f1e5b5;
    animation: slide-in 1s 1.2s forwards;
    overflow: hidden;
    opacity: 0;
}

@keyframes slide-in {
    0% {
        transform: translateY(-100%);
    }
    1% {
        opacity: 1;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes darkness {
    0% {
        filter: brightness(100%)
    }
    100% {
        filter: brightness(50%)
    }
}

.divider {
    width: 90%;
    display: flex;
    margin: auto;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    
    .diamond {
        background: rgba(0, 0, 0, 0);
        height: 12px;
        text-align: center;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        width:12px;
        margin: 0px 5px;
        border: 3px solid #1c2230;
    }
    .diamondbig {
        background: rgba(0, 0, 0, 0);
        height: 20px;
        text-align: center;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        width:20px;
        margin: 0px 7px;
        border: 3px solid #1c2230;
    }

    .diamond_container {
        display: flex;
        margin: auto;
        align-items: center;
    }
    .divider_line {
        width: 40%;
        height: 3px;
        background: #1c2230;
        align-items: center;
    }
}

.container {
    background: rgb(104, 112, 132);
    width: 90%;
    margin: auto;
    margin-top: 10px;
    border: 3px solid #1c2230;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.maincontain {
    animation: slide-up2 2s 0.2s forwards;
}

@keyframes slide-up2 {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0%);
    }
}

.container h1, p {
    font-family: 'lighthouse';
    color: #1c2230;
    margin: auto;
    text-align: center;
}
.container h1 {
    font-size:calc(30px + 1.5vw);
    width: 90%;
}
.container p {
    font-size: 2vw;
    font-size:calc(12px + 1.5vw);
    width: 90%;
}

/** @media screen and (max-width: 380px) {
    .divider .diamond {
        width: 8px;
        height: 8px;
    }
    .divider .diamondbig {
        width: 16px;
        height: 16px;
    }
} **/

.container2 {
    background:rgba(0, 0, 0, 0);
    margin: auto;
    justify-content: center;
}
.container-omega {
    width: 100%;
    background:#1c2230;
    position: relative;
}

.container-omega .diamondbig,.container-omega .divider .diamond, .container-omega .container {
    border: solid 3px rgb(104, 112, 132);
}

.container-omega .divider .divider_line {
    background: rgb(104, 112, 132);
}

.container-omega .container {
    margin-top: 0px;
    margin-bottom: 0px;
}


.layer1 {
    background-image: url("./minigolfwave1.svg");
    margin-bottom: -5px;
}

.space {
    aspect-ratio: 960/100;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container-omega .golfimage {
    width: 550px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
    transition: all 1s ease; 
    box-shadow: 0; 
    filter: brightness(100%);
    border-bottom: 5px solid #1e406e;
}

.golfimage:hover {
    transition: all .5s ease;
    box-shadow: 5px 5px 5px #dfdfdf;
    filter: brightness(50%);
}


.containercontain {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.scheduletable {
    width: 500px;
}
.tablestyle {
    font-size: 30px;
    border-collapse: collapse;
    font-family: 'lighthouse';
    border-radius: 15px 15px 0 0; 
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    align-items: center;
    z-index: 1;
    margin: auto;
}

td, th {
    padding: 12px 15px;
    text-align: left;
}

.tablestyle thead {
    background: #1e406e;
    box-shadow: 0px 5px 5px;
}

.schedule tbody tr {
    border-bottom: 1px solid gray;
}

table tbody tr:last-of-type {
    border-bottom: 5px solid #1e406e;
}

table tbody tr:nth-of-type(even) {
    background: #dfdfdf;
}

table tbody tr:nth-of-type(odd) {
    background: white;
}

.container-beta {
    border: 3px rgb(104, 112, 132) solid;
    width: 90%;
    min-width: 100px;
    margin: auto;
}

.rectangle {
    width: 100%;
    align-items: center;
    height: 50px;
    background: rgb(104, 112, 132);
    position: absolute;
    box-shadow: 0px 3px 3px 3px #1e406e;
}

.container-beta-prime {
    display: flex;
    align-items: center;
}

table {
    position: relative;
}

.golftable {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 90%;
    height: auto;
}


@media screen and (max-width: 800px) {
    .container-omega .golfimage {
        width: 95%;
    }
    .scheduletable {
        width: 95%;
    }
    .tablestyle {
        font-size: 4vw;
    }
    .golftable {
        width: 95%;
    }
}
/** @media screen and (max-width: 290px) {
    .divider .diamond {
        width: 5px;
        height: 5px;
    }
    .divider .diamondbig {
        width: 12px;
        height: 12px;
    }
} **/

.blockade {
    width: 80%;
    display: flex;
    margin: auto;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.line2 {
    width: 40%;
    height:3px;
    background: #1e406e;
}
.square {
    width: 15px;
    height: 15px;
    background: rgba(104, 112, 0, 0);
    border: 3px #1e406e solid;
    margin: auto;
    color: rgb(141, 154, 184)
}

.layer2 {
    background-image: url("./minigolfwave2.svg");
    margin-top: -5px;
}

a {
    text-decoration: none;
    color: #151d28;
}

.golfimagecontain img {
    width: 30%;
    transition: all 1s ease; 
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: flex-start;
    box-shadow: 0; 
    filter: brightness(100%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    border-bottom: 5px solid #1e406e;
}

.golfimagecontain img:hover {
    transition: all 1s ease;
    box-shadow: 5px 5px 5px black;
    filter: brightness(50%);
}

.golfimagecontain {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    background: white;
    justify-content: center;
    align-items: center; 
    position: relative;
    margin-bottom: 20px;
}

.golfcontainer {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}

.containermaingolfimages {
    background-color: #8d9ab8;
    background-image: url("https://www.transparenttextures.com/patterns/black-linen.png");
    width: 100%;
}
.lighthousebody .containermaingolfimages {
    background-color: #1c2230;
    background-image: none;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 1000px) {
    .golfimagecontain img {
        width: 45%;
    }
    .golfimagecontain .mobilebyebye{
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .golfimagecontain img {
        width: 90%;
    }
}

.footer {
    background: black;
    width: 100%;
    border-top: solid 5px white;
    position:relative;
}

.footerimg {
    width: calc(50px + 50vw);
    max-width: 350px;
    margin: 20px;
}

.rights {
    margin: auto;
    width: 100%;
    text-align: center;
    color: gray;
    font-size: 12px;
    margin: 10px 0px;
}

.footer a:link {
    color:gray;
    text-decoration: none;
}
.footer a:active {
    color: gray;
    text-decoration: none;
}
.footer a:visited {
    color: gray;
    text-decoration: none;
}

.footer .diamond, .footer .diamondbig {
    border: solid 3px gray;
}

.footer .divider_line {
    background: gray;
}

.footer .divider {
    display: flex;
    justify-content: center;
    margin: auto;
    left: 0;
    right: 0;
}

.addressfooter, .numberfooter, .mailfooter {
    color: gray;
    text-align: left;
    margin: 0px 20px;
    margin-bottom: 10px;
}

.adressfootermain, .mailfootermain, .numberfootermain{
    display: flex;
    margin-left: 20px;
}

.contactusfooter {
    text-align: left;
    color: gray;
    margin: 10px 20px 10px 20px;
    font-family: 'lighthouse';
}

#fcf-form {
    display:block;
}

.fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: white;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
    font-family: 'lighthouse';
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: 'lighthouse';
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    font-family: 'lighthouse';
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

.contactusbody .container {
    border-radius: 15px;
    border: none;
    box-shadow: 5px 5px 5px;
}

.inventory {
    font-family: 'lighthouse';
    display: flex;
    flex-wrap: wrap;
}

.inventorycontain {
    width: 30vw;
    text-align: center;
    margin: auto;
    background-color: rgb(104, 112, 132);
    border-radius: 15px;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 10px  #dfdfdf;
    display: flex;
    align-items: center;
    height: 15em;
    margin-top: 15px;
} 

.inventorycontain p {
    margin: 0px 10px;
}
.inventorycontain h2 {
    font-size: 30px;
}

.inventory img {
    width: calc(30px + 5vw);
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

.inventory img:hover {
    transform:rotate(360deg);
    transition: all 1s ease-in-out;
}

.inventory {
    margin-bottom: 15px;
}

@media screen and (max-width: 900px) {
    .inventorycontain {
        width: 80%;
        height: auto;
        margin-bottom: 20px;
    }
}

    
.market .scheduletable {
    margin-top: 15px;
    margin-bottom: 15px;
}


.contactusmore {
    font-family: 'lighthouse';
    font-size: 25px;
    text-align: center;
    padding: 20px 0px;
    border-bottom: 5px solid #1e406e;
    background: #1c2230;
    width: 100%;
    margin-top: 20px;
}

.contactusmore p {
    width: 90%;
    color: rgb(104, 112, 132);
}

.contactuscontactusmore {
    display: flex;
    margin-top: 15px;
}

.contactuscontactusmore p {
    font-size: 20px;
    color: rgb(104, 112, 132);
}

.phone, .email {
    width: 100%;
}
.phone a, .email a {
    color: rgb(104, 112, 132);
}

.phone i, .email i {
    border-radius: 50%;
    background:rgb(104, 112, 132);
    padding: 15px;
    margin-bottom: 5px;
}

.phone {
    border-right: 1px solid rgb(104, 112, 132);;
}
.email {
    border-left: 1px solid rgb(104, 112, 132);
}

.contactusmore .divider_line {
    background: rgb(104, 112, 132);
}
.contactusmore .diamond, .contactusmore .diamondbig {
    border: 3px solid rgb(104, 112, 132);
    margin-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    margin: 0px 7px;
}

.contactusmore .diamond_container {
    display: flex;
    align-items: center;
}

.market .scheduletable {
    width: 90%;
}

.layer3 {
    background-image: url("./minigolfwave3.svg");
    margin-bottom: -5px;
}

.lighthousemain {
    background-color: #1c2230;
    width: 100%;
}

.lighthousemain .diamond, .lighthousemain .diamondbig {
    border: 3px solid rgb(104, 112, 132);
}
.lighthousemain .divider_line{
    background: rgb(104, 112, 132);
}

.sliderflex {
    display: flex;
    animation: slideslider 30s infinite;
}
.slidercontent .slidercontentcontain {
    width: 80vw;
    display: block;
    margin: 0 auto;
    background: rgb(104, 112, 132);
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.wholecontent {
    border: 5px solid #1e406e;
    width: 80vw;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}
.slidercontent div p {
    width: 75vw;
    font-size: calc(1.5vw + 10px);
    margin: auto;
    justify-content: center;
}
.maincontentofsliders {
    height: calc(13lh + 1.5vw);
}
.slider {
    display: flex;
    width: 80vw;
    overflow: hidden
}
.slider {
    width: 80vw;
    margin: auto;
    display: flex;
}
.author {
    font-size: calc(10px + 1.5vw) !important;
    color: rgb(69, 72, 80);
    margin-bottom: 5px;
}
.source {
    font-size: calc(1.5vw + 10px) !important;
    color: #1e406e
}

.circlemain {
    width: 15px;
    height: 15px;
    background: rgb(69, 72, 80);
    border-radius: 50%;
    margin: 2px;
    box-shadow: 1px 1px 1px;
}
.circle {
    width: 15px;
    height: 15px;
    background: rgb(141, 154, 184);
    border-radius: 50%;
    margin: 2px;
    box-shadow: 1px 1px 1px;
}
.circlecontain {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.slidermain {
    display: flex;
    position: relative;
}

@keyframes slideslider {
    0%{
        transform: translateX(0vw)
    }   
    10% {
        transform: translateX(0vw)
    }
    20% {
        transform: translateX(-80vw)
    }
    30% {
        transform: translateX(-80vw)
    }
    40% {
        transform: translateX(-160vw)
    }
    50% {
        transform: translateX(-160vw)
    }
    60% {
        transform: translateX(-240vw)
    }
    70% {
        transform: translateX(-240vw)
    }
    80% {
        transform: translateX(-320vw)
    }
    90% {
        transform: translateX(-320vw)
    }

}
.oureviews {
    background: rgb(104, 112, 132);
    width: 70vw;
    height: calc(40px + 1.7vw);
    margin: auto;
    font-family: 'lighthouse';
    text-align: center;
    position: relative;
}
.oureviews h2{
    color: #1c2230;
    font-size: calc(10px + 1.7vw);
}
.oureviews i {
    width: 25px;
}
.stars {
    position: absolute;
    width: 70vw;
    margin: auto;
    top: 30%;
    font-family: 'lighthouse';
    text-align: center;
    animation: appeardisappear1 8s infinite;
}
.checkreviews {
    position: absolute;
    width: 70vw;
    top: 40%;
    margin: auto;
    font-family: 'lighthouse';
    text-align: center;
    animation: appeardisappear2 8s infinite;
}

@keyframes appeardisappear1 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes appeardisappear2 {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.wholecontent{
    background-color: rgb(104, 112, 132);
}

.layer4 {
    background-image: url("./minigolfwave4.svg");
    margin-top: -5px;
}

@media screen and (max-width: 600px) {
    .contactuscontactusmore p {
        font-size: 15px;
    }
}
@media screen and (max-width: 410px) {
    .contactuscontactusmore p {
        font-size: 10px;
    }
}
@media screen and (max-width: 290px) {
    .contactuscontactusmore p {
        font-size: 8px;
    }
}

.homeborder .diamondbig,.homeborder .divider .diamond, .homeborder .container {
    border: solid 3px rgb(104, 112, 132);
}
.homeborder .divider_line {
    background: rgb(104, 112, 132);
}

.homeborder .divider {
    margin-bottom: 20px;
    margin-top: 10px;
}

.supercontainer .container {
    border: 5px solid #1e406e;
}

@media screen and (max-height: 860px) and (min-width: 520px) {

}

@media screen and (max-height: 500px) {
    .logo_nav_img_computer img {
        width: 90px;
        padding-bottom: 50px;
    }
    .menu li a {
        font-size: calc(10px + 3vh);
        line-height: 0px;
    }
    .menu li {
        margin: 3vh;
    }
}
@media screen and (max-height: 328px) {
    .logo_nav_img_computer img {
        width: 70px;
        padding-bottom: 50px;
    }
}

