:root{
    --bs-body-font-family: arial;
    --primary-bg: #b32a2e;
    --hover-color: #b32a2e;
    --bs-btn-close-color: #b32a2e;
    --bs-pagination-active-bg: #b32a2e;
}
body{
    overflow-x: hidden;
}
body.nav-open{
    position: fixed;
    width: 100%;
    overflow-y: scroll;
}
@font-face {
    font-family: 'helvetica-neue';
    src: url('../font/helvetica-neue/HelveticaNeueMedium.otf');
}
@font-face {
    font-family: 'titillium-text';
    src: url('../font/titillium-text-22l-999-wt/TitilliumText22L-999-wt.otf');
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: 'helvetica-neue', sans-serif;
}
.btn-danger{
    background: var(--primary-bg);
    border: 1px solid var(--primary-bg);
    font-weight: 500;
    padding: 8px 45px;
}
.btn-dark{
    font-weight: 500;
    padding: 8px 45px;
}
.btn-secondary{
    background-color: #353C40;
    font-weight: 500;
    padding: 8px 45px;
}
.btn-danger:hover{
    background-color: black;
    border: 1px solid black;
}
h2.title{
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.swiper-buttons{
    text-align: right;
}
.swiper-buttons .next,
.swiper-buttons .prev{
    cursor: pointer;
}
.swiper-buttons .next i,
.swiper-buttons .prev i{
    color: #8e8e8e;
    font-size: 34px;
}
.swiper-buttons .next{
    margin-left: 20px;
}

::-webkit-scrollbar {
    width: 9px; /* Scrollbar width */
}

::-webkit-scrollbar-track {
    background: #000000; /* Track background color */
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* Thumb color */
    border-radius: 6px; /* Rounded corners */
}

/* On hover, change the thumb color */
::-webkit-scrollbar-thumb:hover {
    background-color: #cccccc; 
}
.form-control:focus {
    border-color: #801c0952;
    box-shadow: 0 0 0 .25rem #801c0926;
}
.form-group label {
    font-size: 15px;
    font-weight: 600;
}
.table-tray {
    overflow: auto;
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #888 #000000; /* Thumb color | Track color */
}

@media only screen and (max-width: 1200px){
    h2.title{
        font-size: 40px;
    }
}
@media only screen and (max-width: 800px){
    h2.title{
        font-size: 35px;
        margin-bottom: 18px !important;
    }
}
@media only screen and (max-width: 767px){
    h2.title{
        font-size: 32px;
    }
    section.sub{
        margin-top: 40px !important;
    }
}
.accordion-button:not(.collapsed){
    background: #b32a2e !important;
    color: white !important;
}
.accordion-button:focus{
    box-shadow: 0 0 0 0.25rem #b32a2f3d;
}
.accordion-button:not(.collapsed)::after {
    filter: invert(100%);
}


/* header start */

header{
    background-color: #000000;
    padding: 5px;
}
header .menu-bar i{
    color: white;
    font-size: 40px;
    cursor: pointer;
}
header .actions ul{
    display: flex;
    gap: 30px;
    margin: 0px;
    justify-content: end;
    padding: 0px;
}
header .actions ul li{
    list-style: none;
    position: relative;
}
header .actions ul li:not(:last-child){
    padding-right: 30px;
}
header .actions ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #5a5a5a;
}
header .actions ul li a{
    color: white;
    text-decoration: none;
}
header .actions ul li a i{
    color: #9b9b9b;
    padding-right: 5px;
    font-size: 15px;
}

header .menu-overlay{
    position: absolute;
    z-index: 999;
    background: #282828;
    top: 0;
    left: calc(0% - 330px);
    height: 100vh;
    padding: 30px;
    overflow-y: auto;
    transition: all 0.3s;
    width: 330px;
}

header .menu-overlay.open{
    left: 0%;
}

header .menu-overlay ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

header .menu-overlay ul li{
    margin-bottom: 20px;
}

header .menu-overlay ul li a{
    text-decoration: none;
    color: white;
    font-size: 16px;
}

header .menu-overlay ul li a:hover{
    color: var(--hover-color);
}

header .menu-overlay ul li ul{
    margin-top: 28px;
    padding-left: 28px;
    display: none;
}

