header .nav {
    width: 100%;
    position: fixed;
    text-align: center;
    background-color: #0B1E33;
    top: 0;
    width: 100%;
    left: 0;
    padding:10px 20px;
    z-index: 9;
    transition: all 0.4s ease;
}

header .main-nev {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .nav div.logo {
    float: left;
    width: auto;
    height: auto;
    flex: 0 0 auto;
}

header .nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

header .nav div.logo a:hover {
    color: #00E676;
}

header .nav div.logo a img {
    height: 22px;
}

header .nav div.main_list ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    padding: 0;
    gap: 25px;
}

header .nav div.main_list ul li {
    width: auto;
}



header .nav div.main_list ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
    font-weight: 500;
}

header .nav div.main_list ul li a:hover {
    color: #ffb016;
}

header .nav div.main_list ul li a.active {
    color: #139491;
    border-bottom: 1px solid #139491;
}

.pt-100 {
    padding-top: 100px;
}


.navTrigger {
    display: none;
}


.sing-login-man {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

ul.profile-more-option {
    padding: 18px;
    list-style: none;
    position: absolute;
    width: 210px;
    background: #fff;
    top: 45px;
    right: 0;
    border-radius: 26px;
    display: none;
}

ul.profile-more-option li a {
    display: block;
    text-align: left;
    padding: 8px 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

ul.profile-more-option li a img {
    margin-right: 10px;
}
ul.profile-more-option.show-menu{
    display: block;
}
/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    right: 30px;
    top: 48px;
    /* bottom: 0; */
}

.navTrigger i {
    background-color: #FFB016;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

header .affix {
    background-color: #0B1E33;
    padding: 10px 20px;
}

.right-manu {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}

.search-header {
    display: flex;
    align-items: center;
    border: 1px solid #707070;
    border-radius: 50px;
    padding: 4px 10px;
}

.search-header button {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.search-header input::placeholder {
    color: #fff;
}

.search-header input {
    color: #fff;
    border: 0;
    padding: 4px;
    background-color: transparent;
    min-width: 290px;
}
.search_btn{display: none;}

@media screen and (max-width:992px) {

    .our-resort,
    .our-amenities {
        padding: 20px 0 0;
    }

    .our-desc p {
        margin: 50px 0 50px;
    }


    .navTrigger {
        display: block;
    }



    .nav div.main_list {
        display: none;
    }

    .nav div.show_list {
        height: auto;
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        top: 90px;
        height: 100vh;
        background-color: #0B1E33;
    }

    .nav div.main_list ul {
        gap: 0px;
        flex-direction: column;
    }

    #mainListDiv1 ul {
        flex-direction: initial;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
        padding-right: 0;
        padding-left: 0;
    }

    .nav div.main_list.menu-itme ul li a {
        text-align: center;
        width: 100%;
        font-size: 18px;
        padding: 10px 20px;
        border-bottom: 1px solid #ffffff;
        display: block;
        text-align: right;
    }

    .show_list {
        margin-bottom: 30px;
    }

    #mainListDiv.show_list {
        padding-top: 30px;
    }

    .menu-itme {
        margin-bottom: 20px;
    }

    .nav div.media_button {
        display: block;
    }

    section.sevices-detl {
        padding-bottom: 10px;
    }

    .contact {
        padding-top: 110px;
    }

    .copy-rght {
        display: block;
    }

    .copy-rght p {
        margin: 20px 0;
    }

    .nav.affix div.show_list {
        top: 80px;
    }
}


@media only screen and (max-width: 767px) {
    .nav div.logo a img {
        height: 25px;
    }

    .nav .container-fluid {
        padding: 0;
    }

    .nav .comn-btn {
        padding: 8px 14px;
    }
    .search-header{display: none;}
.search_btn {
    width: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    border-radius: 50%;
    background: #ffb016;
}
.activesearch .search-header {
    display: flex;
    position: absolute;
    top: 59px;
    width: 90%;
    left: 20px;
    right: 20px;
    background: #0b1e33;
    border-radius: 50px;
    justify-content: space-between;
    padding: 0;
}
.artists-bx {
    text-align: center;
    flex: 0 0 50% !important;
}
.search-modal { 
    width: 100% !important;
    max-width: 98% !important; 
    padding: 2rem 0px !important; 
}
.artists-bx.event-box img {
    height: 140px !important;  
}
.search-result h2 { 
    font-size: 20px !important;   
}
.artists-bx.event-box p img {
    width: auto !important;   
    height: auto !important;   
}
.search-result { 
    padding: 0; 
}
.activesearch .search-header #eventForm {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px 0 0;
    position: relative;
}
.search-header input {
    min-width: 100%;
    padding: 10px 45px 10px 15px;
}
.activesearch .search-header #eventForm button {
    position: absolute;
    right: 6px;
    top: 0px;
    height: calc(100% - 2px);
    padding: 0 9px;
}
}

@media only screen and (max-width: 575px) {
.profile-hdr img.ms-2.img-fluid {
    width: 10px;
    margin-left: -3px !important;
    margin-right: 5px !important;
}
.right-manu {
        gap: 5px !important;
    }
    .profile-h {
    width: 35px !important;
    height: 35px !important;
    border-radius: 35px !important;
}
.sing-login-man {
    gap: 5px;
}
.search_btn {
    width: 37px;
    height: 37px;
}
}

.profile-hdr {
    display: flex;
    gap: 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 26px;
    padding: 2px 7px 2px 2px;
    align-items: center;
}

.profile-hdr span {
    text-align: left;
    color: #000;
    line-height: normal;
    font-weight: 600;
}

.profile-hdr span b {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #575757;
}

.profile-h {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    object-fit: cover;
}
.rang-flter.me-3 {
    display: none;
}
 
.lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse; 
    height: calc(100% - 170px);
}
.lb-data {
    padding: 0 4px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
   .search-modal {
    height: 60vh !important;
  }
}