.navbar-nav li:has(> a[href="https://seasideevents.net/11-contact-us"]) {
  display: none;
}


body {
    padding-top: 29px;
    font-family:  sans-serif, Arial;
    background-color: #fff;
  }

  body > .container {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  @media (min-width: 768px) {
    body > .container {
      width: 100%
    }
  }
  @media (min-width: 992px) {
    body > .container {
      width: 100%
    }
  }
  @media (min-width: 1200px) {
    body > .container {
      width: 100%
    }
  }

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: #0F4534;
    padding: 1.5rem;
    color: white;
    width: 100%;
    max-width: 100%;
}


.logo img {
    height: 70px;
    width: 150px !important;
    object-fit: contain;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    position: relative;
}
.nav-links li {
    display: inline;
    position: relative;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.dropdown {
    display: none;
    position: absolute;
    background: #0F4534;
    top: 100%;
    left: 0;
    width: 150px;
    text-align: left;
    list-style: none;
    padding:  0 1px;
}

.dropdown li {
    padding: 5px 10px;
    background-color: #0F4534;
}
.dropdown a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 3px;
}

.dropdown a:hover {
    background: #212324;
}
.nav-links li:hover .dropdown {
    display: block;
}
ul.nav-links li span {
    position:absolute;
    top:-109px;
    right:-12px;
    padding-top:114px;
    font-size:10px;
}

header button {
    background: #ffffff;
    color: #0F4534;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    outline:none;
    border:none;
    text-transform:uppercase;
    font-size:16px;
    font-family: arial;
}


header button::before {
    content: "";
    background-image: url(images/Button-logo-jets.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    margin-left: 0.1rem; /* Move spacing to the left */
    order: 1; /* Puts the image after the button text */
}


header button a{
    text-decoration: none;
    color: #0F4534;
}

header button:hover a{
    text-decoration:none;
    color: #0F4534;
    background: transparent;
  }

    header button:hover {
    color: #fff;
    }

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


@media (max-width: 768px) {
    .nav-links{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0F4534;
        text-align: center;
        padding: 10px 0;
        height: 100vh;
        z-index:10;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .dropdown {
        position: static;
        margin: 0 auto;
        display: none;
        background: none;
        text-align: center;
        background:#0F4534;
    }
    .dropdown a{
        color:#fff;
    }
    .nav-links li:hover .dropdown {
        display: block;
        align-items: center;
    }
    .nav-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .menu-toggle {
        z-index: 1000;
    }
    header button {
        font-size:14px;
        padding: 10px 15px;
        font-style: 700;
    }
}

.footer {
    background: #0F4534;
    color: white;
    padding: 40px 6%;
    margin-top: -3px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid #FFF;
}
.footer-top img {
    width: 200px!important;
}
.subscribe {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe h3{
    position: absolute;
    top: 100px;
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
    color: #0F4534;
}
.subscribe input {
    padding: 15px;
    border: none;
    border-radius: 50px;
    width: 400px;
}
.subscribe button {
    background-color: #0F4534;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #0F4534;
    font-size: 18px;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.footer-column {
    flex: auto;
    min-width: 200px;
    margin: 10px;
}
.footer-column p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
}
.footer-column a {
    text-decoration: none;
    color: #fff;
}
.footer-column a:hover{
    color: #d4d4d4;
}

.botom-txt{
    padding: 15px 10%;
    background:#000;
    color: #FFF;
    margin-bottom: 1rem;
}

.footer-heading {
    text-align: justify;
    font-weight: 700;
    text-transform: uppercase;
}

.botom-txt p{
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.footer-column:nth-child(2) p {
    margin-left: 0;
}

.footer-column:nth-child(3) p{
    margin-left:0;
}

@media (max-width: 768px) {
    .footer-top {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .subscribe {
        flex-direction: column;
        margin-top: 20%;
    }
    .subscribe input {
        width: 200px !important;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .subscribe h3{
        position: absolute;
        top: 250px;
        font-size: 20px;
        font-weight: 700;
        line-height: 40px;
        color: #0F4534;
    }
    .footer-column:nth-child(2) p {
        margin-left: 0;
    }
    .footer-column:nth-child(3) p{
        margin-left:0;
    }
}

button.party-count-btn {
    background: #0F4534;
    color:#FFF;
    border:none;
    outline:none;
}

a.btn.account-status {
    background: #0F4534;
    color:#FFF;
    outline:none;
    border:none;
}

a.btn.select-cat.pull-right-sm {
    background: #0F4534;
    color:#FFF;
    border:none;
    outline:none;
}

div#content-wrapper {
    max-width:1170px;
    margin: 0 auto;
    padding:0 20px;
    min-height: 60vh;
    background:#fff;
    margin-top:70px;
}

@media (max-width: 768px){
.rez-summary.col-sm-3 {
    margin-top:70px;
}
}


a.btn:hover, button:hover, a.btn:focus, button:focus {
    opacity: 1;
}


a.btn.pull-right-sm {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

button#form-submit {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

a.btn.btn-success {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

a.btn.btn-danger {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

button#form-submit {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}
a.btn.select-item {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}
a.btn.select-trip.pull-right-sm {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}
a.btn.skip-addon {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

a.btn {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF !important;
}

button.dropdown-toggle {
    background:#0F4534;
    border:none;
    outline:none;
    color:#FFF;
}

.navbar-collapse.collapse {
    background: #0F4534;
    color: #FFF !important;
}

.navbar-collapse.collapse a{
    color:#000 !important;
}

a.navbar-brand {
    color: #ffffff !important;
    background: transparent;
    max-width: none;
    height: 40px;
}

nav.navbar.navbar-inverse.navbar-fixed-top {
    background: #0F4534;
}

a.dropdown-toggle {
    background:#0F4534;
    color:#FFF !important;
}

ul.nav.navbar-nav.navbar-right a {
    color: #FFF !important;
}

button {
    background:#000;
    outline:none;
    border:none;
    color:#FFF;
}

li.dropdown:hover {
    background:#0F4534!important;
    border:none;
    outline:none;
    color:#FFF !important;
}

a.dropdown-toggle:focus {
    background:#0F4534 !important;
    color:#ffffff;
    border:none;
    outline:none;
}

ul.dropdown-menu li a:hover {
    background:#0F4534;
    color: #FFF;
}

ul.dropdown-menu li a:focus{
    background:#0F4534;
    border:none;
    outline:none;
}

.dropdown {
    padding:0;
    }

    .dropdown-menu .divider {
    height: 0;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

    .dropdown-menu {padding: 0;}