:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #fe5955;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #95aac9;
    --gray-dark: #262e4b;
    --primary: #c7cb36;
    --secondary: #95aac9;
    --success: #0c9;
    --info: #19b5fe;
    --warning: #f7bc06;
    --danger: #f2545b;
    --light: #f9fbfd;
    --dark: #2e2331;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Hind Vadodara", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
}

strong {
    font-weight: 600;
}

img {
    border: none;
    outline: none;
    height: auto;
    max-width: 100%;
}

a,
a:active,
a:focus,
a:hover {
    outline: none !important;
    text-decoration: none;
}

a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #333;
}

a:hover {
    color: var(--red);
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: none;
}

ul,
ol {
    margin: 0;
    list-style-type: none;
}
.body-top-section .container p {
    font-size: 16px;
    margin: 10px 0px;
}
.body-top-section .container ul{list-style-type: revert; margin-left:20px;}
.body-top-section .container h3{padding-top:20px;padding-bottom:5px;}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin: 0 0 14px;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 20px;
    line-height: 40px;
    text-transform: capitalize;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 15px;
}

h4 {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin: 0 0 20px;
}

h5 {
    font-weight: 300;
    margin: 0 0 10px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    color: #999;
    font-weight: 400;
    margin: 0 0 10px;
}

p {
    font-size: 16px;
    line-height: 28px;
    margin: 0px;
}

.table td,
.table th {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.btn-danger {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
}

.bg-danger {
    background-color: var(--red) !important;
}

.text-danger {
    color: var(--red) !important;
}

.border-danger {
    border-color: var(--red) !important;
}

.rounded {
    border-radius: 1rem !important;
}

.rounded-right-pill {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.thumb {
    width: auto;
    height: auto;
    cursor: pointer;
    overflow: hidden;
}

.thumb img,
.lightbox img {
    width: 100%;
    height: auto;
    transition: 2s linear;
}

.thumb:hover img,
.lightbox:hover img {
    transform: scale(1.1);
}

.heading-title h2 {
    font-weight: 500;
}

/* Bounce To Right */
.btn-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: hidden;
}

.btn-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--red);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-bounce-to-right:hover:before,
.btn-bounce-to-right:focus:before,
.btn-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.top-bar {
    background-color: var(--dark);
    color: #fff;
    padding: 8px 0px;
    position: relative;
}

.top-bar::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 299px;
    z-index: 9;
    background-image: url(../images/icons/top-red.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 100%;
}

.top-bar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--red);
    width: 300px;
    height: 100%;
    z-index: 0;
}

.top-social {
    position: relative;
    z-index: 9;
    width: 300px;
    gap: 20px;
}

.top-social a {
    color: var(--white);
    padding: 0px 3px;
}

.top-social a:hover {
    text-align: center;
    color: var(--dark);
}

.consult-now .btn {
    width: 150px;
    padding-bottom: .5rem !important;
    padding-top: .5rem !important;
    font-size: 15px;
}

#header-wrap.fixed-header {
    animation: smoothScroll 1s forwards;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 0px 12px #d7d5d5;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar-brand {
    margin-right: 2px;
}

/*-- Banner Start-- */
.first-banner-text {
    position: absolute;
    top: -50%;
    right: 120px;
    width: 500px;
    height: 500px;
    background: rgb(254 89 85 / 74%);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.first-banner-text .text-circle {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 300px;
    margin: auto;
    text-align: center;
}

.first-banner-text .text-circle p {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    line-height: 34px;
}

.second-banner-text {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 290px;
    margin: auto;
}

.second-banner-text p {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    line-height: 34px;
}

.third-banner-text {
    position: absolute;
    bottom: 80px;
    left: 0px;
    width: 350px;
    margin: auto;
    padding: 10px 20px 10px 40px;
    background-color: rgb(0 0 0 / 48%);
    border-radius: 0px 10px 10px 0px;
}

.third-banner-text p {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    line-height: 34px;
}

.forth-banner-text {
    position: absolute;
    bottom: -45%;
    left: 120px;
    width: 500px;
    height: 500px;
    background: rgb(254 89 85 / 74%);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.forth-banner-text .text-circle {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -26%);
    width: 300px;
    margin: auto;
    text-align: center;
}

.forth-banner-text .text-circle p {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    line-height: 34px;
}

/*-- Banner End here --*/


.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 30px;
    height: 30px;
}

