.pre-loader {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    -o-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-dark {
    color: black;
}

.text-center {
    align-items: center;
}

.pre-loader img {
    height: 100px;
}

.activity-icon {
    margin-top: 1rem;
    margin-left: 1rem;
}

.icon1 {
    font-size: 1.3rem;

}

/* Start Top bar*/
::-webkit-scrollbar {
    background: #015379;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #015379;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #FB8D15;
    width: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FB8D15;
}

#top_bar {
    border-bottom: 1px solid#FB8D15;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    background: #096c9b;
    color: #fff;
    padding: 10px;
    margin: 0;
    align-items: center;
    justify-content: space-around
}

/* End  Top bar*/


/*  Start Menu CSS */

@font-face {
    font-family: SFProDisplay;
    src: url('../fonts/SFProDisplay.ttf');
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    margin: 0;
    padding: 0;
    display: inline-block
}

html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: SFProDisplay;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    color: #121212;
    background: #fff;
}


a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {

    a,
    button {
        cursor: default !important;
        border: none;
        outline: none;
    }

}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.container {
    max-width: 80rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}




.brand {
    font-family: inherit;
    font-size: 1.50rem;
    font-weight: 700;
    line-height: inherit;
    color: #ffffff;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.brand img {
    padding: 2px;
    height: 80px;
}

.brand:hover {
    text-decoration: none;
    color: #ffe7fa;
}

.header {
    position: -webkit-sticky;
    position: sticky;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #fff;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;

}


.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    align-items: flex-end;
    justify-content: flex-end;
}

.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-item-right .menu-icon {
    font-size: 1.35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-left: 1rem;
    border: none;
    outline: none;
    color: #015379;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .menu>ul>li {
    display: inline-block;
    margin-top: 0.5rem;
    margin-left: 0;
}

.header .menu>ul>li>a {
    position: relative;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.25;
    border: none;
    outline: none;
    color: #015379;
    padding: 10px 15px;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    transition: 0.5s all;

}

.header .menu>ul>li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    border-radius: 0.25rem;
    border-top: 3px solid #015379;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .menu>ul>li .menu-subs>ul>li {
    line-height: 1;
}

.header .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
    color: #015379;
    text-decoration: none;
}

.header .menu>ul>li .menu-column-1 {
    min-width: 16rem;
    max-width: 16rem;
    padding: 0;
}

header .menu>ul>li .menu-column-1>ul>li {
    padding: 0 10px;
    border-bottom: 1px solid#FB8D15;
}

header .menu>ul>li .menu-column-1>ul>li:hover {
    background: #015379;
}

header .menu>ul>li .menu-column-1>ul>li:hover a {
    color: #fff;
    text-decoration: none
}

.header .menu>ul>li .menu-column-1>ul>li>a {
    font-size: 14px;
}

.header .menu>ul>li .menu-column-1>ul>li>a:hover {
    color: #fff;
    text-decoration: none
}

.header .menu>ul>li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: block;
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 0.15rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 68rem;
    width: 100%;
    padding: 1.25rem 1rem;
    box-shadow: 1px 1px 5px rgba(50, 50, 50, 0.4);
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 1rem;

}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    color: #015379;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}



.header .menu>ul>li>a:hover {
    color: #015379;
    text-decoration: none;
    background: #FB8D15;
    border-radius: 5px;
}

@media only screen and (min-width: 993px) {
    .header .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
    }

    #mobile-quick-enquiry {
        display: none;
    }

}

.menu-mobile-header,
.menu-mobile-trigger {
    display: none;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .header {
        width: 100%;
        padding: 1rem 0;
    }

    .brand img {
        padding: 5px;
        height: 60px;
    }
}

