:root {
    --white: #fff;
    --black: #000;
    --theme-color: #d00000;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1440px;
    }
}

@font-face {
    font-family: "LemonJellyPersonalUse";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/LemonJellyPersonalUse.woff") format("woff");
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

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

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-width: 150px;
    transition: 0.3s ease-in-out;
}

header {
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
    background-color: #231f20;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    color: var(--white);
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}

.openSearch {
    color: var(--white);
    font-size: 1.125rem;
}

.topBar {
    background-color: var(--black);
    padding: 0.5rem 0;
}

.socialIo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.socialIo li a {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    font-size: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: var(--black);
}

.socialIo li a.fb {
    background-color: #4b69b0;
}

.socialIo li a.twitter {
    background-color: #37b1e1;
}

.socialIo li a.insta {
    background-color: #892393;
}

.socialIo li a.pinterest {
    background-color: #e83f3a;
}

.socialIo li a:hover {
    color: var(--white);
}

.emailContent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.emailContent li + li {
    border-left: 1px solid var(--white);
}

.emailContent li a {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #f5f5f5;
    line-height: 1;
    padding: 0 1rem;
}

.emailContent li a i {
    margin-right: 1rem;
    color: var(--theme-color);
}

.emailContent li a:hover {
    color: var(--theme-color);
}

.emailContent li a.loginBtn {
    font-size: 14px;
}

.form-inline {
    margin-left: 2rem;
    gap: 1rem 2rem;
}

.main-slider {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.main-slider h5 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
}

.main-slider h2 {
    font-size: 6.875rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0;
    text-transform: capitalize;
}

.main-slider h2 span {
    color: var(--theme-color);
}

.main-slider p {
    font-size: 1.125rem;
    font-weight: 200;
    color: var(--white);
    line-height: 1.667;
}

.scroll-down {
    display: inline-flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    z-index: 1000;
    line-height: 20px;
    position: absolute;
    bottom: 8rem;
    left: 16rem;
    transform: translateX(-50%);
    gap: 0 0.5rem;
}

.scroll-down span {
    position: relative;
    top: 0;
    width: 30px;
    height: 50px;
    border: 1px solid var(--white);
    border-radius: 50px;
    box-sizing: border-box;
}

.scroll-down span::before {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    content: "";
    width: 4px;
    height: 8px;
    margin-left: -5px;
    background-color: var(--theme-color);
    border-radius: 50px;
    margin: 0 auto;
}

.scroll-down:hover {
    color: var(--theme-color);
}

/* Search Box */
.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1111;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 50%);
}