/* .carousel-control-next-icon{
    background-image: url(../images/icons/next.png);
}
.carousel-control-prev-icon{background-image: url(../images/icons/prev.png);} */

/*  END BANNER HERE --*/

.about-text p {
    text-align: justify;
    margin-bottom: 12px;
}

.about-img {
    border: 10px solid var(--white);
    box-shadow: 0px 10px 50px rgb(172 169 173);
    border-radius: 10px;
    margin-right: 40px;
}

section {
    padding: 60px 0px;
}

.tour-destination {
    background: #f8f3ed
}

.tour-destination figure {
    margin-bottom: 0;
    overflow: hidden;
}

.bottom-con {
    background-color: var(--white);
    padding: 10px 6px;
}

.bottom-con h5 a {
    color: var(--red);
    font-weight: 500;
    font-size: 18px;
}

.destination-box {
    margin-bottom: 30px;
    border: 4px solid var(--white);
    box-shadow: 0px 2px 12px rgb(221, 221, 221);
    border-radius: 5px;
}

.destination-box:hover {
    box-shadow: 0px 0px 12px rgb(221, 221, 221)
}

.destination-box:hover .bottom-con h5 a {
    color: var(--dark);
}

.popular-tour-destination .destination-box {
    background-color: #fcf8f8;
    border: 1px solid #ff5956;
    padding: 5px;
    border-radius: 8px;
}

.popular-tour-destination .destination-box .bottom-con {
    background-color: transparent;
    margin-top: 10px;
}

.popular-tour-destination .destination-box .bottom-con h5 {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 8px;
    height: 36px;
    display: flex;
    align-items: center;
}