@media only screen and (max-width: 992px) {

    .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .header-item-left,
    .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        background: none;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    .header .menu-mobile-trigger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        cursor: pointer;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: #015379;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .header .menu-mobile-trigger span:nth-child(1) {
        top: 0;
    }

    .header .menu-mobile-trigger span:nth-child(2),
    .header .menu-mobile-trigger span:nth-child(3) {
        top: 0.5rem;
    }

    .header .menu-mobile-trigger span:nth-child(4) {
        top: 1rem;
    }

    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #ffffff;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .header .menu.active {
        -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
        transform: translate(0%);
    }

    .header .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0;
    }

    .header .menu>ul>li>a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #015379;
        font-weight: bold;
    }

    .header .menu>ul>li>a:hover {
        background: #015379;
        color: #fff;
        border-radius: 0;
    }

    .header .menu>ul>li>a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .header .menu .menu-mobile-header {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 501;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

    .header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        color: #121212;
        text-align: center;
    }

    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block;
    }

    .header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility;
    }

    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        color: #121212;
        text-align: center;
    }

    .header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header .menu>ul>li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .header .menu>ul>li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .header .menu>ul>li .menu-subs.active {
        display: block;
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
        margin-top: 0;
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem;
    }

    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0rem;
    }

    .header .menu>ul>li .menu-subs>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem;
    }

    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
        display: block;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.55);
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.main {
    display: block;
    width: 100%;
    min-height: 100vh;
}


/*  End Menu CSS */



/* start Enquiry Form */
.quick_enquiry {
    /* background: url("../images/india-gate.webp"); */
    background-size: 25% auto;
    background-position: right;
    background-repeat: no-repeat;
}

.padding1 {
    padding: 0;
}

.form-size {
    background: #44b2d8;
}

.quick-enquiry-form {
    background: #045679;
    color: black;
    padding: 14px;
    text-align: center;
    height: 60%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    /* box-shadow: -10px 0 20px rgba(1, 93, 136, 0.8); */
}


.quick-enquiry-form h2 {

    color: white;
    margin-top: 1.5rem;
    font-size: 2.9rem;
    margin-bottom: 0px;
    text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    font-family: 'Sono', sans-serif;
}


.quick-enquiry-form2 {
    text-align: center;
    background: #045679;
}

.quick-enquiry-form2 h2 {
    /* margin-right: 56px; */
    color: white;
    margin-top: 1.5rem;
    font-size: 3rem;
    margin-bottom: 0px;
    text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}


.quick-enquiry-form table {
    margin-top: 0.2rem;
}

.enquiry-control {
    width: 80%;
    padding: 8px 10px;
    border: 1px solid #03adc4;
    outline: 0;
    margin: 4px;
    font-size: 0.9rem;
    background: rgba(0, 96, 110, 0.6);
}

::-webkit-input-placeholder {
    color: #c7c7c7;
}

.enquiry_bt {
    background: linear-gradient(45deg, #03adc4, #FB8D15, #03adc4);
}

#mobile-quick-enquiry {
    background: #fff;
    border-bottom: 2px solid #f5ebf0;
    border-top: 2px solid #f5ebf0;
    padding: 0;
    margin-top: 30px;
}

#mobile-quick-enquiry>.myform {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#mobile-quick-enquiry>h2 {
    font-size: 1.2rem;
    margin: 0;
    border-bottom: 2px solid #03adc4;
    width: 100%;
    padding: 10px 25px;
    font-weight: 900;
    color: #015379;
}

#mobile-quick-enquiry>h2>span.enq-plus {
    float: right;
    cursor: pointer;
}

#mobile-quick-enquiry>.myform>.enquiry-control {
    background: #fff;
    max-width: 500px;
    font-size: 0.8rem;
}

#mobile-quick-enquiry>.myform>.enquiry_bt {
    background: linear-gradient(45deg, #03adc4, #FB8D15, #03adc4);
    color: #fff;
}


/* End  Enquiry Form */


/*  Marquee Start*/

.main-marquee {
    background: #096c9b;
    color: #fff;
    padding: 5px;
    font-size: 0.8rem;
}

section {
    padding: 40px 10px;
    margin: 30px 0;
}





#top-place h1,
#our-services h1,
#our-package h1 {
    border-left: 5px solid #015379;
    padding: 5px 15px;
    font-size: 2rem;

}

#top-place h3,
#our-services h3,
#our-package h3 {
    font-size: 1rem;
    padding-left: 20px;

}

#top-place h1 strong,
#our-services h1 strong,
#our-package h1 strong {
    color: #ff8100
}