header .menu-overlay ul li.sub-menu-open ul{
    display: block;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

header .menu-overlay .close{
    color: white;
    font-family: 'Font Awesome 6 Pro';
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 26px;
    margin-top: -18px;
    display: block;
    cursor: pointer;
}

header .menu-overlay .toggle i{
    float: right;
    transition: all 0.3s;
}
header .menu-overlay .toggle.sub-menu-open i{
    color: var(--hover-color);
    transform: rotate(180deg);
}

@media only screen and (max-width: 1024px){
    header .actions ul li:not(:last-child) {
        padding-right: 15px;
    }
    header .actions ul {
        gap: 15px;
    }
}
@media only screen and (max-width: 767px){
    header .menu-bar i{
        font-size: 35px;
    }
    header .logo{
        width: 55px;
    }
    header .actions ul li a span{
        display: none;
    }
}
@media only screen and (max-width: 512px){
    header .menu-bar i{
        font-size: 26px;
    }
    header .logo{
        width: 46px;
    }
}

header .logo{
    width: 15%;
}
header .menu-right{
    width: 85%;
}
header .actions{
    display: flex;
    justify-content: end;
    vertical-align: middle;
    align-items: center;
}
header .actions ul{
    border-left: 1px solid #5a5a5a;
    padding-left: 30px;
    margin-left: 30px;
}
header .actions .menu-bar{
    display: none;
}
header .nav ul{
    margin-bottom: 0px;
    padding: 0px;
}
header .nav ul li{
    list-style: none;
    display: inline-block;
    padding: 20px 0px;
    margin-right: 25px;
}
header .nav ul li:last-of-type{
    margin-right: 0px;
}
header .nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 17px;
}
header .nav ul li a i{
    font-size: 15px;
    padding: 6px;
}
header .nav ul li.sub-menu{
    position: relative;
}
header .nav ul li:hover a{
    color: var(--hover-color);
}
header .nav ul li.sub-menu:hover a i{
    rotate: 180deg;
} 
header .nav ul li.sub-menu:hover ul{
    display: block;
}
header .nav ul li.sub-menu ul{
    display: none;
    background: white;
    position: absolute;
    top: 65px;
    left: 0;
    width: 230px;
    margin: 0;
    padding: 0;
    z-index: 9;
    padding: 12px;
    border-radius: 4px;
}
header .nav ul li.sub-menu ul li{
    display: block;
    margin: 0px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 4px;
    padding: 0px;
    padding-bottom: 4px;
}
header .nav ul li.sub-menu ul li:last-of-type{
    border-bottom: 0px solid;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
header .nav ul li.sub-menu ul li a{
    color: black;
    display: block;
}
header .nav ul li.sub-menu ul li a:hover{
    color: var(--hover-color);
}
@media only screen and (max-width: 1440px){
    header .nav ul li{
        margin-right: 16px;
    }
    header .nav ul li a{
        font-size: 16px;
    }
}
@media only screen and (max-width: 1366px){
    header .actions ul{
        gap: 20px;
        padding-left: 20px;
        margin-left: 20px;
    }
    header .actions ul li:not(:last-child) {
        padding-right: 20px;
    }
    header .actions ul li a,
    header .actions ul li a i{
        font-size: 14px;
    }
}
@media only screen and (max-width: 1320px){
    header .actions ul{
        gap: 15px;
    }
    header .actions ul li:not(:last-child){
        padding-right: 15px;
    }
    header .nav ul li a i{
        padding: 4px;
    }
}
@media only screen and (max-width: 1200px){
    header .nav{
        display: none;
    }
    header .actions .menu-bar{
        display: block;
    }
    header .menu-bar i {
        font-size: 25px;
        margin-right: 20px;
    }
    header .actions ul {
        border-left: 0px solid #5a5a5a;
        padding-left: 0px;
        margin-left: 10px;
    }
}
@media only screen and (max-width: 855px){

}
/* header end */


/* navigator start */
.navigator span{
    font-weight: 600;
    font-size: 14px;
}
.navigator span i{
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
}
/* navigator end */


/* footer start */

footer{
    background-color: black;
    padding: 25px 0px;
    margin-top: 60px;
}
footer h2{
    font-family: Arial;
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 20px;
    border-left: 2px solid #424141;
    padding-left: 12px;
}
footer .footer-menu{
    display: flex;
    gap: 15px;
    margin: 0px;
    justify-content: end;
}
footer .footer-menu li{
    list-style: none;
    position: relative;
}
footer .footer-menu li:not(:last-child){
    padding-right: 15px;
}
footer .footer-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #5a5a5a;
}
footer .footer-menu li a{
    color: white;
    text-decoration: none;
    font-size: 14px;
}
footer .contact{
    color: #9D9D9D;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 20px;
    padding-left: 72px;
}
footer .social-media h3{
    color: white;
    font-size: 18px;
    text-align: right;
}
footer .social-media .icons{
    display: flex;
    vertical-align: middle;
    justify-content: end;
    gap: 25px;
}
footer .social-media .icons a{
    text-decoration: none;
}
footer .social-media .icons a i{
    font-size: 28px;
    color: white;
}
footer .legal{
    color: white;
    font-size: 12px;
}
footer hr{
    color: white;
    margin: 30px 0px;
}
footer .copyright p{
    color: white;
}