.popular-tour-destination .destination-box .bottom-con h5 a {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.popular-tour-destination .destination-box:hover .bottom-con h5 a {
    color: var(--red);
}

.popular-tour-destination .destination-box .bottom-con p {
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-tour-destination .destination-box .bottom-con a.text-danger {
    font-weight: 500;
}

.expert-advisor {
    background-color: var(--red);
    padding: 40px 0px;
    position: relative;
}

.expert-advisor::before {
    content: "";
    background-image: url(../images/advisor.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.expert-advisor::after {
    content: "";
    background-image: url(../images/tour1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.advisor-text {
    max-width: 400px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advisor-text h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
}

.advisor-text {}

.advisor-text .btn-white {
    background-color: var(--white);
    color: var(--red);
    padding-left: 20px;
    padding-right: 20px;
}

.advisor-text .btn-white:hover {
    background-color: var(--dark);
    color: var(--white);
}

.exciting-international-tours .destination-box,
.local-experience .destination-box {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.exciting-international-tours .destination-box figure img {
    border-radius: 48% 48% 10% 10%
}

.exciting-international-tours .destination-box .bottom-con h5 a {
    font-size: 14px;
}

.exciting-tour {}

.exciting-tour.expert-advisor::before {
    position: relative;
}

.exciting-tour.expert-advisor::after {
    background-position: bottom;
    width: 100%;
    opacity: .4;
}

.exciting-tour figure {
    position: relative;
    z-index: 1;
}

.exciting-tour .advisor-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    min-width: 480px;
    text-align: left;
    color: var(--white);
}

.exciting-tour .advisor-text h5 {
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.exciting-tour .advisor-text h2 {
    font-size: 52px;
    font-weight: 600;
    max-width: 350px;
    color: var(--white);
    line-height: 44px;
    margin-bottom: 6px;
}

.exciting-tour .advisor-text h2 span {
    display: block;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: right;
    margin-right: 18px;

}

.exciting-tour .advisor-text h4 {
    margin-top: 12px;
    font-size: 30px;
    font-weight: 600;
}

.transport-guide .left-panel h2 {
    background: #fe5955;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
}

.transport-guide .transport-car {
    position: relative;
    border-radius: 10px;
}

.transport-guide .transport-car img {
    border-radius: 10px;
    overflow: hidden;
}

.transport-guide .transport-car span {
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: 10px;
    background-color: var(--red);
    color: var(--white);
    font-size: 14px;
    padding: 8px;
}

.best-travel-guide {
    background-color: var(--red);
}

.best-travel-guide .image {
    width: 50%;
    background-image: url(../images/travel-guide.jpg);
    background-size: cover;
}

.best-travel-guide .text {
    max-width: 50%;
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    text-align: justify;
}

.best-travel-guide .text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.why-choose {
    position: relative;
    background: #fff9f4;
}


.why-choose-left h6 {
    color: var(--red);
    font-weight: 500;
    margin-bottom: 4px;
}

.why-choose-left h5 {
    color: var(--red);
    font-weight: 400;
}

.why-choose-left h2 {
    font-weight: 600;
    max-width: 300px;
    margin-bottom: 10px;
    line-height: 34px;
}



.short-by-categories .destination-box {
    border: 0px;
}

.short-by-categories .destination-box .bottom-con {
    background-color: var(--red);
    color: var(--white);
}

.short-by-categories .destination-box .bottom-con h5 a {
    color: var(--white);
}

.short-by-categories .destination-box:hover .bottom-con h5 a {
    color: var(--dark);
}

.plan-journey {
    background-image: url(../images/journey.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    position: relative;
    padding: 40px 0px;
    ;
}

.plan-journey::after {
    content: "";
    background: rgb(254, 89, 85);
    background: linear-gradient(90deg, rgba(254, 89, 85, 0.8099614845938375) 73%, rgba(255, 255, 255, 1) 73%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* .plan-journey::before{
    content: "";
    background-color: var(--white);
    position: absolute;
    left: 80%;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 1;
} */
.plan-journey .journey {
    position: relative;
    z-index: 1;
}

.plan-journey .journey h3 {
    font-size: 36px;
    color: var(--white);
}

.plan-journey .img-right {
    position: relative;
    z-index: 1;
    height: 100%;
}

.plan-journey .img-right .img-circle {
    width: 300px;
    height: 300px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    background: #fcdddc;
    padding: 14px;
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.plan-journey .img-right .img-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.plan-journey .img-right .img-circle2 {
    width: 200px;
    height: 200px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    background: var(--white);
    padding: 6px;
    display: flex;
    position: absolute;
    right: 240px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.plan-journey .img-right .img-circle2 img { 
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.counter-sec {
    position: relative;
}

.counter-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #faf5ee;
}

.counter-row {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: box-shadow ease .2s;
    box-shadow: 0 5px 12px rgba(126, 142, 177, .2);
    border-radius: 10px;
    padding: 20px 20px;
    background-color: var(--white);
}

.counter-row .counter {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    text-align: center;
}

.counter-row .counter .counter-icon {
    width: 80px;
    height: 80px;
    background: #ff554e;
    display: flex;
    line-height: 80px;
    margin: auto;
    justify-content: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.counter-row .counter .counter-icon img {
    width: 50px;
}

.counter-row .counter .counter-desc {
    color: var(--dark);
    margin-top: 12px;
}

.counter-row .counter .counter-desc .count-number {
    font-size: 32px;
    font-weight: 600;
    margin-top: 12px;
}

.counter-row .counter .counter-desc span {
    font-size: 32px;
    font-weight: 600;
}

.counter-row .counter .counter-desc p {}

.local-experience .destination-box figure {
    border-radius: 12px;
}

.gallery .form-row>[class*=col-] {
    margin-bottom: 10px;
    overflow: hidden;
}

.gallery .gallery-box figure {
    border-radius: 10px;
    overflow: hidden;
}

.gallery .gallery-box .description icon {
    width: 36px;
}

.gallery .gallery-box .description .des-txt p {
    line-height: 12px;
    font-size: 12px;
}

.gallery .gallery-box .description .des-txt .rating span {
    font-size: 13px;
    ;
}

.gallery .gallery-box .description .des-txt {}

.lb-dataContainer {
    background-color: var(--dark);
}

.lb-number {
    display: none;
}

.resion-choose .service-item {
    margin-top: 15px;
    margin-bottom: 15px;
    background: var(--white);
    height: 180px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 50px rgba(126, 142, 177, .2);
}

.resion-choose .service-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.resion-choose .service-item .icon img {
    transition: all 0.8s ease;
    cursor: pointer;
    width: 50% !important;
}

.resion-choose .service-item:hover .icon img {
    transform: rotateY(360deg);
}

.rajasthan-tour {
    background-color: var(--red);
    position: relative;
}

.rajasthan-tour::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/resorts.jpg);
    background-size: cover;
    background-position: center bottom;
}

.rajasthan-tour-des {
    margin-left: 40px;
    color: var(--white);

}

.rajasthan-tour-des h3 {
    font-size: 32px;
    color: var(--white);
}

.rajasthan-tour-des h6 {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
}

.rajasthan-tour-des p {
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
	margin: 25px;
}

.youtube-icon {
    display: flex;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 50px;
}

#youTubeVideo iframe {
    width: 100%;
    height: 500px;
}

#youTubeVideo .modal-body {
    padding: 4px
}

#youTubeVideo button.close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    background: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
}

.customer-des .text-box {
    background: #f4f4f4;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
}

.customer-des .author {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    border: 2px solid #f00;
    padding: 2px;
    overflow: hidden;
}

.customer-des .author figure img {
    height: 52px;
    object-fit: cover;
}

.happy-customers .author-name p {
    line-height: 18px;
}

.our-blog .article-box {}

.our-blog .article-box .bottom-des {
    width: 90%;
    background: #fff;
    position: absolute;
    bottom: 10px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    padding: 24px 12px 12px 12px;
    min-height: 100px;
}

.our-blog .article-box .bottom-des h5 {
    font-weight: 600;
    font-size: 16px;
}

.our-blog .article-box .bottom-des span.date {
    background: var(--red);
    color: var(--white);
    width: 44px;
    height: 44px;
    position: absolute;
    right: 20px;
    top: -20px;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.our-blog .article-box .bottom-des .readmore {}

.our-videos .article-box figure {
    margin-bottom: 0px;
}

.our-videos .article-box figure span.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    background: #f00;
    padding: 4px 10px;
    line-height: 1;
    border-radius: 5px;
}

.our-videos .article-box .bottom-des {
    text-align: center;
    background: #fe5955;
    padding: 10px 0px;
}

.our-videos .article-box .bottom-des h5 {
    color: #fff;
    margin-bottom: 0;
}

.our-videos .article-box:hover .bottom-des {
    background-color: var(--dark);
}

.award-sec {
    position: relative;
    padding-bottom: 18px;
}

.award-sec::before {
    content: "";
    width: 100%;
    height: 36%;
    background-color: var(--red);
    position: absolute;
    bottom: 0;
    left: 0;
}

.award-sec .owl-img {
    background: #fff;
    border: 1px solid var(--red);
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
}

.award-sec .owl-img img {
    max-height: 80px;
    margin: auto;
    object-fit: scale-down;
}

.region-sec {}

.region-sec .region-bottom-content h4,
.region-sec .region-bottom-content h3,
.region-sec .region-bottom-content h2 {
    font-size: 18px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.region-sec .region-bottom-content p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 8px;
}

.region-sec .region-bottom-content ul {
    list-style: circle;
    padding-left: 24px;
}

.region-sec .region-bottom-content li {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 8px;
}

.region-sec .region-bottom-content li::marker {
    color: var(--red);
}

footer {
    padding: 50px 0px;
    background-color: #fcdddc;
}

footer .footer-top {
    border-bottom: 1px solid var(--dark);
    padding-bottom: 12px;
}

.f-logo img {
    filter: invert(1);
}

.f-social {
    gap: 12px;
}

.f-social a {
    background-color: var(--dark);
    color: #fff;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 22px;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.f-social a:hover {
    background-color: var(--red);
}

.footer-widget h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.footer-widget .menu--customer-support {}

.footer-widget .menu--customer-support li,
.footer-widget nav li {
    font-size: 14px;
    line-height: 30px;
    color: #000;
    position: relative;
}

.footer-widget .menu--customer-support li a,
.footer-widget nav li a {
    position: relative;
}

.footer-widget .menu--customer-support li a:after,
.footer-widget nav li a:after {
    content: '';
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    position: absolute;
    background: var(--red);
    transition: ease-in-out 0.3s;
}

.footer-widget .menu--customer-support li a:hover::after,
.footer-widget nav li a:hover::after {
    width: 100%;
}

.footer-widget .menu--customer-support li a,
.footer-widget nav li a {}

.footer-widget .about-location li {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    margin-bottom: 14px;
    font-weight: 500;
}

.footer-widget .about-location li span {
    font-weight: 400;
}

.footer-widget .about-location li i {
    font-size: 16px;
    margin-right: 2px;
}

.footer-widget .reviews .btn {
    background: #fff;
    border: 0;
    font-size: 13px;
    font-weight: 500;
}

.f-newsletter .form-control {
    height: 48px;
}






.dropdown-menu {
    padding: 0;
    margin: 0;
    border: 0 solid transition !important;
    border: 0 solid rgba(0, 0, 0, .15);
    border-radius: 0;
    box-shadow: none !important
}

/*.mainmenu a,*/

.navbar-default .navbar-nav>.show>a,
.navbar-default .navbar-nav>.show>a:focus,
.navbar-default .navbar-nav>.show>a:hover {
    color: #fff;
    background-color: #0f3c9e;
    outline: 0;
}

.navbar-light .navbar-toggler {
    padding: 0;
}

.navbar-light .navbar-toggler .fa-bars {
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
}

.only-mobile {
    display: none;
}

.only-desktop {
    display: block;
}

/*==========Sub Menu=v==========*/
.mainmenu .collapse ul>li:hover>a {
    text-decoration: none;
    transition: all 0.5s ease;
}

.mainmenu .collapse ul ul>li:hover {
    background-color: var(--red);
}

.mainmenu .collapse ul ul>li:hover a {
    color: var(--white);
}

.mainmenu .collapse ul ul,
.mainmenu .collapse ul ul.dropdown-menu {
    background-color: var(--white);
}




/******************************Drop-down menu work on hover**********************************/

@media only screen and (min-width: 767px) {

    /* Level 1 */
    .mainmenu .collapse ul ul {
        position: absolute;
        top: 80px;
        left: 0;
        min-width: 250px;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.5s ease all;
        transition: 0.5s ease all;
    }

    .mainmenu .collapse ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        top: 100%;
        border-bottom: 2px solid var(--red);
    }

    /* Level 2 */
    .mainmenu .collapse ul ul li {
        position: relative;
        padding: 10px 15px;
    }




}

@media only screen and (max-width: 767px) {

    /* Level 1 mobile arrow */
    .mainmenu ul li a .fa-angle-down {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 25px;
        height: 25px;
        color: #fe5955;
        text-align: center;
        line-height: 25px;
    }

    .mainmenu .collapse ul ul li {
        position: relative;
        padding: 10px 15px;
    }
}

/*custom css*/
.mainmenu ul li a.dropdown-toggle::after {
    display: none;
}

/*-- Swiper Carousel --*/
.swiper-button-next2:after,
.swiper-button-prev2:after,
.swiper-button-next3:after,
.swiper-button-prev3:after,
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: 400;
}

.swiper-button-next3:after,
.swiper-button-next2:after,
.swiper-button-next:after {
    content: "\f061";
}

.swiper-button-prev3:after,
.swiper-button-prev2:after,
.swiper-button-prev:after {
    content: "\f060";
}


.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    top: 50%;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
    background: var(--dark);
    border-radius: 50%;
    border: 1px solid var(--dark);
    box-shadow: 0px 2px 4px var(--gray);
}

.swiper-button-next2,
.swiper-button-prev2 {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    top: 30%;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
    background: var(--dark);
    text-align: center;
    line-height: 40px;
    position: absolute;
    right: 0;
    box-shadow: 0px 0px 6px var(--gray);
}

.swiper-button-next3,
.swiper-button-prev3 {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -khtml-border-radius: 100%;
    top: 16%;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
    background: var(--dark);
    text-align: center;
    line-height: 40px;
    position: absolute;
    right: 0;
    box-shadow: 0px 2px 4px var(--gray);
}

.swiper-button-next3:hover,
.swiper-button-next3.swiper-button-disabled,
.swiper-button-prev3:hover,
.swiper-button-prev3.swiper-button-disabled,
.swiper-button-next2:hover,
.swiper-button-next2.swiper-button-disabled,
.swiper-button-prev2:hover,
.swiper-button-prev2.swiper-button-disabled,
.swiper-button-next:hover,
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev:hover,
.swiper-button-prev.swiper-button-disabled {
    background: var(--white);
    border: 1px solid var(--white);
    opacity: 1;
}

.swiper-button-next3:hover::after,
.swiper-button-next3.swiper-button-disabled::after,
.swiper-button-prev3:hover::after,
.swiper-button-prev3.swiper-button-disabled::after,
.swiper-button-next2:hover::after,
.swiper-button-next2.swiper-button-disabled::after,
.swiper-button-prev2:hover::after,
.swiper-button-prev2.swiper-button-disabled::after,
.swiper-button-next:hover::after,
.swiper-button-next.swiper-button-disabled::after,
.swiper-button-prev:hover::after,
.swiper-button-prev.swiper-button-disabled::after {
    color: var(--dark);
}

.swiper-button-next3::after,
.swiper-button-prev3::after,
.swiper-button-next2::after,
.swiper-button-prev2::after,
.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--white);
}

.swiper-button-next,
.swiper-button-next2,
.swiper-button-next3 {
    right: -35px;
    left: auto;
}

.swiper-button-prev,
.swiper-button-prev2,
.swiper-button-prev3 {
    right: auto;
    left: -35px;
}

.pagi .swiper-pagination1 {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    text-align: center;
}

.pagi .swiper-pagination-bullet {
    background: #FFF5E0;
    width: 50px;
    height: 4px;
    margin: 0 4px !important;
    border-radius: 0;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    margin: 0 4px !important;
    background: var(--red);
}

.pagi.style .swiper-pagination-bullet {
    background: rgba(254, 89, 85, 0.2);
}

.pagi.style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--red);
}

.award-sec .pagi.style .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

.award-sec .pagi.style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--dark)
}