@media only screen and (max-width: 992px) {
    .main-marquee {
        background: #015379;
        color: #fff;
        padding: 2px;
        font-size: 0.7rem;
    }

    #top_bar .top_hide {
        display: none
    }

    section {
        padding: 30px 7px;
        margin: 20px 0;
    }

    #top-place h1,
    #our-services h1,
    #our-package h1 {
        border-left: 4px solid #015379;
        padding: 4px 10px;
        font-size: 1.5rem;
    }

    #top-place h3,
    #our-services h3,
    #our-package h3 {
        font-size: 0.8rem;
        padding-left: 18px;
    }

    .quick-enquiry-form {
        display: none;
    }
}



/*  Marquee * end */


* {
    box-sizing: border-box;
}

.carousel {
    background: #fff;
}

.carousel-cell {
    width: 220px;
    height: 300px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.5s all;

}


.carousel-cell:before {
    display: block;
    text-align: center;
    line-height: 150px;
    font-size: 50px;
    color: white;
}

/* no circle */
.flickity-button {
    background: transparent;
}

/* big previous & next buttons */
.flickity-prev-next-button {
    width: 30px;
    height: 30px;
    background: #808080;

}

.flickity-prev-next-button:hover {
    background: #1f1f1f;
}

/* icon color */
.flickity-button-icon {
    fill: #f4f4f4;
}


.flickity-page-dots {
    display: none;
}

.carousel-cell:nth-child(1) {
    background: url('../images/cell-slider/Buddha-Temple-Dehradun-Uttarakhand.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(2) {
    background: url('../images/cell-slider/triveni-ghat-rishikesh.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(3) {
    background: url('../images/cell-slider/lord-shiva-in-haridwar.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(4) {
    background: url('../images/cell-slider/Paragliding-in-nainital.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(5) {
    background: url('../images/cell-slidertehri.html-lake.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(6) {
    background: url('../images/cell-slidermussoorie.html-ropeways.webp');
    background-size: 220px 300px;
}

.carousel-cell:nth-child(7) {
    background: url('../images/cell-sliderchar-dham.html.webp');
    background-size: 220px 300px;
}

.carousel-cell button {
    padding: 7px;
    background: rgba(255, 255, 255, 0.77);
    ;
    width: 100%;
    position: absolute;
    bottom: 10px;
}

.carousel-cell button h3 {
    font-weight: bold
}

.carousel-cell:hover {
    background-size: 250px 370px;
    background-position: center;
}

.carousel-cell:hover .inner-box {
    display: block;
}

.carousel-cell:hover button {
    display: none;
}

.carousel-cell .inner-box {
    padding: 60px 10px;
    background: rgba(0, 0, 0, 0.6);
    margin: 10px;
    border: 5px solid #015379;
    height: 280px;
    text-align: center;
    display: none;
}

.carousel-cell .inner-box h2 {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding: 10px 0;
    font-weight: 800;
}

.carousel-cell .inner-box h4 {
    color: #fff;
    font-size: 0.8rem;
    margin-top: 1rem;
    line-height: 1.2rem;
    padding: 5px;
}

.carousel-cell .inner-box a {
    background: #FB8D15;
    outline: 0;
    padding: 10px 20px;
    color: #fff;
    font-size: 0.7rem;
    border: 1px solid #fff;
    text-decoration: none;
}

/* Our Services */
#our-services {
    background: #fff4fa;
    border-bottom: 2px solid #f5ebf0;
    border-top: 2px solid #f5ebf0;
}

#our-services .service-main {
    margin: 1rem 0;
    grid-gap: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}

#our-services .service-main .inner-box {
    margin: 5px;
    padding: 20px;
    border: 1px solid #f5e2dd;
    min-width: 160px;
    height: 120px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#our-services .service-main .inner-box>img {
    height: 50px;
    width: 50px;
    margin-right: 20px;
    transition: 0.5s all;
}

#our-services .service-main .inner-box:hover img {
    transform: scale(1.4);
    ;
}

#our-services .service-main .inner-box h2 {
    font-weight: 900;
    font-size: 1.5rem;
    color: #015379;
}


/* -----------------------*/

#our-package .package-main {
    grid-gap: 4rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

