/********** Template CSS **********/
:root {
    --primary: #fa9032;
    --secondary: #2a2e75;
    --light: #EEF9FF;
    --dark: #304f8d;
	/*--- 2243369 ---*/
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #433f39;
    --accent-color: #ffb03b;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Navbar Default***/
.navbar-default .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-default .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-default .navbar-nav .nav-link:hover,
.navbar-default .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-default .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-default .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-default {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-default .navbar-nav .nav-link,
    .navbar-default .navbar-nav .nav-link.show,
    .sticky-top.navbar-default .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-default .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-default {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		/*background: #292b7696;*/
		background: #FFFFFF;
		box-shadow: 0px 10px 20px 0px #292b752e;
    }
    
    .sticky-top.navbar-default {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-default .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-default .navbar-nav .nav-link:hover::before,
    .navbar-default .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-default .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-default .navbar-brand h1 {
        color: var(--primary);
    }
}
/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		background: #292b7696;
		
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


.testimonial-carousel .owl-stage {
    display: flex;
    justify-content: space-evenly;
}

.testimonial-carousel .owl-item {
    display: flex;
    justify-content: space-evenly;
}


.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}
.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
	width:100%
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}
/******/
.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
	min-width: 130px;
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	height: 260px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
	min-height: 270px;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  	border: 0;
	/*box-shadow: 0 4px 20px #00000040;*/
}