.searchBox .form-group {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.searchBox input {
    min-height: 60px;
    width: 100%;
    border: none;
    padding: 1rem;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.searchBox button {
    background: #fff;
    color: #000;
    width: 60px;
    min-height: 60px;
    border: none;
}

.searchBox .searchClose {
    position: absolute;
    display: block;
    right: 2rem;
    top: 2rem;
    color: #fff;
    font-size: 2.15rem;
    cursor: pointer;
}

/* Theme Button Css Start */

.themeBtn {
    display: inline-block;
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    z-index: 1;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    position: relative;
    overflow: hidden;
    padding: 1em 2em;
    border-radius: 0px;
    text-transform: uppercase;
}

.themeBtn:hover {
    background-color: transparent;
    color: var(--white);
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

.themeBtn:before,
.themeBtn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 50%;
}

.themeBtn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.themeBtn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.themeBtn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.themeBtn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Theme Button Css End */

/* Begin: Title CSS */
.title {
    margin-bottom: 2em;
    display: table;
}

.title span {
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0 1rem;
}

.title span .line {
    height: 2px;
    width: 100px;
    background: var(--black);
}

.title h2 {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    color: var(--black);
}

/* END: Title CSS */

.aboutSec p {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "Poppins";
    color: #828282;
    line-height: 1.667;
}

.aboutSec .row + .row {
    margin-top: 5rem;
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-prev,
.slick-next {
    color: var(--black);
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0px 4px 68.4px 7.6px rgba(85, 85, 85, 0.09);
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    font-size: 18px;
    z-index: 1;
}

.slick-prev:is(:hover, :focus),
.slick-next:is(:hover, :focus) {
    background: var(--theme-color);
    color: var(--white);
}

.travelSegment .slick-prev {
    left: 22rem;
}

.travelSegment .slick-next {
    right: 22.5rem;
}

.slick-dots {
    bottom: -3rem;
    padding-right: 3rem;
    text-align: center;
}

.slick-dots li {
    display: inline-flex;
    justify-content: center;
    width: auto;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.slick-dots li button {
    width: 26px;
    height: 9px;
    display: block;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    background-color: rgb(179, 179, 179);
}

.slick-dots li.slick-active button {
    width: 100px;
    background-color: var(--theme-color);
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    content: none;
}

/* segmentCard */

.segmentCard {
    margin: 0.5rem;
    position: relative;
    margin-top: 3rem;
    transition: 0.3s ease-in-out;
}

.segmentCard img {
    transition: 0.3s ease-in-out;
    object-fit: cover;
    height: 100%;
    box-shadow: 0px 0px 6px 3px #8d8c8c7d;
}

.segmentCard .content {
    background-image: linear-gradient(
            90deg,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 100%
    );
    background-image: -webkit-linear-gradient(
            90deg,
            rgb(0 0 0/80%) 0%,
            rgba(0, 0, 0, 0) 100%
    );
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 3rem;
    padding-bottom: 1rem;
    transform: scale(0);
    transform-origin: bottom right;
    transition: 0.3s ease-in-out;
}

.segmentCard h3 {
    font-size: 4.8125rem;
    color: var(--white);
    font-family: "LemonJellyPersonalUse";
    line-height: 0.774;
}

.segmentCard.slick-slide.slick-current.slick-active.slick-center {
    z-index: 1;
    margin-top: 0;
    transform: scaleY(1.15);
}

.segmentCard.slick-slide.slick-current.slick-active.slick-center .content {
    transform: scale(1);
    padding-bottom: 3rem;
}

/* .tripSection */

.tripSection {
    padding-top: 0;
    background: url(../images/tripBg.png) bottom left/auto no-repeat;
}

.tripCard {
    position: relative;
    margin-bottom: 2.5rem;
}

.tripCard .imgWrap {
    display: block;
    overflow: hidden;
}

.tripCard img {
    transition: 0.3s ease-in-out;
}

.tripCard .content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.tripCard .content h3 {
    font-size: 2rem;
    color: #f8fefe;
    font-weight: 600;
    line-height: 1;
}

.tripCard .content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.389;
}

.tripCard .content .themeBtn {
    margin-bottom: -1.5rem;
    background-color: #231f20;
    border-color: #231f20;
}

.tripCard:hover img {
    transform: scale(1.125);
}

/* visionSection */
.visionSection {
    padding: 0;
    background: var(--theme-color) url(../images/visionBg.png) center right/auto no-repeat;
}

.visionSection .contentWrap {
    margin-left: 4rem;
}

.visionSection .title span .line {
    background-color: var(--white);
}

.visionSection .title span,
.visionSection .title h2 {
    color: var(--white);
}

.visionSection p {
    color: var(--white);
    font-weight: 300;
    font-size: 1.125rem;
}

.visionSection .themeBtn {
    background-color: #231f20;
    border-color: #231f20;
}

/* Begin: Review Sec */
.reviewSection {
    background: #f8fefe url(../images/reviewBg.png) center right/auto no-repeat;
}

.reviewThumb {
    background: #fff;
    margin: 1rem 0.75rem;
    padding: 2rem 1.75rem;
    position: relative;
    border-radius: 1rem;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    transition: 0.3s ease-in-out;
}

.reviewThumb .fa-quote-left {
    font-size: 6.25rem;
    margin-top: -4rem;
    display: block;
    text-align: right;
    margin-bottom: 1rem;
    transform: scaleX(-1);
    color: #f7f7f7;
}

.reviewThumb .rating {
    margin-bottom: 1rem;
}

.reviewThumb .rating i {
    color: #ffcc00;
    font-size: 1.125rem;
}

.reviewThumb p {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #757c85;
    font-weight: 500;
    font-style: italic;
    line-height: 1.8;
}

.reviewThumb .user {
    display: flex;
    align-items: center;
    position: relative;
    top: 10px;
}

.reviewThumb .user img {
    border-radius: 100px;
    margin-right: 10px;
}

.reviewThumb .user span {
    font-weight: 500;
    font-size: 1.125rem;
    font-family: "Poppins", sans-serif;
    color: #092943;
}

.reviewsCarousel .slick-slide {
    padding: 40px 0;
}

.reviewsCarousel
.slick-slide.slick-current.slick-active.slick-center
.reviewThumb
.fa-quote-left {
    color: var(--theme-color);
}

.reviewsCarousel
.slick-slide.slick-current.slick-active.slick-center
.reviewThumb {
    border-color: var(--theme-color);
    box-shadow: 0px 8px 53.1px 5.9px rgba(221, 221, 221, 0.32);
}

/* Blog Section */
.blogSection {
    background: #f8fefe url(../images/blogBg.jpg) center right/cover no-repeat;
}

.blogCard {
    border-radius: 10px;
    padding: 2rem 2rem 0;
    background-color: var(--white);
    box-shadow: 0px 8px 53.1px 5.9px rgba(200, 200, 200, 0.31);
}

.blogCard img {
    border-radius: 10px;
}

.blogCard .content {
    padding-top: 2rem;
}

.blogCard .content > span {
    font-size: 16px;
    font-weight: 400;
    color: rgb(94, 94, 94);
    line-height: 1;
}

.blogCard h3 {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    margin: 0.5rem 0;
}

.blogCard .themeBtn {
    transform: translateY(1.5rem);
    border: 1px solid var(--theme-color);
}

/* teamSec */
.teamSec {
    background: #fefefe;
}

/* Team Card */
.teamCard {
    border-width: 1px solid rgb(225, 225, 225);
    border-radius: 18px;
    background-color: var(--white);
    text-align: center;
    padding: 1.5rem;
    margin: 0 1.5rem;
    box-shadow: 0px 4px 125px 0px rgba(200, 200, 200, 0.8);
}

.teamCard img {
    border-radius: 50%;
}

.teamCard h3 {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0rem;
    color: var(--black);
}

.teamCard p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #6c6c6c;
}

.teamCard .content {
    padding: 1.5rem 1rem;
    transition: 0.3s ease-in-out;
}

.teamCard .socialIo {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.teamCard .socialIo li:nth-child(1) a {
    transition: 0.4s ease-in-out;
}

.teamCard .socialIo li:nth-child(2) a {
    transition: 0.5s ease-in-out;
}

.teamCard .socialIo li:nth-child(3) a {
    transition: 0.6s ease-in-out;
}

.teamCard .socialIo li:nth-child(4) a {
    transition: 0.7s ease-in-out;
}

.teamCard .socialIo li a {
    color: var(--black);
    height: 58px;
    width: 58px;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: scale(0);
    border: none;
    transform-origin: bottom;
    background-color: var(--white);
    box-shadow: 0px 8px 36px 4px rgba(234, 234, 234, 0.73);
}

.teamCard .socialIo li a:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.teamCard:hover .socialIo li a {
    transform: scale(1);
}

/* Begin: footer */

footer {
    background-color: var(--black);
    padding-top: 6em;
    position: relative;
}

footer .footerLogo img {
    max-width: 150px;
}

footer h3 {
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}

footer h3::before {
    content: "";
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    background-color: var(--theme-color);
}

footer p {
    color: var(--white);
    font-size: 15px;
    margin: 1.5rem 0 0;
}

footer .links,
footer .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 0.6rem 0;
}

footer .links {
    flex-wrap: wrap;
    max-height: 225px;
}

footer .contInfo {
    gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
    font-weight: 400;
    color: var(--white);
    font-size: 1rem;
}

footer .contInfo li a {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 0 1rem;
    line-height: 1.5;
}

footer .contInfo li a i {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    transition: 0.3s ease-in-out;
    background-color: var(--white);
}

footer .contInfo li a:hover i {
    background-color: var(--theme-color);
    color: var(--white);
}

footer .links li a:hover,
footer .links li a:focus {
    color: var(--theme-color);
}

.copyRight {
    border-top: 1px solid #707070;
    padding: 2em 0;
    margin-top: 5em;
    align-items: center;
}

.copyRight p {
    margin: 0;
}

.copyRight .footerSocial {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 6px;
}

.copyRight .footerSocial a {
    font-size: 1rem;
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--white);
    width: 50px;
    height: 50px;
}

.footerSocial a.fb {
    background-color: #4b69b0;
}

.footerSocial a.twitter {
    background-color: #37b1e1;
}

.footerSocial a.insta {
    background-color: #892393;
}

.footerSocial a.pinterst {
    background-color: #e83f3a;
}

/* END: footer */
.scrollWrap {
    position: absolute;
    left: 50%;
    bottom: -5rem;

    z-index: 1;
    background-color: var(--white);

    width: 150px;
    height: 150px;
    border-radius: 15px;
    padding: 1rem 2rem;
    transform: translateX(-50%) rotate(45deg);
}

.scrollWrap .scroll-down {
    position: unset;
    transform: rotate(-45deg);
}

.scrollWrap .scroll-down span {
    border: 1px solid var(--black);
}

/*inner pages css start*/

/*contact page css start*/
.contactSec {
    background-color: #f8fefe;
}

.contactSec h2 {
    font-size: 3.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contactSec ul {
    padding-top: 1rem;
}

.contactSec ul li {
    color: #d00000;
    font-weight: bold;
    margin: 1.5rem 0;
    text-transform: uppercase;
}

.contactSec ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: #8b8b8b;
    padding-left: 0.5rem;
    text-transform: capitalize;
}

.getForm input {
    border: none;
    width: 100%;
    height: 4.375rem;
    margin: 0 0 2rem;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.getForm textarea {
    border: none;
    width: 100%;
    height: 13.5625rem;
    margin: 0 0 2rem;
    resize: none;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.getForm .sectionHeading {
    margin: 0 0 1.3rem;
    text-align: left;
    font-size: 3.125rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.getForm input::placeholder {
    color: #858585;
    padding-left: 1rem;
}

.getForm textarea::placeholder {
    color: #858585;
    padding-left: 1rem;
    padding-top: 1rem;
}

.mapSec {
    padding: 0;
}


/*team page css start*/

.teamSec.teamInner .teamCard {
    border-width: 1px solid rgb(225, 225, 225);
    border-radius: 18px;
    background-color: var(--white);
    text-align: center;
    padding: 1.5rem;
    margin: 0 1.5rem;
    box-shadow: 0px 4px 125px 0px rgb(200 200 200 / 80%);
    margin-bottom: 4rem;
}


/*gallery page css start*/

.gallerySec figure {
    width: fit-content;
    position: relative;
    margin: 1rem 0 0;
}

.gallerySec figure .overlay {
    position: absolute;
    inset: 0;
    background: rgb(255 0 0 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.gallerySec figure:hover .overlay {
    opacity: 1;
}


/*trip page css start*/


.tripSec {
    padding: 3rem 0;
}

.tripSec .row {
    margin: 5rem 0;
}

.upcomingSec p {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "Poppins";
    color: #828282;
    line-height: 1.667;
    text-align: center;
}
.aboutSec ul {
    list-style-type: decimal;
    line-height: 2;
    font-size: 1.2rem;
    color: #818181;
}
.contactSec ul li span {
    color: grey;
    font-weight: 500;
    padding-left: 6px;
}
.privacySec h4 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
    padding: =;
    padding-top: 2rem;
}

.privacySec a {
    color: #000;
    font-weight: 600;
}
.privacySec p {
    font-size: 1.1rem;
}
.privacySec ul li {
    list-style-type: disc;
    line-height: 3;
    font-size: 1.1rem;
    color: grey;
}

.preLoader{
    position: fixed;
    inset: 0;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.preLoader *{
    width: 100%;
    height: 100%;
}