/**

* Template Name: Traverse Holiday Theme

*/


/*--------------------------------------------------------------

# Header -1

--------------------------------------------------------------*/
.header-one {
    background-color: #FAFAFA;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header-one.sticked {
    position: fixed;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    background-color: #FAFAFA;
    animation: fadeInDown 1s ease-in-out;
    top: 0;
    left: 0;
    transition: all 0.5s;
}

.header-one .navbar {
    padding: 33px 0;
}


.header-one .navbar a {
    text-decoration: none;
}

.header-one img.center-logo {
    margin: 0 50px;
}

.header-one #navbarSupportedContent {
    justify-content: center;
}

.header-one ul.navbar-nav li.nav-item {
    margin-right: 50px;
}

.header-one ul.navbar-nav li:hover.nav-item {
    list-style-type: disc;
    color: #FF7400;
}

.header-one ul.navbar-nav li.nav-item:last-child {
    margin-right: 0;
}

.header-one ul.navbar-nav li.nav-item a.nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #000;
    padding: 1px;
    transition: all 0.3s;
}

.header-one .navbar-light .navbar-nav .nav-link.active,
.header-one .navbar-light .navbar-nav .show>.nav-link {
    color: #FF7400;
}

.header-one ul.navbar-nav li.nav-item a.nav-link:hover {
    color: #FF7400;
}

.header-one nav.navbar button.search-btn {
    border: none;
    outline: none;
    background-color: transparent;
    display: flex;
    align-items: center;
}


.header-one nav.navbar button.search-btn span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 0 0 15px;
    color: #000;
}

.header-one nav.navbar button.search-btn span:hover {
    color: #FF7400;
}

.header-one nav.navbar .contact {
    padding: 0;
}

.serach-bar .form-group input {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background-color: #e8e6e6;
    padding: 16px 60px 16px 20px;
    border-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}

.serach-bar .form-group input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

.serach-bar .form-group input:focus {
    box-shadow: none;
}

.serach-bar .form-group button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    position: absolute;
    right: 6px;
    top: 5px;
    box-shadow: 0px 3px 20px 0px #FF740059;
    transition: all 0.3s;
}

.serach-bar .form-group button:hover {
    background-color: #000;
}

.search-modal .modal-dialog {
    max-width: 800px;
}

.search-modal-content {
    background-color: transparent;
}

.search-modal .modal-body {
    padding: 0;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.search-modal .btn-close {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 100px;
    opacity: 1;
    filter: invert(1) brightness(1);
}

.header-one nav.navbar a.contact-num {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
}

.header-one nav.navbar a.contact-num:hover {
    color: #FF7400;
    background-color: transparent;
}

.header-one nav.navbar .contact a img {
    padding: 0 15px 0 0;
}

.header-one .navbar-dark .navbar-toggler-icon {
    background-image: url(../img/manu-close-icon.svg);
    width: 40px;
    height: 40px;
}

.header-one .navbar-dark .navbar-toggler-icon {
    border: none;
}

.header-one .navbar-toggler-icon:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header-one .navbar-dark .collapsed .navbar-toggler-icon {
    background-image: url(../img/menu-open-icon.svg);
    width: 40px;
    height: 40px;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
}

.header-one {
    overflow: visible;
}

.sticked .navbar {
    padding: 20px 0 !important;
}


/* dropdown hover effect */

.header-one .dropdown-menu {
    background-color: #fff;
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
}

.header-one .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-one .dropdown-item {
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border-radius: 5px;
}

.header-one .dropdown-item:hover {
    background-color: #FF7400;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-one .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


@-webkit-keyframes fadeInDown {

    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);

    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);

    }
}

/******************* responsive ********************/

@media (max-width: 1399.98px) {

    .header-one ul.navbar-nav li.nav-item {
        margin-right: 35px;
    }

    .header-one img.center-logo {
        margin: 0px 30px;
    }

}

@media (max-width: 1199.98px) {

    .header-one img.logo {
        width: 150px;
    }

    .header-one ul.navbar-nav li.nav-item a.nav-link {
        font-size: 14px;
        line-height: 22px;
    }

    .header-one nav.navbar button.search-btn span {
        font-size: 14px;
        line-height: 22px;
        padding: 0 0 0 10px;
    }

    .header-one nav.navbar .contact a img {
        padding: 0 10px 0 0;
    }

    .header-one nav.navbar a.contact-num {
        font-size: 14px;
        line-height: 22px;
    }

    .header-one nav.navbar button.search-btn img {
        width: 18px;
    }

    .header-one nav.navbar .contact a img {
        width: 30px;
    }

    .header-one img.center-logo {
        margin: 0px 25px;
        width: 160px;
    }

}

@media (max-width: 991.98px) {

    .header-one .navbar {
        padding: 23px 0;
    }

    .header-one nav.navbar button.search-btn {
        display: none;
    }

    .header-one nav.navbar .contact {
        display: none !important;

    }

    div#navbarSupportedContent {
        padding: 10px 0 0 0;
    }

    .header-one ul.navbar-nav li.nav-item a.nav-link {
        font-size: 14px;
        line-height: 22px;
        padding: 5px 0;
    }

    .header-one ul.navbar-nav li.nav-item {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .header-one.sticked {
        animation: none;
    }

    .header-one ul.navbar-nav li.nav-item:last-child {
        margin-right: 0;
    }

    .header-one .dropdown-item {
        padding: 5px 15px;
        font-size: 14px;
    }

    .header-one .navbar-dark .navbar-toggler-icon {
        width: 35px;
        height: 35px;
    }

    .header-one .navbar-dark .collapsed .navbar-toggler-icon {
        width: 30px;
        height: 30px;
    }

    .header-one .navbar-dark .navbar-toggler {
        padding: 0;
    }

    #header .navbar-collapse {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        min-height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        z-index: 99;
        background: #fff;
        transition: all 0.5s;
        padding: 30px 50px 20px 30px;
    }

    #header .navbar-collapse.show {
        right: 0;
    }

    #header .navbar-toggler {
        z-index: 999;
        position: relative;
    }

}

@media (max-width: 575.98px) {

    .header-one img.logo {
        width: 150px;
    }

    .header-one .navbar {
        padding: 23px 0;
    }

    .header-one .navbar-dark .navbar-toggler-icon {
        width: 30px;
        height: 30px;
    }

    .header-one .navbar-dark .collapsed .navbar-toggler-icon {
        width: 30px;
        height: 30px;
    }
}