.search-destination .input-group .master-search-form .fa-search {
    position: absolute;
    left: 14px;
    z-index: 1;
    top: 52%;
    transform: translateY(-48%);
}

.search-destination .input-group .form-item-search {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.search-destination .input-group .form-control.form-text {
    margin-top: 0;
    padding-left: 40px;
}

.ajax-progress {
    display: none;
}

.ui-menu .ui-menu-item {}

.ui-menu .ui-menu-item-wrapper {
    display: block;
    line-height: 36px;
}

.ui-menu .ui-menu-item-wrapper:hover {
    border: 0;
    background-color: var(--red);
}

/*-- End Swiper Carousel --*/

/*-- Inner Page Css Start Here -- */
.inner-page-banner {
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 100px 0 0px;
}

.inner-page-banner h1 {
    font-weight: 600;
}

.inner-page-banner p.small {
    font-weight: 500;
    line-height: 18px;
    color: #e7e7e7;
}

.popular-packages.short-by-categories .destination-box .bottom-con {
    background-color: var(--white);
}

.popular-packages.short-by-categories .destination-box .bottom-con h5 a {
    color: var(--red);
}

.popular-packages.short-by-categories .destination-box .bottom-con h5:hover a {
    color: var(--dark);
}

.nav-pagination .pagination .page-link {
    padding: .8rem 1.1rem;
}

.nav-pagination .page-item.disabled .page-link,
.nav-pagination .page-link {
    border-color: #fcdddc;
}

.page-link {
    color: var(--red);
}

.nav-pagination .page-link:hover {
    background-color: var(--red);
    color: var(--white);
}

.search-destination {
    max-width: 500px;
    margin: auto;
}

.search-destination .form-control {
    height: 3rem;
}

.search-destination .form-control:focus {
    box-shadow: none;
}

.packages-list .table thead th {
    font-size: 18px;
    font-weight: 400;
}

.packages-list .table td {
    font-size: 13px;
    white-space: nowrap;
    font-weight: 400;
}

.packages-list .table td:first-child,
.packages-list .table thead th:first-child {
    font-weight: 500;
    font-size: 15px;
    background-color: var(--white);
    position: sticky;
    left: 0px;
}

.packages-list .table thead th:first-child {
    background-color: #343a40;
}

.packages-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.packages-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}