@media only screen and (max-width: 767px){
    footer .footer-menu{
        display: none;
    }
    footer .contact{
        margin-top: 10px;
        padding: 0;
    }
    footer .social-media h3{
        text-align: left;
    }
    footer .social-media .icons {
        justify-content: flex-start;
    }
    footer .legal {
        margin-top: 10px;
    }

    footer .copyright p{
        text-align: center;
    }
    footer .copyright ul{
        display: flex;
        justify-content: center;
        margin-top: 10px;
        padding: 0px;
    }
}
@media only screen and (max-width: 512px){
    footer .copyright p,
    footer .copyright li a{
        font-size: 12px;
    }
}
/* footer end */



/* cart start */
.cart-overlay{
    position: fixed;
    top: 0;
    background: #282828;
    color: white;
    width: 330px;
    height: 100vh;
    transition: all 0.3s;
    right: calc(0% - 330px);
    z-index: 999;
    overflow-y: auto;
}
.cart-overlay.open{
    right: 0px;
}
.cart-overlay .header{
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    background-color: black;
}
.cart-overlay .header p{
    margin-bottom: 0px;
    font-size: 14px;
}
.cart-overlay .header p[data-cart-close]{
    font-size: 18px;
    font-family: 'Font Awesome 6 Pro';
    cursor: pointer;
}
.cart-overlay .body{
    padding: 12px 20px;
    background-color: black;
}
.cart-overlay .body .item h2{
    font-size: 18px;
}
.cart-overlay .body .item .packages p{
    margin-bottom: 0;
    font-size: 14px;
}
.cart-overlay .body .item .action{
    display: flex;
    justify-content: space-between;
    margin-top: 21px;
    border-bottom: 1px solid #2e2e2e;
    margin-bottom: 25px;
    padding-bottom: 12px;
}
.cart-overlay .body .item .action a{
    font-size: 14px;
    color: var(--hover-color);
    cursor: pointer;
}
.cart-overlay .body .item .action div{
    display: flex;
}
.cart-overlay .body .item .action div input{
    width: 50px;
    height: 20px;
    border-radius: 4px;
    border: none;
    margin-right: 18px;
    font-size: 15px;
    text-align: center;
}
.cart-overlay .body .item .action div p{
    font-size: 14px;
}

.cart-overlay .footer{
    padding: 20px;
}
.cart-overlay .footer .coupon{
    display: flex;
    gap: 10px;
}
.cart-overlay .footer .coupon input{
    border-radius: 3px;
}
.cart-overlay .footer .coupon button{
    background: #9f9d9d;
    color: white;
    border-radius: 3px;
}
.cart-overlay .footer .coupon button i{
    font-weight: 900;
}
.cart-overlay .footer .summary{
    margin-top: 15px;
}
.cart-overlay .footer .summary p{
    font-size: 14px;
    margin-bottom: 0px;
    color: #b5b5b5;
    display: flex;
    justify-content: space-between;
}
.cart-overlay .footer .summary p.total{
    font-size: 20px;
    color: white;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 15px;
}
/* cart end */


/* modals start */
.modal a,
.offcanvas a{
    color: var(--hover-color);
}
.modal h3,
.offcanvas h3{
    font-size: 22px;
}
.modal .modal-header,
.offcanvas .offcanvas-header{
    background: #282828;
    color: white;
    justify-content: space-between;
}
.modal .modal-content,
.offcanvas .offcanvas-content,
.modal .modal-header,
.offcanvas .offcanvas-header{
    border-radius: 0px;
}
.modal .modal-header button,
.offcanvas .offcanvas-header button{
    color: var(--hover-color);
    background: none;
    box-shadow: none;
    border: none;
    font-size: 28px;
    font-family: 'Font Awesome 6 Brands';
    line-height: 0;
}
.modal .modal-footer,
.offcanvas .offcanvas-footer{
    border: none;
    display: flex;
    flex-direction: column;
}
.modal .modal-footer div{
    width: 100% !important;
}
.modal .modal-footer div:first-child{
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0px 0px;
}
.modal .modal-footer div:last-child{
    text-align: right;
    padding: 0px 8px;
}
.modal .modal-footer div.step-buttons{
    display: flex;
    justify-content: space-between;
}
.modal div.steps{
    display: none;
}
.modal .register h4{
    font-size: 18px;
}
.modal .register label{
    font-size: 15px;
}
.offcanvas .offcanvas-header button{
    color: var(--hover-color);
    background: none;
    box-shadow: none;
    border: none;
    font-size: 28px;
    font-family: 'Font Awesome 6 Brands';
    line-height: 0;
}
/* modals end */

.pagination .page-item.active span{
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: white;
}
.pagination .page-link{
    color: var(--hover-color);
}

#toast-container div{
    opacity: 0.95 !important;
}


/* preloader */
.ajax-preloader{
    position: fixed;
    top: -100px;
    left: 0;
    width: 100vw;
    background: var(--primary-bg);
    z-index: 99999;
    box-shadow: 0 0 10px #5858588c;
    padding: 20px;
    transition: all 0.3s;
}

.ajax-preloader.active{
    top: 0px;
}

.ajax-preloader div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ajax-preloader div p span{
    font-size: 22px;
}