#our-package .package-main .inner-box {
    margin: 15px 10px;
    background: #fff;
    position: relative;
    transition: 0.5s all ease-out;
}

#our-package .package-main .inner-box:hover {
    transition: all 0.1sease;
    transform: scale(1.03);
    border: 1px solid;
    border-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#our-package .package-main .inner-box:hover .tag {
    background: #FB8D15
}

#our-package .package-main .inner-box table {
    width: 100%;
    line-height: 2rem;
}

#our-package .package-main .inner-box table tr td:nth-child(2) {
    padding: 0 20px;
    width: 100%;
}

#our-package .package-main .inner-box table img {
    height: 13rem;
    max-width: 230px;
    min-width: 200px;
    min-height: 180px;
}

#our-package .package-main .inner-box .tag {
    background: #015379;
    color: #fff;
    padding: 1px 10px;
    font-size: 0.8rem;
    position: absolute;
    top: 30px;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    transition: 0.5s all ease-out;
}

#our-package .package-main .inner-box table h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

#our-package .package-main .inner-box .amount {
    color: #FB8D15;
    font-weight: bold;
    font-size: 0.9rem;
}

#our-package .package-main .inner-box h3 {
    color: #797979;
    margin-bottom: 20px;
    padding: 0;
    font-size: 0.9rem;
    ;
}

#our-package .package-main .inner-box a {
    background: #FB8D15;
    padding: 8px 20px;
    color: #FFF;
    font-size: 0.9rem;

}

#our-package .package-main .inner-box a:hover {
    text-decoration: none
}

.view_more_bt {
    background: #009cde;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #015379;
}

.view_more_bt:hover {
    border: 2px solid #fb8d15;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .container {
        padding: 0 1rem;
        margin: 0 auto;
    }

    #our-package {
        padding: 10px 0;
    }

    #our-package .package-main {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        margin: 0;
    }

    #our-package .package-main .inner-box {
        margin: 10px 0;
        background: #fff5fa;
        position: relative;
        transition: 0.5s all ease-out;
    }

    #our-package .package-main .inner-box .amount {
        color: #FB8D15;
        font-weight: bold;
        font-size: 0.8rem;
    }

    #our-package .package-main .inner-box table tr td:nth-child(2) {
        padding: 0 10px;
    }

    #our-package .package-main .inner-box table img {
        width: 90%;
        height: 100%;
    }

    #our-package .package-main .inner-box table h2 {
        font-size: 1rem;
        font-weight: 700;
    }

    #our-package .package-main .inner-box h3 {
        color: #797979;
        margin-bottom: 20px;
        padding: 0;
        font-size: 0.75rem;
    }

    #our-package .package-main .inner-box a {
        background: #FB8D15;
        padding: 8px 20px;
        color: #FFF;
        font-size: 0.9rem;
    }




}


/* -----------------------*/

.client_testimonials {
    background: transparent;
    ;
}

.client_testimonials .inner-box {
    width: 300px;
    background: #015379;
    height: 300px;
    margin: 10px 20px;
    border-radius: 5px;
    padding: 20px;
    transition: 0.3s all;
}

.client_testimonials .inner-box:hover {
    box-shadow: 0 0 15px rgba(0, 169, 192, 0.6);
    border: 2px solid #fb8d15;
}

.client_testimonials .inner-box:hover img {
    top: 1px;
    border: 1px solid #fff9f2;
    height: 110px;
    width: 110px;
    transform: perspective(800px) rotateX(-30deg) translateX(-50%);
    box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.4);
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(250, 250, 250, 0.5)));

}

.client_testimonials .inner-box img {
    height: 120px;
    width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    border: 7px solid #fff9f2;
    transition: 0.3s all;
}

.client_testimonials .inner-box p {
    color: #f6f6f6;
    font-size: 0.9rem;
    top: 120px;
    position: absolute;
    text-align: justify;
    width: 260px;
}

.client_testimonials .inner-box p i {
    color: #009cde;
    padding: 1px;
}

.client_testimonials .inner-box p strong {
    color: #fb8d15;
    font-size: 1rem;
    padding-left: 10px;
    font-style: italic;
    float: right;
}


/* no circle */
.client_testimonials .flickity-button {
    background: transparent;
}