.packages-list::-webkit-scrollbar-thumb {
    background-color: #4e4e4e;
}

.packages-list::-webkit-scrollbar {
    height: 12px;
    background-color: #f5f5f5;
}

.popular-packages .colspan {}

.popular-packages .colspan p {}

.popular-packages h4,
.popular-packages .colspan h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--red);
    margin: 10px 0px;
}

.popular-packages .colspan h5 {
    font-weight: 500;
    font-size: 16px;
}

.popular-packages .colspan ul {
    list-style: circle;
    margin-left: 20px;
    margin-bottom: 10px;
}

.popular-packages .colspan li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 4px;
}

/*-- Sidebar Items --*/
.sidebar-sticky {
    position: sticky;
    top: 0px;
}

.sidebar-head h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-left: 6px;
}

.sidebar-item {
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 20px #cccccc57;
    margin-bottom: 30px;
    padding: 10px;
}

.sidebar-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.sidebar-item .call-details .form-control {
    height: calc(1.6em + .75rem + 2px);
    font-size: .8rem;
}

.sidebar-item .call-details textarea.form-control {
    height: auto;
    resize: none;
}

/* Filter Sidebar Checkbox --*/

.filter-sec .sidebar-content .form-group,
.filter-sec .sidebar-content .form-check {
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.filter-sec .sidebar-content .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.filter-sec .sidebar-content .form-group label,
.filter-sec .sidebar-content .form-check label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 200;
}