.specials .nav-link {
  border: 0;
  padding: 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  /*background-color: var(--background-color);*/
  background: #d3e6ed;
  padding: 10px;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*-----------------------------------2243369-----------------------*/
.bg-transparent{background:transparent; border:0px;}

.error,
.Error{border: 3px solid #ae352c !important; background: #ffffffd9 !important;}

.text-justify{
    text-align: justify !important;
}

/*** bg-section Start ***/
.bg-section {
   	/*background: linear-gradient(#fa9032b8, #fa9032b8), url(../images/bg-images/contact-us.jpg);*/
    background: linear-gradient(#304f8d, #304f8d95), url(../images/bg-images/contact-us.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.bg-section .container .bg-section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

/*.bg-section .container .bg-section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}*/

.bg-section .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.bg-section .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** bg-section end ***/
.bg-section-secondary {
    background: linear-gradient(#2b4688b8, #2b4688b8), url(../images/bg-images/flag.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}
.bg-section-secondary .container .bg-section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}
/*.bg-section-secondary .container .bg-section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}*/

.bg-section-secondary .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}
.bg-section-secondary .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}




/*******************************/
/********* gl-box CSS *********/
/*******************************/
.gl-box {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.gl-box .gl-box-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
	height: 100%;
}

.gl-box .gl-box-img {
    position: relative;
    overflow: hidden;
}

.gl-box .gl-box-img img {
    width: 100%;
	height: 340px;
}

.gl-box .gl-box-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.gl-box .gl-box-item:hover .gl-box-overlay {
    opacity: 1;
}

.gl-box .gl-box-overlay p {
    margin: 0;
    color: #ffffff;
}

.gl-box .gl-box-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gl-box .gl-box-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gl-box .gl-box-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.gl-box .gl-box-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*****************************************************************
----------------------------2243369-------------------------------
******************************************************************/
.input-field{margin-bottom:10px;}

.Error{border:2px solid red;}
.tbl-grid table{border:2px solid #2b2a76}
.tbl-grid thead,.tbl-grid tfoot{background:#fa9032;color:#fff}
.tbl-grid tbody{background:transparent}
.tbl-grid table tr:nth-child(odd){background:#f9f9f9}
.tbl-grid table tr:nth-child(even){background:#f3f3f3}
.tbl-grid table tr th{padding:10px 10px;background:#2b2a76;border-bottom:1px solid #8947a3;color:#fff}
.tbl-grid table tr td{padding:10px 5px;text-align:left}
.tbl-grid table .price{display:table-cell;font-size:18px;line-height:22px;font-weight:700;margin:0 0;color:#2b2a76}
.tbl-grid .input-number-group .input-number-decrement,.tbl-grid .input-number-group .input-number-increment{display:inline-block;width:30px}
.tbl-grid .input-number-group{margin-bottom:-5px;margin-top:1px}

.PDF-links{display:flex;flex-wrap:wrap;align-content:center;justify-content:center;align-items:center}
.PDF-links a{display:block;background:#2b2a76;color:#fff;padding:20px 20px;margin:10px 5px;border-radius:3px;font-size:22px;line-height:inherit}

label {display: inline-block;max-width: 100%; margin-bottom: 0px; font-weight: 700;}

.caret-down {display: inline-block; width: 0; height: 0; margin-left: 5px; vertical-align: middle; border-top: 5px solid; border-right: 5px solid transparent; border-left: 5px solid transparent;}
.caret-up {display: inline-block; width: 0; height: 0; margin-left: 5px; vertical-align: middle; border-bottom: 5px solid; border-right: 5px solid transparent; border-left: 5px solid transparent;}


.input-number-group{margin-bottom:5px;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}
.input-number-group input[type=number]::-webkit-inner-spin-button,.input-number-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none}
.input-number-group .input-group-button{line-height:calc(80px/2 - 5px)}
.input-number-group .input-number{max-width:110px;width:100%;display:block;padding:0 12px;vertical-align:top;text-align:center;outline:none;margin:0;font-size:30px;font-family:'DM Sans'}
.input-number-group .input-number,.input-number-group .input-number-decrement,.input-number-group .input-number-increment{border:1px solid #2b2a76;height:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:0}
.input-number-group .input-number-decrement,.input-number-group .input-number-increment{display:inline-block;width:40px;background:#2b2a76;color:#fff;text-align:center;cursor:pointer;font-size:40px;font-weight:300}
.input-number-group .input-number-decrement{margin-right:.3rem}
.input-number-group .input-number-increment{margin-left:.3rem}
.sec-header-cart{position:fixed;width:auto;max-width:190px;padding-top:10px;z-index:9;right:5%;bottom:105px;color:#2b2a76;margin:20px auto 10px auto;border-radius:5px}
.header-cart{font-size:26px;padding:10px;border-radius:5px;background:rgba(255,255,255,.75)}
.cart-btn-info{color:#ffffff!important;padding:0 5px;background:#2b2a76!important;border-color:#2b2a76!important;border-radius:5px!important}
.fa-shopping-cart:before{content:"\f07a";padding:0 5px}

hr.gradiant{border:0;height:1px;background-image:linear-gradient(to right,rgba(0,0,0,0),rgba(0,0,0,.75),rgba(0,0,0,0))}
.sans-serif{font-family:sans-serif}

.clear-fix{clear:both}
.flex-center{display:flex!important;justify-content:center;align-items:center}

.al-lt{text-align:left}
.al-rt{text-align:right}
.al-cntr{text-align:center}

.fl-lt{float:left}
.fl-rt{float:right}
.fl-none{float:none}
.fl-left{float:left}
.fl-right{float:right}

.pd-0{padding:0}
.mg-0{margin:0}
.mg-auto{margin:0 auto;float:none}
.mg-top-0{margin-top:0}
.mg-top-10{margin-top:10px}
.mg-top-20{margin-top:20px}
.mg-top-30{margin-top:30px}
.mg-top-40{margin-top:40px}
.mg-top-50{margin-top:50px}
.mg-top-60{margin-top:60px}
.mg-top-90{margin-top:90px}

.mg-bottom-0{margin-bottom:0}
.mg-bottom-10{margin-bottom:10px}
.mg-bottom-20{margin-bottom:20px}
.mg-bottom-30{margin-bottom:30px}
.mg-bottom-40{margin-bottom:40px}
.mg-bottom-50{margin-bottom:50px}
.mg-bottom-60{margin-bottom:60px}
.mg-bottom-90{margin-bottom:90px}

.mg-tp-bt-0{margin-bottom:10px;margin-top:0}
.mg-tp-bt-10{margin-bottom:10px;margin-top:10px}
.mg-tp-bt-20{margin-bottom:20px;margin-top:20px}
.mg-tp-bt-30{margin-bottom:30px;margin-top:30px}
.mg-tp-bt-40{margin-bottom:40px;margin-top:40px}
.mg-tp-bt-50{margin-bottom:50px;margin-top:50px}
.mg-tp-bt-60{margin-bottom:60px;margin-top:60px}
.mg-tp-bt-90{margin-bottom:90px;margin-top:90px}




/* ------------------------------------------------Custom Checkbox-------------------------------------------------*/
/* custom-checkbox */
.custom-checkbox {display: block;position: relative;cursor: pointer;font-size: 22px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;margin-right: 10px;}
/* Hide the browser's default checkbox */
.custom-checkbox input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
/* Create a custom checkbox */
.checkmark {position: absolute;top: 0;left: 0;height: 30px;width: 30px;background-color: #2d3f50;border: 3px solid #2d3f50;}
/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {background-color: #2d3f50;border: 3px solid #2d3f50;}
/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {background-color: #2d3f50;border: 3px solid #2d3f50;}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {content: "\2714";/* Better for iPhone than content: "\2714"*/position: absolute;display: none;color: #ffffff !important;font-size: 28px;}
/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after { display: block;}
/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {left: 3px;top: 0px; /*width: 12px;height: 23px;border: solid white;border-width: 0 5px 5px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);*/}

.custom-checkbox .chkbx{width: 30px !important;height: 30px !important;margin: 0px !important;}
.custom-checkbox .input-group-addon{float: left !important;border: 0px !important;line-height: 30px !important;}

                 	
/*----------------Custom checkbox list----------------*/
.chkbx_list input[type=checkbox]{display: none !important;}
.chkbx_list label{display: inline;float: left; cursor: pointer; text-indent: 20px;white-space: nowrap;}
.chkbx_list input[type=checkbox] + label{ display: block; width: 30px;height: 30px;padding-left: 25px;border-radius: 0px; border: 3px solid #515153; background: #474747;vertical-align: middle;line-height: 30px;font-size: 16px;}
.chkbx_list input[type=checkbox] + label{ /*background-image: -moz-linear-gradient(#3c5c82,#8f86a0);background-image: -ms-linear-gradient(#3c5c82,#8f86a0);background-image: -o-linear-gradient(#3c5c82,#8f86a0); background-image: -webkit-linear-gradient(#3c5c82,#8f86a0); background-image: linear-gradient(#3c5c82,#8f86a0);*/}
.chkbx_list input[type=checkbox] + label{ /*-moz-box-shadow:-3px 3px 3px #474747;-webkit-box-shadow:-3px 3px 3px #474747;box-shadow:-3px 3px 3px #474747;*/}
.chkbx_list input[type=checkbox]:checked + label{border: 3px solid #474747; background: #515153;/*-moz-box-shadow:-3px 3px 3px #515153;-webkit-box-shadow:-3px 3px 3px #515153;box-shadow:-3px 3px 3px #515153;*/}
.chkbx_list input[type=checkbox]:checked + label::before{content: "?";/* Better for iPhone than content: "\2714"*/ color: #ffffff !important; display: inline; width: 30px; height: 30px; margin-right: 20px;margin-left: -42px;font-size: 20px;line-height: 26px; font-weight: 900;}

/*----------------Custom radio button list----------------*/
.rdbtn_list input[type=radio]{display: none !important;}
.rdbtn_list label{display: inline;float: left; cursor: pointer; text-indent: 20px;white-space: nowrap;}
.rdbtn_list input[type=radio] + label  { display:block; width: 30px; height: 30px; padding-left: 25px; border-radius: 100%; border: 3px solid #515153; background: #515153;vertical-align: middle; line-height: 30px; font-size: 16px;}
.rdbtn_list input[type=radio] + label  { /*background-image: -moz-linear-gradient(#3c5c82,#8f86a0); background-image: -ms-linear-gradient(#3c5c82,#8f86a0); background-image: -o-linear-gradient(#3c5c82,#8f86a0); background-image: -webkit-linear-gradient(#3c5c82,#8f86a0); background-image: linear-gradient(#3c5c82,#8f86a0);*/}
.rdbtn_list input[type=radio] + label  { /*-moz-box-shadow:-3px 3px 3px #474747;-webkit-box-shadow:-3px 3px 3px #474747;box-shadow:-3px 3px 3px #474747;*/}
.rdbtn_list input[type=radio]:checked + label  {border: 3px solid #474747; background: #515153;/*-moz-box-shadow:-3px 3px 3px #515153;-webkit-box-shadow:-3px 3px 3px #515153;box-shadow:-3px 3px 3px #515153;*/}
.rdbtn_list input[type=radio]:checked + label::before{ content: "?";/* Better for iPhone than content: "\2714"*/ color: #ffffff !important; display: inline; width: 30px; height: 30px; margin-right: 20px;margin-left: -42px; font-size: 20px;line-height: 26px; font-weight: 900;}	

/*----------------Custom checkbox and radio button (single)----------------*/
/* The container */
.chkbx {display: inline-block;position: relative;margin-left:5px;margin-top: 10px;margin-bottom: 12px;cursor: pointer;/*font-size: 22px;*/line-height: 26px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
/* Hide the browser's default checkbox */
.chkbx input {position: absolute; opacity: 0; height: 30px; width: 30px;min-width: 30px; max-width: 30px; margin-top: 0;margin-top: 0px;z-index:1;}
/* Create a custom checkbox */
.checkmark {position: absolute;top: 0px;left: 0;height: 30px;width: 30px;border: 3px solid #474747;background: #515153;}
 /*Checkbox shadow*/
.checkmark {-moz-border-radius: 0px;border-radius: 0px;/*-moz-box-shadow:-3px 3px 3px #474747;-webkit-box-shadow:-3px 3px 3px #474747;box-shadow:-3px 3px 3px #474747;*/}
/* On mouse-over, add a grey background color */
.chkbx:hover input ~ .checkmark {border: 3px solid #474747;background-color: #515153; -moz-border-radius: 0px;border-radius: 0px;/*-moz-box-shadow:-3px 3px 3px #515153;-webkit-box-shadow:-3px 3px 3px #515153;box-shadow:-3px 3px 3px #515153;*/}
/* When the checkbox is checked, add a blue background */
.chkbx input:checked ~ .checkmark {border: 3px solid #474747;background-color: #515153; -moz-border-radius: 0px;border-radius: 0px;/*-moz-box-shadow:-3px 3px 3px #515153;-webkit-box-shadow:-3px 3px 3px #515153;box-shadow:-3px 3px 3px #515153;*/}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {content: "\2714";/* Better for iPhone than content: "\2714"*/position: absolute;display: none;color: #ffffff !important;font-size: 28px;}
/* Show the checkmark when checked */
.chkbx input:checked ~ .checkmark:after {display: block;}
/* Style the checkmark/indicator */
.chkbx .checkmark:after {left: 3px;top: 0px; /*width: 8px; height: 15px;border: solid #efefef;border-width: 0 3px 3px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);*/}

.chkbx-lbl,
.rdbtn-lbl{margin-left: 30px;}

.chkbx-disable {height: 0.001px !important; width: 0.001px !important;}

/*--------------------------------------------------------------
# Featured Section (Offers)
--------------------------------------------------------------*/
.feat-box .feat-box-item {
  background: var(--surface-color);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000040;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feat-box .feat-box-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feat-box .feat-box-item.featured {
  border: 2px solid var(--accent-color);
}

.feat-box .feat-box-item.featured .feat-badge .discount {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
}

.feat-box .feat-box-item.featured .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.feat-box .feat-box-item.featured .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.feat-box .feat-box-item .feat-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.feat-box .feat-box-item .feat-badge .discount {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feat-box .feat-box-item .feat-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.feat-box .feat-box-item .feat-image .feat-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.9), rgba(45, 70, 94, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}

.feat-box .feat-box-item .feat-image .feat-image-overlay h4 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.feat-box .feat-box-item .feat-image .feat-image-overlay p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.feat-box .feat-box-item .feat-image .feat-image-overlay .feat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateY(20px) scale(0.8);
}

.feat-box .feat-box-item .feat-image .feat-image-overlay .feat-btn:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(20px) scale(1.1);
}

.feat-box .feat-box-item .feat-image .feat-image-overlay .feat-btn i {
  transition: transform 0.3s ease;
}

.feat-box .feat-box-item .feat-image .feat-image-overlay .feat-btn:hover i {
  transform: translateX(3px);
}

.feat-box .feat-box-item:hover .feat-image img {
  transform: scale(1.1);
}

.feat-box .feat-box-item:hover .feat-image .feat-image-overlay {
  opacity: 1;
}

.feat-box .feat-box-item:hover .feat-image .feat-image-overlay h4,
.feat-box .feat-box-item:hover .feat-image .feat-image-overlay p,
.feat-box .feat-box-item:hover .feat-image .feat-image-overlay .feat-btn {
  transform: translateY(0);
}

.feat-box .feat-box-item:hover .feat-image .feat-image-overlay .feat-btn {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
}


.feat-box .feat-box-item .feat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feat-box .feat-box-item:hover .feat-image img {
  transform: scale(1.05);
}
.feat-box .feat-box-item .feat-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feat-box .feat-box-item .feat-content h3 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feat-box .feat-box-item .feat-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.feat-box .feat-box-item .feat-content .feat-details {
  margin-bottom: 20px;
}

.feat-box .feat-box-item .feat-content .feat-details .price-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.feat-box .feat-box-item .feat-content .feat-details .price-info .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
}

.feat-box .feat-box-item .feat-content .feat-details .price-info .feat-price {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
}

.feat-box .feat-box-item .feat-content .feat-details .price-info .per-night {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
}

.feat-box .feat-box-item .feat-content .feat-details .validity {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

.feat-box .feat-box-item .feat-content .feat-details .validity i {
  color: var(--accent-color);
}

.feat-box .feat-box-item .feat-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.feat-box .feat-box-item .feat-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .feat-box .feat-box-item .feat-content {
    padding: 20px;
  }
  
  .feat-box .feat-box-item .feat-image .feat-image-overlay {
    padding: 20px;
  }

  .feat-box .feat-box-item .feat-image .feat-image-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feat-box .feat-box-item .feat-image .feat-image-overlay p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .feat-box .feat-box-item .feat-image .feat-image-overlay .feat-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.feat-box .feat-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 30%) 100%);
  color: var(--contrast-color);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.feat-box .feat-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.feat-box .feat-banner .banner-content {
  position: relative;
  z-index: 2;
}

.feat-box .feat-banner .banner-content h2 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feat-box .feat-banner .banner-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.feat-box .feat-banner .banner-action {
  position: relative;
  z-index: 2;
  text-align: center;
}

.feat-box .feat-banner .banner-action .countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.feat-box .feat-banner .banner-action .countdown div {
  text-align: center;
}

.feat-box .feat-banner .banner-action .countdown div span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
}

.feat-box .feat-banner .banner-action .countdown div label {
  font-size: 12px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.feat-box .feat-banner .banner-action .btn-cta {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.feat-box .feat-banner .banner-action .btn-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .feat-box .feat-banner {
    text-align: center;
  }

  .feat-box .feat-banner .banner-action {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .feat-box .feat-banner {
    padding: 30px 20px;
  }

  .feat-box .feat-banner .banner-content h2 {
    font-size: 24px;
  }

  .feat-box .feat-banner .banner-action .countdown {
    gap: 15px;
  }

  .feat-box .feat-banner .banner-action .countdown div span {
    font-size: 20px;
  }
}