/* big previous & next buttons */
.client_testimonials .flickity-prev-next-button {
    display: none;

}

.client_testimonials .flickity-page-dots {
    display: block;
}

/* -----------------------*/


.travel_quote {
    background: #015379;
    text-align: justify;
    padding: 4rem 0;
}

.travel_quote h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;

}

.travel_quote h1 strong {
    float: right;
    color: #fb8d15;
    margin-left: 20px;
}

/* -----------------------*/

/* Footer Start */

footer {
    background: #015379;
    padding: 40px 10px 0 10px;
    color: #dcdcdc;
}

footer h1 {
    font-size: 1.5rem;
    border-left: 5px solid #fb8d15;
    padding-left: 10px;
}

footer h2 {
    font-size: 1.3rem;
    padding-left: 10px;
}

footer ul {
    margin: 10px 15px;
}

footer ul li a {
    font-size: 0.90rem;
    font-family: calibri;
    color: #c3c3c3;
    text-decoration: none;
}

footer ul li a:hover {
    color: #fff;
    text-decoration: none;
}

footer ul i {
    margin-right: 5px;
}

footer hr {
    background: #016a9b;
    height: 1px;
    border: 0;
    outline: 0;
    margin-bottom: 40px;
}

footer h3 {
    font-size: 1.5rem;
    padding-left: 10px;
    color: #ff8100;
    margin-top: 15px;
    font-weight: 900;
}

footer iframe {
    margin: 15px;
}

.copyright {
    background: #096c9b;
    margin: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #d5f5f5;
    font-size: 0.8rem;
}

.copyright a {
    text-decoration: none;
    color: #fff;
}

/* Footer End */

/*  Slider Start*/
#amazingslider-wrapper-1 {
    display: block;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

#amazingslider-1 {
    display: block;
    position: relative;
    margin: 0 auto;
}

#amazingslider-1 .amazingslider-slides {
    display: none;
}

.other-activities {
    margin-top: 3rem;
}