.filter-sec .sidebar-content .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--dark);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 6px;
}

.filter-sec .sidebar-content .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 5.6px;
    width: 5px;
    height: 11px;
    border: solid var(--dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tab-sec {
    position: sticky;
    top: 0px;
    width: 100%;
    overflow: auto;
    background-color: var(--white);
    z-index: 1;
}

.tab-sec ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #f3f3f3;
    margin-bottom: 30px;
}

.tab-sec ul li {
    cursor: pointer;
    padding-bottom: 14px;
    font-weight: 500;
}

.tab-sec ul li.active {
    color: var(--red);
    border-bottom: 2px solid var(--red);
}

.destination-outer .tab-sec ul li i {
    font-size: 20px;
}

.destination-fw-item {
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 0 10px #cccccc67;
}

.destination-fw-image {
    overflow: hidden;
    position: relative;
}

.destination-fw-image img {
    transition: 2s linear;
}

.destination-fw-item:hover {
    transform: translateY(-3px);
}

.destination-fw-item:hover img {
    transform: scale(1.1);
}

.destination-fw-item:nth-child(even):hover img {
    transform: scale(1.2) rotate(5deg);
}

.destination-fw-item:last-child {
    margin-bottom: 0;
}

.destination-fw-desc h4 {
    margin-bottom: 10px;
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
}

.fw-content .deal-rating {
    margin: 0 0 10px 0;
    display: inline-block;
    float: right;
}

.destination-fw-content span {
    font-size: 18px;
    cursor: pointer;
    border-right: 1px solid #f2f2f2;
    padding-right: 4px;
}

.fw-price p {
    margin-bottom: 0;
}

.fw-price span.bold {
    display: block;
    font-weight: 600;
    font-size: 26px;
    color: var(--red);
}

.destination-fw-item .deal-rating {
    text-align: center;
    margin: 5px 0 14px;
}

.deal-rating span,
.sale-review span {
    color: #ffc63f;
    font-size: 16px;
}

.tours-faq {}

.tours-faq h2,
.tours-faq h2 strong {
    font-size: 18px;
    font-weight: 500;
}

.tours-faq h5 {
    font-size: 15px;
    font-weight: 400;
    color: var(--red);
    margin-bottom: 3px;
}

.tours-faq p {
    font-size: 13px;
    line-height: 20px;
}

.tours-faq ol {
    list-style: circle;
    margin-left: 24px;
    margin-bottom: 12px;
}

.tours-faq ol li {
    font-size: 14px;
    line-height: 26px;
}



.timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

.timeline-centered:before {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    background: var(--red);
    left: 158px;
    top: 20px;
    bottom: 20px;
}

.timeline-centered .timeline-entry {
    position: relative;
    width: auto;
    margin-left: 170px;
    margin-bottom: 20px;
    clear: both;
}