.go-kart {
    background: url("../images/gokart8.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.go-kart>.inner-content {
    background: rgba(0, 0, 0, 0.57);
    padding: 157px 40px;
    color: #fff;
    text-align: center;
}


.bungee {
    background: url("../images/bungee-jumping1.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}




.zipline {
    background: url("../images/zipline.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.rafting {
    background: url("../images/slider/rafting1.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.camping {
    background: url("../images/slider/camping1.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.hiking {
    background: url("../images/hiking.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}


.flyingfox {
    background: url("../images/flyingfox.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.skycycling {
    background: url("../images/Skycycling5.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}


.paintball {
    background: url("../images/paintball2.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}


.giantswing {
    background: url("../images/giantswing.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}


.reversbunzee {
    background: url("../images/reversbunzee3.avif");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.ropecourse {
    background: url("../images/ropecourse2.webp");
    background-size: cover;
    /* Ensures the image covers the entire element */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents tiling */
    width: 100%;
    /* Makes the banner span the full width */
    height: 400px;
}

.form-txtarea {
    height: 6rem;
}

.adult-child {
    width: 43%;
}

.adult-childtxt {
    font-size: 1.1rem;
}


.form-btn {
    background: #ff8100;
    color: #fff;
    transition: 0.5s all;
    font-weight: bold;

    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.travel-breadcrumb {
    background: url("../images/sub-banner.webp");
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 31rem;
}

.travel-breadcrumb>.inner-content {
    font-size: 6rem;
    font-weight: bold;
    color: #fa4103;
    text-shadow: 3px 5px 10px rgba(126, 126, 126, 0.199);
    letter-spacing: 2px;
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    animation: fadeIn 2s ease-in-out;
    white-space: nowrap;
    /* background: rgba(0, 0, 0, 0.57); */
    padding: 80px 10px;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 1;
        transform: translate(-50, -50%);
    }
}

.travel-breadcrumb>.inner-content>h1 {
    font-size: 2rem;
}

.breadcrumb {
    background: transparent;
    margin: 5px;
}

.breadcrumb>li>a {
    color: #03adc4;
}

.breadcrumb>li.active {
    color: #fff;
}

@media only screen and (max-width: 993px) {
    .travel-breadcrumb>.inner-content {
        /*background: rgba(0, 0, 0, 0.57);*/
        padding: 50px 5px;
        color: #fff;
        text-align: center;
    }

    .travel-breadcrumb>.inner-content>h1 {
        font-size: 1.6rem;
    }
}

.left-offers-bar {
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 10px;
    width: 100%;
    margin-bottom: 6.7rem;
}

.left-offers-bar h4 {
    color: #015379;
    font-weight: bold;
    font-size: 1.2rem;
}

.left-offers-bar h5 {
    color: #015379;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 0 15px 0;
}

.left-offers-bar h6 {
    background: rgba(255, 255, 255, 0.77);
    color: #000000;
    padding: 10px 40px;
    font-size: 1.3rem;
    transform: translateY(30px);
}

.left-offers-bar ul li:first-child {
    border-bottom: 3px solid #015379;
}

.left-offers-bar ul li:last-child {
    padding-bottom: 0;
    border: 0;
}

.left-offers-bar ul li {
    padding: 10px 5px;
    border-bottom: 1px solid #eeeeee;
}

.left-offers-bar ul li a {
    color: #009cde;
    text-decoration: none;
}

.left-offers-bar ul li a:hover {
    color: #000000;
}

.left-offers-bar ul li a i {
    margin-right: 5px;
}

.highlighter-1 {
    color: #009cde;
    font-weight: bold;
}

.highlighter-2 {
    color: #009cde;
    font-style: italic;
}


.enquiry-form {
    /* background: #44b2d8; */

    /* padding-bottom: 20px; */
}

.enquiry-form>.enquiry-header {
    background: #015379;
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.enquiry-form>.enquiry-header>.left {
    color: #fff;
}

.enquiry-form>.enquiry-header>.right {
    color: #fff;
    float: right;
}

.enquiry-form>.enquiry-header>.right>i {
    color: #ff763b;
}


.enquiry-form table {
    color: #fff;
    margin-top: 0.2rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);

}

form {
    width: 100%;
}

/* .enquiry-form  table tbody
{
    display: block;
    height: 25rem;

} */

.enquiry-form table tr td {
    padding: 5px 0px;
    /* border: 1px solid #e6e6e6; */
}

.enquiry-form table tr td:nth-child(odd) {
    text-align: center;
}

.enquiry-form .form-control {
    max-width: 300px;
    border-radius: 3px;
}

.enquiry-form .btn {
    background: #ff8100;
    color: #fff;
    transition: 0.5s all;
    font-weight: bold;
}

.enquiry-form .btn:hover {
    background: #000000;
}

.enquiry-form #msg_info {
    padding: 10px;
    font-weight: bold;
}



.display-place {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 15px;
    margin: 20px 0;
}

#top-destination-char-dham {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    grid-gap: 15px;
    margin: 20px 0;
}


.display-place-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 60px;
    margin: 20px 0;
}


.display-place-2 img {
    border-radius: 20px;
}


/* .display-place-2{
    width: 29rem;
    padding: 3rem 6rem 0rem 0;
    margin: 0 2rem;
 } */

.display-place-2 .top-place {

    padding: 0 20px;

}

.best-tourist-place-card {
    /* background: #7ed5d5; */
    background: #fff;
    padding: 20px;
    transition: 0.3s all;
    /* box-shadow: 0 0 10px rgba(135, 4, 4, 0.2); */
    border-radius: 3px;
    position: relative;
    height: auto;
    font-family: 'Sono', sans-serif;
}

.best-tourist-place-card:hover {
    background: #d0fdff;
    transition: all 0.3sease;
    transform: scale(1.05);
    border: 1px solid;
    border-color: transparent;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.display-place-2 h4 {
    margin-top: 1rem;
    color: #fb8d15;
    font-size: 1.2rem;
    font-weight: 700;
}

.display-place-2 p {
    font-weight: 600;
    padding-top: 0.3rem;
    /* margin-top: 0.3; */
}



.display-place-2 a {
    color: #e5e0e0;
    background-color: #7639a8;
    padding: 0.7rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-decoration: none;
}


.display-place-2 a:hover {
    transition: all 0.3sease;
    background-color: black;
}


.display-place>.top-place {
    background: #f4fcff;
    padding: 20px;
    transition: 0.3s all;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    position: relative;
    height: auto;
}

.display-place>.top-place:hover {
    transform: scale(1.03);
    border: 1px solid #009cde;
    box-shadow: none;
}

.display-place>.top-place>img {
    width: 100%;
}

.display-place>.top-place>h4 {
    color: #009cde;
    /* text-decoration: underline; */
    font-weight: bold;
    margin: 10px 0;
}

.display-place>.top-place>p {
    margin: 0;
    font-size: 1.1rem;
    text-align: justify;
}

.display-place>.top-place>p>button {
    background: #009cde;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.5s all;
}

.display-place>.top-place>p>button:hover {
    background: #000000;
}

.destination-heading {
    color: #009cde;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 10px;
}

/*  --------------------------------*/
.our-top-package {
    margin: 20px 0;
    background: #f4fcff;
    border: 1px solid #dce3e6;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    box-shadow: 0 0 7px rgba(55, 55, 55, 0.1);
    border-radius: 2px;
}

.our-top-package .image-box {
    flex: 30%;
    min-width: 200px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.our-top-package .details-box {
    padding: 20px 15px;
    font-size: 0.9rem;
    flex: 45%;
    min-width: 400px;
}

.our-top-package .details-box h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #009cde;
    margin: 10px 0;
}

.our-top-package .booking-box {
    padding: 20px 15px;
    font-size: 0.9rem;
    flex: 15%;
    min-width: 150px;
    text-align: center;
    background: #d6f7ff;
}

.our-top-package .booking-box button {
    background: #009cde;
    color: #fff;
    padding: 8px 12px;
    margin: 10px 0;
    border-radius: 5px;
}


@media only screen and (max-width: 992px) {
    .our-top-package .details-box {
        padding: 0 15px 10px;
        font-size: 0.9rem;
        flex: 45%;
        min-width: 400px;
        text-align: center;
    }

    .our-top-package .details-box h2 {
        font-size: 1rem;
        font-weight: 700;
        color: #009cde;
        margin: 5px 0;
    }

    .our-top-package .booking-box {
        padding: 0 15px 10px;
        font-size: 0.9rem;
        flex: 15%;
        min-width: 150px;
        text-align: center;
        background: #d6f7ff;
        margin: 0;
    }

    .our-top-package .booking-box button {
        background: #009cde;
        color: #fff;
        padding: 8px 12px;
        margin: 5px 0;
        border-radius: 5px;
    }

}


.contact {
    background: #fff;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.contact h2 {
    background: #015379;
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.contact table {
    width: 100%;
}

.contact table tr td {
    padding: 5px 5px;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom: 1px solid #c2eeff;
}

.contact table tr td i {
    background: #009cde;
    color: #fff;
    padding: 8px 10px;
    font-size: 1rem;
    width: 35px;
}

@media only screen and (max-width: 992px) {
    #map {
        max-height: 300px;
    }
}


.container .gallery a img {
    float: left;
    width: 25%;
    min-height: 250px;

    border: 2px solid #fff;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
    position: relative;
    cursor: pointer;
}

.container .gallery .clear {
    clear: both;
}

.container .gallery a {
    color: #009688;
    text-decoration: none;
}

.container .gallery a:hover {
    color: #01695f;
    text-decoration: none;
}

@media only screen and (max-width: 993px) {
    .container .gallery a img {
        float: left;
        width: 50%;
        min-height: 200px;
    }
}







/* slider by shivam----->> */


/*.key-features ul{*/
/*    list-style-type: disc;*/
/*}*/

@media (max-width:1100px) {

    #amazingslider-1 .amazingslider-img-box-1 {
        width: 100%;
        height: 23.4rem;
    }

    #amazingslider-1 .amazingslider-img-1 {
        width: 100%;
        height: 23.4rem;
    }

    #amazingslider-1 img {
        width: 100%;
        height: 23.4rem;
    }

    .enquiry-form table {
        font-size: 0.7rem;
    }

    .quick-enquiry-form {
        padding: 0px;
    }

    .quick-enquiry-form h2 {
        margin-top: 0.5rem;
        font-size: 1.4rem;
    }

    .enquiry-form table tr td {
        padding: 0px;
    }

    .travel_quote h1 {
        color: #fff;
        font-size: 1.3rem;
        font-weight: bold;
        letter-spacing: 3px;

    }

}



@media (min-width:1209px) and (max-width:1300px) {

    #amazingslider-1 .amazingslider-img-box-1 {
        width: 100%;
        height: 27.5rem;
    }

    #amazingslider-1 .amazingslider-img-1 {
        width: 100%;
        height: 27.5rem;
    }

    #amazingslider-1 img {
        width: 100%;
        height: 27.5rem;
    }

    .enquiry-form table {
        font-size: 1.1rem;
    }

    .quick-enquiry-form {
        padding: 0px;
    }

    .quick-enquiry-form h2 {
        margin-top: 0.7rem;
        font-size: 2.2rem;
    }

    .enquiry-form table tr td {
        padding: 3px;
    }

    .travel_quote h1 {
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 3px;

    }

}


@media (min-width:1101px) and (max-width:1208px) {

    #amazingslider-1 .amazingslider-img-box-1 {
        width: 100%;
        height: 28.3rem;
    }

    #amazingslider-1 .amazingslider-img-1 {
        width: 100%;
        height: 28.3rem;
    }

    #amazingslider-1 img {
        width: 100%;
        height: 28.3rem;
    }

    .enquiry-form table {
        font-size: 1.1rem;
    }

    .quick-enquiry-form {
        padding: 0px;
    }

    .quick-enquiry-form h2 {
        margin-top: 0.7rem;
        font-size: 1.7rem;
    }

    .enquiry-form table tr td {
        padding: 2px;
    }

    .travel_quote h1 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 3px;

    }

}

@media (min-width:778px) and (max-width:992px) {
    .travel_quote h1 {
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        letter-spacing: 3px;

    }
}

@media (min-width:578px) and (max-width:777px) {
    .travel_quote h1 {
        color: #fff;
        font-size: 0.7rem;
        font-weight: bold;
        letter-spacing: 3px;

    }
}

@media (max-width:667px) {
    #top_bar {
        font-size: 0.6rem;
    }


    .travel_quote {
        padding: 45px 7px;
        margin: 20px 0;
    }

    .travel_quote h1 {
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .travel-breadcrumb>.inner-content {
        font-size: 1.6rem;
        font-weight: bold;
        color: #dc5226;
        text-shadow: 3px 5px 10px rgba(0, 0, 0, 0.7);
        letter-spacing: 2px;
        position: absolute;
        top: 32%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Poppins', sans-serif;
        width: 100%;
        animation: fadeIn 2s ease-in-out;
        white-space: nowrap;
        /* background: rgba(0, 0, 0, 0.57); */
        padding: 80px 10px;
        text-align: center;
    }

    .travel-breadcrumb {
        height: 13rem;
    }

    #top-destination-char-dham {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
        grid-gap: 15px;
        margin: 20px 0;
    }

    .enquiry-form table {
        font-size: 1rem;
    }

    .quick-enquiry-form2 h2 {
        font-size: 2rem;
    }

    .enquiry-form>.enquiry-header {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .enquiry-form table tr td {
        padding: 6px;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
        line-height: 1.8;
    }

    footer ul {
        padding: 15px 15px;
    }

    footer {
        padding: 40px 10px 2px 10px;
    }

    footer h3 {
        font-size: 2.1rem;
    }

    #amazingslider-1 .amazingslider-img-box-1 {
        width: 100%;
        height: 10.8rem;
    }
}



.singlepost__container {
    padding: 1rem 2rem 3rem;
    border-radius: var(--card-border-radius-3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.singlepost__thumbnail {
    margin: 1.5rem 0 1rem;
}

.singlepost__thumbnail img {
    border-radius: var(--card-border-radius-3);
}

.singlepost__container p {
    margin-top: 1rem;
    line-height: 1.7rem;
}

.singlepost .post__title {
    font-size: 30px;
}

.single-post-container {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}


.btn {
    display: inline-block;
    width: fit-content;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-primary);
    border-radius: var(--card-border-radius-2);
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-white);
}