.timeline-centered .timeline-entry .timeline-entry-inner {
    position: relative;
    margin-left: -22px;
}


.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
    position: absolute;
    left: -100px;
    text-align: right;
    padding: 7px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    background: #fff;
    color: #737881;
    display: block;
    width: 24px;
    height: 24px;
    background-clip: padding-box;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--red);
    line-height: 24px;
    font-size: 15px;
    float: left;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
    position: relative;
    background: #f5f5f6;
    padding: 1.5em;
    margin-left: 50px;
    background-clip: padding-box;
    border-radius: 3px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 9px 0;
    border-color: transparent #f5f5f6 transparent transparent;
    left: 0;
    top: 10px;
    margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
    color: #737881;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--dark);
}

#myCarousel .list-inline {
    white-space: nowrap;
    overflow-x: auto;
}

#myCarousel .carousel-indicators {
    position: static;
    left: initial;
    width: initial;
    margin-left: initial;
}

#myCarousel .carousel-indicators>li {
    width: initial;
    height: initial;
    text-indent: initial;
}

#myCarousel .carousel-indicators>li.active img {
    opacity: 0.7;
}

#Recommended_itinerary h3,
#Pricing h3,
#Accommodation h3 {
    font-size: 20px;
    color: var(--red);
}

#Recommended_itinerary h4,
#Pricing h4,
#Accommodation h4 {
    font-size: 18px;
    color: var(--red);
}

.product-details-content .packages-list .table td {
    font-size: 16px;
}

.product-details-content .packages-list ul li {
    list-style: auto;
    margin-left: 22px;
    line-height: 32px;
    font-size: 15px;
    font-weight: 400;
}

.product-details-content .nav-tabs .nav-item.show .nav-link {
    border-color: #fe5955 #fe5955 #fff;
}

.product-details-content .nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #000 #000 #fff;
    background-color: #000;
    color: #fff;
}

.product-details-content .nav-tabs .nav-link {
    border-radius: 0;
    cursor: pointer;
}

.feature_home p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.best-facility .card.shadow:hover {
    box-shadow: 0 .1rem 2rem rgba(0, 0, 0, .15) !important;
    cursor: col-resize;
}

.best-facility .feature_home figure img {
    transition: all 0.8s ease;
    cursor: pointer;
}

.best-facility .feature_home:hover figure img {
    transform: rotateY(360deg);
}

.path-taxonomy p strong,
.path-taxonomy h2 strong,
.path-taxonomy h3 strong,
.path-taxonomy h4 strong,
.path-taxonomy h5 strong,
.path-taxonomy h6 strong {
    font-weight: 600;
    color: #363636;
}

.tours-faq .field-content div {
    margin-bottom: 20px;
}

.tours-faq .field-content div[itemprop="text"] {
    font-size: 15px;
}

.tours-faq .field-content div[itemprop="text"] h4,
.strip_all_tours h3,
.strip_all_tours h4,
.strip_all_tours h5,
.strip_all_tours h6 {
    margin-top: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.strip_all_tours h2 strong,
.strip_all_tours h3 strong,
.strip_all_tours h4 strong,
.strip_all_tours h5 strong,
.strip_all_tours h6 strong {
    font-weight: 600;
}

.tours-faq .field-content div h3[itemprop="name"] {
    margin-bottom: 9px;
}

.bottom-content-full ul,
.bottom-content-full ol,
.bottom-content-full ul,
.table-responsive-sm ul {
    list-style-type: disc;
    margin-top: 12px;
    padding-left: 30px;
}

.bottom-content-full ul li,
.bottom-content-full ol li,
.table-responsive-sm ul li {
    margin: 10px 0px;
    font-size: 15px;
}

.bottom-content-full .tours-faq p {
    margin: 10px 0px;
    font-size: 15px;
}

.bottom-content-full h2 {
    margin: 0 0 10px;
    line-height: 30px;
    font-weight: 600;
}


.hotel-slider .owl-carousel {
    position: relative;
}

.hotel-slider .owl-next,
.hotel-slider .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.hotel-slider .owl-next {
    right: 7px;
    display: flex;
    font-size: 98px !important;
}

.hotel-slider .owl-prev {
    left: 7px;
    display: flex;
    font-size: 98px !important;
}