body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400; 
}
html {
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
}
p{
    margin: 0;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.902);
    line-height: 27px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
.animate{
	will-change: transform, opacity;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
textarea::placeholder,input::placeholder{
   color: #9e9e9e;
   font-size: 16px;
   line-height: 27px;
}
.w-50{
    width: 50%;
}
.w-100{
    width: 100%;
}
h2{
    font-size: 24px;
    line-height: 35px;
    color: rgba(51, 51, 51, 0.902);
    margin: 0;
}
h3{
    font-size: 36px;
    line-height: 44px;
    color: #262C30;
    margin: 0;
}
.m-r-0{
    margin-right: 0 !important;
}
.btn{
    background: transparent linear-gradient(97deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;

}
select:focus,textarea:focus,input:focus{
    outline: none;
}
textarea{
    resize: none;
}
/* form default css */

.container{
    max-width: 1200px;
    width: 100%;
   /* padding: 0 15px;*/
    margin: 0 auto;
}
.show{
    display: flex!important;
}
/* header section */
.header-with-banner.home-page {
    background-size: cover;
    background-position: center top;
    /* min-height: 730px; */
    /* height:100vh; */
    height:calc(80vh - 0px);
    position: relative;
    overflow: hidden;
   /* display: flex;*/
    flex-direction: column;
    align-items: flex-end;
}
.header-banner-img {
    height: 80vh;
    position: absolute;
    width: 100%;
    top: 0;
}
.header-banner-img .img-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.img-slide:after {
    content: '';
    background-image: url('../images/banner-right.png');
    position: absolute;
    height: 100%;
    max-width: 810px;
    width: 35%;
    right: 0;
    top: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .65;
}
.header-with-banner .container{
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.header{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    padding: 0 55px;
    width: 100%;
}
.header.sticky-header {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background-color: #fff;
    align-items: center;
    height: 80px;
    z-index: 999;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header.sticky-header .header-top {
    display: none;
}
.header.sticky-header .header-left,.header.sticky-header nav {
    margin-top: 0;
}
.header.sticky-header .header-left .logo {
    max-height: 40px;
}
.header.sticky-header .header-right nav a {
    color: #F0394B;
}
.header.sticky-header .header-right nav a.contact-btn {
    background: transparent linear-gradient(104deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    color: #fff;
}
.header-left {
    display: flex;
    margin-top: 30px;
}
.logo{
    max-height: 59px;
    height: 100%;
}
.header-right {
    display: flex;
    /* margin-right: 30px; */
    align-items: center;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}
.header-top{
    padding-top: 30px;
    display: flex;
    align-items: center;
}
.header-top a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.header-top a.contact-no {
    font-weight: 400;
    position: relative;
    padding-right: 18px;
    margin-right: 23px;
}
.header-top a.contact-no:after{
    content: '';
    height: 20px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
}

.header-right nav a {
    font-size: 15px;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 1.4px;
    display: flex;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.select-box{
    position: relative;
    display: flex;
    align-items: center;
}
.select-box:after{
    position: absolute;
    content: '';
    border-top: solid 6px #FFB733;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    right: 0;
}
.select-box select {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    padding-right: 15px ;
    font-weight: 500;
    letter-spacing: 1.4px;
    display: flex;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.select-box select option{
    color: #ED2151;
}
.header nav{
    display: flex;
    margin-top: 27px;
    align-items: center;
}
.header-right nav ul{
    display: flex;
    align-items: center;
}
.header-right nav ul li{
    margin-left: 21px;
    position: relative;
}
header nav ul li.active a{
    color: #94D3C1;
}

.header-right nav a.contact-btn {
    margin-left: 24px;
    color: #ED2151;
    width: 140px;
    height: 48px;
    background: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
}
.banner-contain {
    display: flex;
    margin-top: 150px;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    max-width: 575px;
    margin-right: 75px;
}
.banner-detail{
    display: flex;
    flex-direction: column;
    position: absolute;
    right:0;
    /* max-width: 575px;
    margin-right: 75px; */
}
.banner-detail h2 {
    font-size: 30px !important;
    line-height: 50px;
    color: #fff;
    text-align: right !important;
    width: 376px !important;
    margin-top: 74px !important;
}
.banner-detail p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 31px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    display: flex;
    text-transform: capitalize;
}
a.banner-btn{
    width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ED2151;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Karla', sans-serif;
}
.banner-detail .temp{
    display: flex;
    align-items: center;
}
.banner-detail .temp svg{
    margin: 0 8px;
}
.banner-detail .live{
    display: flex;
    align-items: flex-start;
    margin-left: 8px;
}
.banner-detail .live svg{
    margin: 5px -4px;
}
.banner-detail .timing {
    position: absolute;
    top: -126px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.banner-detail .timing p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.banner-detail .timing p.phone {
    font-weight: 400;
    /* position: absolute; */
    top: -22px;
    right: 0px;
    padding-right: 16px;
    margin-right: 16px;
}
/* .banner-detail .timing p.phone:after{
    content: '';
    height: 20px;
    width: 2px;
    background-color: #fff;
    position: relative;
    right: -15px;
} */
.banner-detail .timing .time:before {
    content: '';
    height: 20px;
    width: 2px;
    background-color: #fff;
    position: relative;
    left: -15px;
}
/* book now filter */
.book-now-main {
    margin-top: 50px;
}
.book-now-main .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.book-now-main .filter-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 32px;
}
.book-now-main .filter-box.grey-out {
    pointer-events: none;
    opacity: 0.34;
}

.book-now-main .filter-box:after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #9A9A9A;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    right: 20px;
    top: 25px;
}
.book-now-main .filter-box.calender:after{
    border: none;
    transform: none;
    width: 24px;
    height: 24px;
    background-image: url(../images/calendar.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.single-date input,.book-now-main select {
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    background-color: transparent;
    height: 70px;
    width: 268px;
    font-size: 16px;
    line-height: 19px;
    color: #9A9A9A;
    font-weight: 700;
    padding: 0 50px 0 16px;
    -webkit-appearance: none;
    z-index: 1;
    cursor: pointer;
}
.single-date input::placeholder {
    color: #9A9A9A;
}
.book-now {
    width: 268px;
    height: 70px;
    background: transparent linear-gradient(151deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 19px;
    font-weight: 700;
    border: transparent;
    cursor: pointer;
}
.book-now:hover {
    opacity: .8;
}
.about-story{
    margin-top: 35px;
}
.about-story .container {
    display: flex;
    justify-content: space-between;
}
.about-story-left {
    max-width: 620px;
    width: 100%;
    margin-right: 30px;
}
.about-story-right div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.about-story-right img{
    width: 100%;
}
.about-story-right div:last-child{
    margin-bottom: 0;
}
.about-story-right div h2 {
    text-align: right;
    max-width: 200px;
    width: 100%;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 0;
    margin-right: 50px;
}
.about-story-right div p{
    font-size: 16px;
    color: #262C30;
    line-height: 20px;
    white-space: nowrap;
    font-weight: 500;
}
.about-story-left h3 {
    font-size: 36px;
    line-height: 48px;
    text-transform: capitalize;
    color: #262C30;
    margin: 0 0 12px;
    font-weight: 700;
}
.about-story-left p{
    font-size: 16px;
    line-height: 26px;
    color: #262C30;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
}
a.view-more{
    width: 190px;
    height: 50px;
    background: transparent linear-gradient(151deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.4px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
}
.ropeway-div img{
    width: 100%;
}
/* did you know */
.do-you-know {
    margin-top: 170px;
}
.do-you-know-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.do-you-know-top p{
    font-size: 16px;
    color: #262C30;
    line-height: 24px;
    letter-spacing: 3.2px;
    font-weight: 700;
}
.do-you-know-top .btn{
    /* width: 270px; */
    width: auto;
    height: 60px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.56px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Karla', sans-serif;
    padding: 0 10px;

}
.do-you-know-video {
    padding: 8px;
    margin-top: 60px;
    position: relative;
    box-shadow: 0px 0px 109px #936E7730;
}
.do-you-know-video img{
    width: 100%;
}
.video-container {
    display: flex;
}
.video-container > div {
    flex: 1;
}
.video-container > div:first-child {
    margin-right: 16px;
}
.do-you-know-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    right: 0;
    margin: 0 auto;
    max-width: 80px;
}
/* destination  */
.our-destination-top {
    background: transparent linear-gradient(111deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    margin-top: 70px;
    padding: 70px 0;
}
.our-destination-top {
    background: transparent linear-gradient(111deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    margin-top: 70px;
    padding: 70px 0;
}
.our-destination-top h3 {
    color: #fff;
}
.our-destination-top p {
    color: #fff;
    margin-bottom: 18px;
    line-height: 19px;
    letter-spacing: 1.6px;
}
.our-destination-row .container {
    display: flex;
    flex-wrap: wrap;
}
.our-destination-row {
    margin-top: 50px;
}
.destination-box {
    width: calc(25% - 32px);
    position: relative;
    margin: 0 16px;
    margin-bottom: 32px;
}
.destination-detail {
    padding: 0 8px;
}
.destination-box .place-name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: #262C30;
}
.destination-box .place-area {
    font-size: 14px;
    line-height: 18px;
    color: #262C30;
    margin-bottom: 16px;
}
.bottom-design {
    height: 8px;
    background: transparent linear-gradient(180deg, #FFC65F 0%, #F7B218 100%) 0% 0%;
}
.view-service {
    padding: 12px 0;
    display: flex;
    justify-content: flex-end;
}
.view-service a {
    font-size: 11px;
    color: #262C30;
    font-weight: 700;
    letter-spacing: -0.55px;
    font-family: 'Karla', sans-serif;
}
.view-service a svg {
    margin-left: 18px;
}
/* news & update */
.news-detail-main{
    margin-top: 190px;
}
.news-update {
    margin-top: 210px;
}
.news-update-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.news-update-top p{
    font-size: 16px;
    color: #F6663F;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}
.news-update-top h3{
    color: #000;
}
.news-update-top .btn{
    width: 170px;
    height: 60px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.56px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Karla', sans-serif;
}
.news-update-row {
    display: flex;
    margin-top: 45px;
    flex-wrap: wrap;
}
.news-update-col {
    margin-right: 30px;
    width: calc(33.33% - 20px);
}
.news-detail {
    padding: 16px 24px;
    border: 1px solid #EBEBEB;
}
.news-update-col:hover {
    box-shadow: 0px 10px 22px #71839242;
}
.news-update-col:nth-child(3n) {
    margin-right: 0;
}
.news-update-col img{
    width: 100%;
    display: flex;
}
.news-date {
    font-size: 24px;
    line-height: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #262C30;
}
.news-date sup {
    font-size: 18px;
    letter-spacing: 1px;
}
.news-date sup {
    font-size: 18px;
    letter-spacing: 1px;
}
.news-year {
    letter-spacing: 0.8px;
    color: #262C30;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 24px;
}
.destination-area {
    font-size: 16px;
    line-height: 18px;
    color: #262C30;
    margin-bottom: 16px;
}
.destination-area span {
    font-weight: 700;
}
.destination-detail img {
    width: 100%;
}
.news-content p {
    font-size: 16px;
    line-height: 28px;
    color: #262C30;
    font-family: 'Poppins', sans-serif;
}
.news-content p a {
    color: #262C30;
    font-weight: 700;
}

/* gallery */

.recent-gallery {
    margin-top: 145px;
}
.recent-gallery .container{
    position: relative;
}
.gallery-title-content p {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 3.2px;
    color: #F6663F;
    margin-bottom: 18px;
    font-weight: 700;
}
.gallery-title-content h3 {
    color: #000;
    letter-spacing: 0;
    margin-bottom: 26px;
    max-width: 500px;
}
.gallery-images {
    display: flex;
    flex-wrap: wrap;
}

.gallery-img {
    margin-bottom: 30px;
    width: 100%;
    height:300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.gallery-img p{ 
    font-size: 24px;
    color: #ccc;
    font-weight: bold;
    padding: 16px;
    z-index: 1;
}
.gallery-img:before {
    bottom: 0;
    z-index: 0;
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.gallery-img img{
    width: 100%;
}
.recent-gallery .column {
    max-width: 50%;
    width: 100%;
    padding: 0 15px;
}
.gallery-title-content {
    position: absolute;
    width: 50%;
    /* margin: 0 auto; */
    /* padding: 0 25px 0 90px; */
}

.gallery-slider .sliding-part{
    /* display: flex;
    flex-wrap: wrap;
    width: 100%; */
    column-count: 2;
    column-gap: 30px;
    padding-top:45px;
}

.gallery-slider .column:first-child {
    padding-top: 190px;
    padding-bottom: 120px;
}
.gallery-slider {
    width: 100%;
}
.gallery-list{
    display: grid;
    grid-template-columns: repeat(3,33.33%);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 30px;
}
.gallery-list .gallery-img{
    margin-bottom: 0px;
}
.recent-gallery .tns-outer [data-controls="prev"],.recent-gallery .tns-outer [data-controls="next"] {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    text-indent: -9999px;
    position: relative;
    background: transparent linear-gradient(180deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    
    z-index: 1;
    left: 0px;
}
.recent-gallery .tns-outer [data-controls="prev"]:before,.recent-gallery .tns-outer [data-controls="next"]:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 19px;
    transform: rotate(-45deg);
    top: 18px;
}
.recent-gallery .tns-outer [data-controls="next"]:before {
    left: 14px;
    transform: rotate(135deg);
}
.recent-gallery .tns-outer {
    position: relative;
    width: 100%;
}
.recent-gallery .tns-outer [data-controls="next"] {
   
    left: 30px;
}
.recent-gallery .tns-outer [disabled] {
    background: #DCDCDC;

}
.recent-gallery .tns-controls {
    position: absolute;
    bottom:-40px;
    z-index: 1;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}
/* longest ropeway */

.longest-ropeway{
    background-image: url(../images/longest-ropeway.png);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
    padding: 84px 0;
}
.longest-ropeway:after{
    content: '';
    opacity: 0.9;
    background: transparent linear-gradient(121deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.longest-ropeway .container {
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
}
.longest-ropeway h3{
    color: #fff;
    font-size: 40px;
    line-height: 65px;
    letter-spacing: 1.6px;
    font-weight: 900;
    margin-bottom: 12px;
}
.longest-ropeway p{
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
}
.longest-ropeway a{
    /* width: 248px; */
    padding: 0 16px;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 35px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #ED2151;
    text-transform: uppercase;
}
/* testimonial */

.testimonial-main {
    padding: 100px 0;
}
.testimonial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.test-quate {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: rgba(38, 44, 48, 0.8);
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}
.user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d1d1d1;
    margin-bottom: 32px;
    background-position: center;
    background-size: cover;

}
.user-img img {
    border-radius: 50%;
    width: 100%;
}
.user-name {
    letter-spacing: 1.6px;
    color: rgba(38, 44, 48, 0.8);;
    text-transform: capitalize;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}
.visited-place {
    font-size: 24px;
    line-height: 28px;
    color: rgba(38, 44, 48, 0.8);
    font-weight: 600;
}
/* testimonial-arrow */
.testimonial-main .tns-outer [data-controls="prev"],.testimonial-main .tns-outer [data-controls="next"] {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    text-indent: -9999px;
    position: relative;
    background: transparent linear-gradient(180deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    /* display: flex; */
    left: 0px;
}
.testimonial-main .tns-outer [data-controls="prev"]:before,.testimonial-main .tns-outer [data-controls="next"]:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 19px;
    transform: rotate(-45deg);
    top: 18px;
}
.testimonial-main .tns-outer [data-controls="next"]:before {
    left: 14px;
    transform: rotate(135deg);
}
.testimonial-main .tns-outer {
    position: relative;
}
.testimonial-main .tns-outer [data-controls="next"] {
    right: 0px;
    left: initial;
}
.testimonial-main .tns-outer [disabled] {
    background: #DCDCDC;
}
/* end arrow design */
/* footer */
footer{
    box-shadow: 0px -1px 20px #00000029;
}
.footer-col-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title:after{
    content:'';
    width: 48px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: transparent linear-gradient(180deg, #F6663F 0%, #ED2151 100%) 0% 0% ;
}
footer .container {
    display: flex;
    justify-content: space-between;
}
footer .footer-first-row{
    padding: 120px 15px 78px;
}
ul.footer-destination-name{
    display: flex;
}
.footer-col ul li a{
    font-size: 13px;
    line-height: 29px;
    color: #959EA6;
    font-weight: 500;
}
ul.footer-destination-name div:first-child {
    margin-right: 85px;
}
.copyright {
    border-top: 1px solid rgba(38, 44, 48,0.2);
    padding: 32px 0;
}
.copyright p,.copyright a{
    font-size: 12px;
    color: #959EA6;
    letter-spacing: 0;
}
.copyright a{
    margin-left: 30px;
}
.social-icons{
    display: flex;
    margin-bottom: 24px;
}
.social-icons a{
    margin-right: 16px;
}

/* about jatayupura page inner page*/

.main-detail-of-place {
    margin-top: 190px;
}
.inner-header .container{
    max-width: 1490px;
    padding: 0 15px;
    margin: 0 auto;
}
.inner-header{
    background-color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2;
    position: -webkit-sticky;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.inner-header .header{
    align-items: center;
    position: initial;
    box-shadow: none;
}
.inner-header .header-left{
    margin: 0;
}
.inner-header .header-left .logo {
    max-height: 40px;
}
.inner-header .header nav{
    margin-top: 0;
}
.inner-header .header-right nav a{
    color: #F0394B;
    padding: 20px 0;

}
.inner-header .select-box select{
    color: #262C30;
    letter-spacing: 0;
}
.inner-header .select-box:after{
    border-top: solid 6px #262C30;
}
.inner-header .header-right nav a.contact-btn{
    background: transparent linear-gradient(104deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    color: #fff;
    padding: 0;
}
.header-right nav ul.submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    background: #fff;
    min-width: 170px;
    z-index:99999;
}
.header-right nav ul.submenu li {
    margin-left: 0;
    width: 100%;
    border-top: 1px solid rgba(112, 112, 112, 0.5);
}
.header-right nav ul.submenu li a {
    font-size: 14px;
    color: #161616;
    line-height: 21px;
    text-transform: uppercase;
    padding: 8px 10px 8px 12px;
}
.header-right nav ul.submenu li:first-child {
    border-top: 0;
}
.header-right nav li:hover .submenu {
    display: flex;
}
.header-right nav li .submenu a:hover{
    color: #F0394B;
}
.home-page .header-right nav ul.submenu{
   /*  top: 0; */
   top: 30px;
}
.inner-banner{
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.subpage-banner{
    max-height: 600px;
    height:26vh;
}
.inner-banner-content{
    background-image: url(../images/banner-content-back.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 520px;
    display: flex;
    height: 172px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.inner-banner-content h2 {
    font-size: 42px;
    color: #fff;
    line-height: 50px;
    margin-bottom: 16px;
}
.inner-banner-content p {
    font-size: 16px;
    color: #fff;
    line-height: 18px;
}
.timing-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.timing-detail p {
    font-size: 16px;
    line-height: 19px;
    color: #F6663F;
    font-weight: 500;
}
.detail-of-tab.hide{
    display: none;
}
/* inner page filter */
.place-detail-filter{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.place-detail-filter a{
    width: 200px;
    height: 50px;
    border: 1px solid #F0394B;
    background: #fff;
    border-radius: 40px;
    margin-right: 24px;
    padding-left: 14px;
    color: #262C30;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.place-detail-filter a.show{
    background: #F0394B;
    color: #fff;
} 
/* about jatayupura */
.about-place{
    margin-bottom: 50px;
}
.statue-detail h3 {
    color: #000;
    margin-bottom: 50px;
}
.how-to-reach {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid  rgba(0, 0, 10, 0.3);
    margin: 24px 0;
}
.how-to-reach h4 {
    font-size: 28px;
    line-height: 40px;
    color: #000000;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.how-to-reach a {
    display: flex;
    font-size: 18px;
    align-items: center;
    line-height: 12px;
    font-weight: 700;
    color: #000;
}
.how-to-reach a span {
    margin-right: 12px;
}
.near-destination {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 70px;
}
.near-destination p{
    width: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.near-destination p span{
    font-weight: 400;
    color: #262C30;
}
.near-destination p svg{
    margin-left: 12px;
    margin-right: 4px;
}
.destination-detail-with-img{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.destination-detail-left{
    max-width:  528px;
    margin-right: 32px;
}
.destination-image {
    display: flex;
    background: #E1E4ED;
    border-radius: 237px 237px 237px 80px;
    max-width: 534px;
    margin-right: 10px;
   /* -webkit-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);*/
}
.destination-image img{
   /* border-radius: 237px 237px 237px 80px;*/
    width: 100%;
    margin-top: 15px;
}
.destination-detail-left ul li {
   /*  list-style: disc; */
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 10, 0.6);
}
.destination-detail-left ul{
    padding-left: 15px;
}
/* attraction */

.attraction{
    margin-bottom: 50px;
}
.attraction-place-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.attraction-image{
    display: flex;
    background: #E1E4ED;
    border-radius: 237px 237px 237px 80px;
    max-width: 534px;
    margin-right: 20px;
    -webkit-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
}
.attraction-image img {
    border-radius: 237px 237px 237px 80px;
    width: 100%;
}
.attraction-detail-left {
    max-width: 548px;
    width: 100%;
}
.attraction-place-row p {
    font-size: 16px;
    line-height: 28px;
    color: #716C80;
}
.kilometers span {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-left: 12px;
    font-family: 'Poppins', sans-serif;
}
.attraction-place-row  .kilometers{
    margin-bottom: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
}
.attraction-place-row h3 {
    font-size: 28px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}
.attraction-place-row:nth-child(2n) .attraction-detail-left{
    order: 1;
}

/* must do whene here */
.must-do{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.must-do-box {
    border-radius: 8px;
    width: calc(50% - 16px);
    margin-right: 32px;
    display: flex;
    margin-bottom: 32px;
}
.must-do-box:nth-child(2n){
    margin-right: 0;
}
.must-do-detail {
    padding: 32px 24px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 8px 8px 0px;
}
.must-do-box img {
    width: 100%;
    border-radius: 8px 0 0 8px;
}
.must-do-detail h4{
    font-size: 28px;
    line-height: 35px;
    color: #000;
    margin: 0 0 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.must-do-detail p{
    font-size: 16px;
    line-height: 28px;
    color: #716C80;
}
/* gallery slider */

.recent-gallery.inner-gallery{
    margin-top: 0;
    margin-bottom: 70px;
}
/* activities at ropeway*/

.activities{
    margin-bottom: 50px;
}
.activities-place-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.activities-image{
    display: flex;
    background: #E1E4ED;
    border-radius: 237px 237px 237px 80px;
    max-width: 534px;
    margin-right: 20px;
    -webkit-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
}
.activities-image img {
    border-radius: 237px 237px 237px 80px;
    width: 100%;
}
.activities-detail-left {
    max-width: 548px;
    width: 100%;
}
.activities-place-row p {
    font-size: 16px;
    line-height: 28px;
    color: #716C80;
}
.activities-place-row h3 {
    font-size: 28px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}
.activities-place-row:nth-child(2n) .activities-detail-left{
    order: 1;
}
/* news & update page */
.inner-news-update {
    margin-top: 190px;
}
.inner-news-update .news-update-col{
    margin-bottom: 32px;
}
.news-update.inner-news-update{
    margin-bottom: 40px;
}

/* news-detail-page */

.news-detail-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.news-detail-top-right {
    display: flex;
    align-items: center;
}
.news-detail-top-right a{
    margin-left: 20px;
}
.news-detail-date {
    font-size: 16px;
    line-height: 19px;
    color: #F6663F;
    font-weight: 500;
}
.news-detail-top-left h3 {
    color: #000;
    line-height: 36px;
    margin: 20px 0;
}
.news-detail-top-left h4 {
    font-size: 24px;
    margin: 0;
    color: #000;
    line-height: 24px;
}
.news-detail-top-right p {
    font-size: 16px;
    color: rgba(0, 0, 10, 0.6);
}
.news-detail-with-img {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}
.news-blog-detail-left {
    max-width: 554px;
    margin-right: 32px;
}
.news-image{
    display: flex;
    background: #E1E4ED;
    /* border-radius: 237px 237px 237px 80px; */
    max-width: 534px;
    margin-right: 10px;
   /*  -webkit-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    -moz-box-shadow: 10px 10px 0px 0px rgba(225,228,237,1);
    box-shadow: 10px 10px 0px 0px rgba(225,228,237,1); */
}
.news-image img{
    /* border-radius: 237px 237px 237px 80px; */
    width: 100%;
}
.news-blog-detail-left h5 {
    font-size: 16px;
    color: #262C30;
    margin: 0 0 16px;
}
.news-blog-detail-left p {
    color: #00000A99;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 14px;
}
.full-blog-detail{
    display: flex;
}
.full-blog-detail p {
    margin-bottom: 0;
    line-height: 18px;
}
.full-blog-detail a {
    font-size: 16px;
    font-weight: 700;
    margin-left: 5px;
    color: #EE284F;
    line-height: 18px;
}
/* testimonial page */
.tesimonial-detail-main {
    margin-bottom: 50px;
    margin-top: 190px;
}
.testimonial-top{
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
    margin-bottom: 32px;
}
.customer-feedback {
    width: 268px;
    height: 70px;
    background: transparent linear-gradient(106deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 8px;
    display: flex;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
}
.customer-feedback:before{
    content: '';
    max-width: 425px;
    width: 100%;
    height: 1px;
    background-color: #707070;
    left: 0px;
    position: absolute;
    z-index: -1;
}
.customer-feedback:after{
    content: '';
    max-width: 425px;
    width: 100%;
    height: 1px;
    background-color: #707070;
    right: 0px;
    position: absolute;
    z-index: -1;
}
.testimonial-detail-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}
.sort-by-filter {
    display: flex;
    flex-direction: column;
    border: 1px solid;
    width: 286px;
    height: 70px;
    border: 1px solid #C3C3C3;
    border-radius: 8px;
    padding: 16px;
}
.sort-by-filter label {
    font-size: 12px;
    line-height: 14px;
    color: #9A9A9A;
    padding-left: 5px;
}
.sort-by-filter select {
    font-size: 16px;
    line-height: 19px;
    color: #9A9A9A;
    font-weight: 700;
    background: transparent;
    border: none;
}
.testimonial-detail-filter p {
    color: rgba(38, 44, 48, 0.8);
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}
.user-image-test {
    width: 56px;
    height: 56px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-right: 12px;
}
.testimonial-content-left {
    display: flex;
    align-items: center;
    max-width: 290px;
    width: 100%;
    margin-right: 110px;
}
.testimonial-content-left .name-of-person {
    letter-spacing: 1.2px;
    color: #262C30;
    text-transform: capitalize;
    opacity: 0.8;
    font-size: 24px;
    font-weight: 700;
}
.testimonial-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.testimonial-content-right {
    flex: 1;
}
.testimonial-content-right p {
    font-size: 20px;
    line-height: 30px;
    color: rgba(38, 44, 48,0.8);
    font-family: 'Poppins', sans-serif;
}
.testimonial-content-right .test-visited-place {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 10px;
    font-family: 'Work Sans', sans-serif;
}
/* ticket booking */

.ticket-booking-main {
   /* margin: 50px 0 70px;*/
  
}
.booking-next-level,.advance-booking-form {
    /* padding: 0 22px; */
    background-color: #fff;
}
.form-row .select-design {
    width: 100%;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    padding: 16px;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    position: relative;
}
.form-row1{
    
    padding: 16px;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    position: relative;
}
.form-row label{
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #9A9A9A;
}

.input-design--full {
    max-width: 100%;
    
}
.input-design input, .input-design div.value {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
}
.input-design input::placeholder{
    font-size: 24px;
    font-weight: 700;
    color: #9e9e9e;
    line-height: 75px;
}
.form-row .select-design select{
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    border: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 25px;
    cursor: pointer;
    white-space: normal;
}
.form-row > div {
    /* flex: 1; */
    flex: 0 0 calc(50% - 15px);
    /* flex: 0 0 calc(33.33% - 30px); */
    display: flex;
    max-width: 50%;;
}
.form-row {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}
.form-row .select-design:first-child {
    margin-right: 30px;
}
.form-row .select-design:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border: 2px solid #9A9A9A;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    right: 16px;
}
.select-design.calender:after {
    border: none;
    transform: none;
    width: 24px;
    height: 24px;
    background-image: url(../images/calendar.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.total-book {
    display: flex;
    justify-content:initial;
    align-items: center;
    margin-top: 45px;
}
.total-book .btn {
    width: 268px;
    height: 70px;
    background: transparent linear-gradient(151deg, #F6663F 0%, #ED2151 100%) 0% 0% no-repeat padding-box;
    border-radius: 35px;
    color: #fff;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
}
.total-book p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
    color: #9A9A9A;
    line-height: 16px;
}
.total-book p span {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: 700;
    margin-top: 4px;
}
.select-design.input-design:after {
    display: none;
}
.advertise-with-main .form-box.textarea-design{
    max-width: 100%;
    width: 100%;
    margin-right: 0 !important;
}
.advertise-with-main .advertise-detail {
    padding: 0 40px;
    /* background: #fff; */
}

.textarea-design textarea {
    width: 100%;
    min-height: 145px;
    border: none;
    font-size: 20px;
    line-height: 28px;
    color: #1A1A1A;
    font-weight: 700;
}
.advertise-with-main {
    margin: 50px 0 145px;
}
.advertise-with-main p{
    font-size: 20px;
    line-height: 21px;
    color: #1A1A1A;
    margin-bottom: 32px;
}
.advertise-with-main .form-row .form-box:first-child{
    margin-right: 30px;
}
.advertise-with-main .form-row .select-design:first-child{
    margin-right: 0;
    background: #fff;
}
.increment-decrement-value span {
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E3E3E3;
    display: flex;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}
.increment-decrement-value {
    display: flex;
    margin-top: 5px;
}
.increment-decrement-value input::placeholder{
    font-size: 24px;
    font-weight: 700;
}
.increment-decrement-value input {
    border: none;
    width: 70px;
    min-width: 30px;
    padding: 0 10px;
    text-align: center;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.price-total {
    display: flex;
    border-top: 1px solid #707070;
    /* margin-top: 12px; */
    padding-top: 20px;
    width: 100%;
    padding: 20px 8px;
    max-height: 90px !important;
    min-height: 90px !important;
}
.premium-box {
    flex-direction: column;
    border: 1px solid #d1d1d1;
    border-radius: 7px;
    margin-right: 30px;
    margin-bottom: 10px;
    position: relative;
}
.box-header {
    background: transparent linear-gradient(151deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    width: 100%;
    padding: 20px 8px 10px;
    border-radius: 8px 8px 0 0;
    max-height: 95px !important;
}
.premium-box:last-child{
    margin-right: 0;;
}
.premium-box p span {
    display: block;
    font-size: 16px;
    width: 100%;
}
.premium-box p {
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}
.form-row .total-amount {
    display: flex;
    flex-direction: column;
    flex: initial;
    margin-right: 90px;
}
.form-row .total-value {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 4px;
}
.form-row .total-value span{
    font-size: 14px;
    font-weight: 400;
    color: #F0394B;
}
/* booking popup */
#ticket-detail .booking-detail-row-detail {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
#ticket-detail .booking-detail-row-detail {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
#ticket-detail .booking-detail-second-row {
    display: flex;
}
#ticket-detail h3 {
    font-size: 24px;
    text-align: center;
    line-height: 25px;
    margin-bottom: 16px;
}
#ticket-detail label{
    font-size: 14px;
    line-height: 16px;
    color: #9A9A9A;
    margin-bottom: 8px;
    display: flex;
}
#ticket-detail .label-detail {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: 700;
}
#ticket-detail .label-detail span {
    color: #F0394B;
    font-size: 14px;
    font-weight: 400;
    padding-left: 5px;
}
.booking-detail-total-rate {
    padding-top: 16px;
}
.label-detail-main-payable .label-detail {
    margin-bottom: 0;
}
/* contact page */

.contact-box {
    border: 1px solid #979797;
    border-radius: 0px 0px 3px 3px;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    width: calc(33.33% - 20px);
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px
}
.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: center;
    margin-bottom: 70px;
   /*  background-color: #fff; */
    margin-top: 50px;
}
.contact-box:nth-child(3n){
    margin-right: 0;
}
.contact-box p {
    font-size: 14px;
    line-height: 21px;
    color: #262C30;
}
.contact-box a {
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    color: #F24C45;
}
.contact-box .box-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #262C30;
    margin-bottom: 6px;
}
.contact-box img {
    height: 35px;
}
.get-in-touch {
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
    margin-bottom: 32px;
}
.get-in{
    width: 268px;
    height: 70px;
    background: transparent linear-gradient(106deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 8px;
    display: flex;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
}
.get-in:before{
    content: '';
    max-width: 425px;
    width: 100%;
    height: 1px;
    background-color: #707070;
    left: 0px;
    position: absolute;
    z-index: -1;
}
.get-in:after{
    content: '';
    max-width: 425px;
    width: 100%;
    height: 1px;
    background-color: #707070;
    right: 0px;
    position: absolute;
    z-index: -1;
}
.get-in-touch-main p {
    font-size: 20px;
    color: #1A1A1A;
    line-height: 29px;
    text-align: center;
    margin-bottom: 32px;
}
.get-in-touch-main .textarea-design {
    max-width: 100%;
}
.get-in-touch-main {
    margin-bottom: 70px;
}

/* career page */

.career-box {
    border: 1px solid #979797;
    border-radius: 0px 0px 3px 3px;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    width: calc(33.33% - 20px);
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
}
.career-blocks {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 70px;
    background: #fff;
}
.career-box:nth-child(3n){
    margin-right: 0;
}
.career-box p {
    font-size: 14px;
    line-height: 21px;
    color: #262C30;
}
.career-box a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #F24C45;
    margin-top: 12px;
}
.career-box .box-title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #262C30;
    margin-bottom: 6px;
}
/* popup design */
.modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
}
.modal-content{
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 40px 80px rgba(0, 0, 0, 0.102);
    border-radius: 5px;
    opacity: 1;
    padding: 15px 36px;
    width: 90%;
    position: relative;
}
.close-popup {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent linear-gradient(126deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}
.popup-main form{
    padding: 0;
}
.popup-main form .form-group{
    padding: 0;
}
.popup-main input {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #C3C3C3;
    border-radius: 4px;
    height: 48px;
    padding: 0 16px;
}
.popup-main .file-input {
    display: flex;
    border-radius: 2px;
    width: 148px;
    height: 40px;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #F0394B;
    border: 2px solid #F0394B;
    border-radius: 4px;
    cursor: pointer;
}
.popup-main .file-input [type="file"] {
    height: 0;
    overflow: hidden;
    width: 0;
    display: none;
}
.popup-main textarea{
    width: 100%;
}
.file-input label {
    font-size: 14px;
    color: #FFFFFF;
}
.popup-main p {
    font-size: 14px;
    line-height: 21px;
    color: #1A1A1A;
    margin-bottom: 16px;
}
.notimeslot .popup-main p{
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.popup-select {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #C3C3C3;
    border-radius: 4px;
    height: 48px;
    display: flex;
    position: relative;
    padding-right: 10px;
}
.popup-select select {
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    padding: 0 25px 0 13px;
    font-size: 14px;
    color: #9A9A9A;
}
.popup-main textarea{
    width: 100%;
    min-height: 96px;
    border: 1px solid #C3C3C3;
    border-radius: 4px;
    padding: 10px;
}
.popup-main textarea::placeholder,.popup-main input::placeholder{
    font-size: 14px;
    color: #9A9A9A;
}
.file-input-main {
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.file-input-main p{
    margin-bottom: 0;
    font-size: 14px;
    color: #00000066;
    margin-left: 14px;
}
.modal-content .btn {
    width: 148px;
    height: 40px;
    background: transparent linear-gradient(152deg, #F6663F 0%, #ED2151 100%) 0% 0% no-repeat padding-box;
    border-radius: 35px;
    color: #fff;
    letter-spacing: 0.7px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
}
.remove-btn {
    color: #FF4444;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    display: flex;
    margin-top: 10px;
}
/* login-registration-page */
.create-account-main {
    padding: 60px 0 70px;
}
.create-account-main.login{
    padding: 60px 0 100px;
}
.create-account-main .input-design {
    width: 100%;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    padding: 16px;
    flex-wrap: nowrap;
    position: relative;
    margin-top: 30px;
    background-color: #fff;
}
.create-account-main .btn{
    width: 268px;
    height: 70px;
    border-radius: 35px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
    margin-top: 30px;
    border: 1px solid transparent;
}
/* .create-account-main .container {
    background-color: #fff;
} */
.create-account-main .container form {
    flex: 1;
    padding: 0 15px;
    max-width: 560px;
    margin: 0 auto;
    /* background-color: #fff; */
}
.create-account-main .input-design label {
    color: #9a9a9a;
}
.create-account-main .container form h3 {
    color: #000;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
}
.create-account-main .input-design:first-child {
    margin-top: 0;
}
.register-success{
    font-size: 20px;
    line-height: 35px;
    color: #F6663F;
}
.error p {
    color: red;
    margin-top: 5px;
}
.thankyou-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
}
.thankyou-booking h3 {
    margin: 24px 0 8px;
    font-size: 32px;
    line-height: 38px;
    color: #1A1A1A;
}
.thankyou-booking p {
    font-size: 20px;
    line-height: 24px;
    color: #1a1a1a;
}
.thankyou-booking .btn {
    width: 268px;
    height: 70px;
    border-radius: 35px;
    margin-top: 48px;
    letter-spacing: 1.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}
/* my-account-detail */
.my-account-detail-main {
    margin: 50px 0 70px;
}
.account-seting-row {
    background: #fff;
    padding: 0 30px;
    margin-bottom: 50px;
}
.my-account-detail-main .total-book{
    justify-content: flex-start;
    /* margin-top: 10px; */
    margin-top: 30px

}
.my-account-detail-main .total-book .btn{
    width: 200px;
}
.my-account-detail-main .total-book .btn.cancle{
    background: #9A9A9A;
    margin-left: 30px;
}
.setting-row-top {
    height: 80px;
    background: #9a9a9a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    margin-bottom: 25px;
}
.collapse-icon {
    width: 15px;
    height: 15px;
    border: 4px solid #fff;
    transform: rotate(-45deg);
    border-top: 0;
    border-left: 0;
    cursor: pointer;
}
.setting-row-top h3 {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
}
.account-seting-row.show{
    display: block!important ;
}
.account-detail {
    display: none;
}
.account-seting-row.show .account-detail {
    display: block;
}
.account-seting-row.show .collapse-icon {
    transform: rotate(45deg);
}
.account-seting-row.show .setting-row-top{
    background-color: #F0394B;
}
/* booking-detail-page */
.booking-detail-row {
    background-color: #FFF;
    padding: 20px;
    border: 1px solid #C3C3C3;
    border-radius: 5px;
    margin-bottom: 40px;
}
.booking-detail-row-top {
    margin-bottom: 24px;
}
.booking-detail-main {
    margin: 50px 0 70px;
}
.booking-detail-row-detail {
    display: flex;
    justify-content: space-between;
}

.booking-detail-row .booking-detail-right img {
    width: 80px;
}
.booking-detail-row-bottom .booking-detail-row-detail {
    align-items: center;
}
.booking-detail-row.booking-detail-row-bottom {
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    border: none;
    position: relative;
    display: none;
}
.show-booking-detail .booking-detail-row.booking-detail-row-bottom {
    display: block;
}
.booking-detail-row-bottom .hide-ticket-det {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(149deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(50%);
}

.booking-detail-row-bottom .hide-ticket-det:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    border-radius: 0;
    top: 17px;
}
.booking-detail-row-bottom .booking-detail-right img {
    width: 120px;
}
.booking-detail-left {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}
.booking-detail-col-left {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    padding-top: 10px;
    min-width:100px
}
.booking-detail-col-left.ticket-type:first-child {
    flex: 1;
}
.booking-detail-col-left:last-child{
    margin-right: 0;
}
.label-detail-main.label-detail-two-box {
    display: flex;
}
.label-detail-main.label-detail-two-box div{
    margin-right: 40px;
}
.label-detail-main.label-detail-two-box div:last-child{
    margin-right: 0px;
}
.booking-detail-row label {
    font-size: 14px;
    line-height: 16px;
    color: #9A9A9A;
    margin-bottom: 8px;
    display: flex;
}
.booking-detail-row .label-detail {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: 700;
}
.label-detail-main{
    margin-bottom: 20px;
}
.booking-detail-col-left .label-detail-main:last-child {
    margin-bottom: 0;
}
.booking-detail-row .btn {
    width: 200px;
    height: 48px;
    background: transparent linear-gradient(149deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border-radius: 24px;
    letter-spacing: 0.6px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.booking-detail-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.booking-detail-row-detail.second-row {
    border-top: 1px solid rgba(112, 112, 112, 0.5);
    margin-top: 30px;
    padding-top: 30px;
}
p.no-booking {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    padding: 70px 0;
    color: #ed4c44;
}
.booking-detail-row .label-detail span {
    color: #F0394B;
    font-size: 14px;
    font-weight: 400;
    padding-left: 10px;
}
/* leap animation */

.lip-container {
    position: relative;
    max-width: 100vw;
    z-index: -1;
}
.lip-container.inner-leep{
    top: 170px;
}
.lip-container .line {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
}
.lip-container .line img {
    width: 100%;
}
.lip-container .leep-1 {
    position: absolute;
    /* left: -5vw; */
    top: 6.3vw;
    animation: leep-1 8s infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

.lip-container .leep-2 {
    position: absolute;
    /* right: -2vw; */
    top: .3vw;
    animation: leep-2 8s infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}
.lip-container.lip-pendulam .leep-1,.lip-container.lip-pendulam .leep-2 {
    animation: leep-pendulam 4s infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-direction: alternate;
}
.lip-container.lip-pendulam .leep-2 {
    right: -2vw;
}
.lip-container.lip-pendulam .leep-1 {
    top: 6vw;
    left: -4vw;
}
@keyframes leep-1 {
    from {top: 6.3vw;right:95.2vw}
    to {top: 0.2vw;right:-2vw}
}
@keyframes leep-2 {
    from {top: 0.2vw;right:-2vw}
    to {top: 6.3vw;right:95.2vw}
}
@keyframes leep-pendulam {
    from {transform: rotate(15deg);transform-origin: top center;}
    to {transform: rotate(-15deg);transform-origin: top center;}
}
/* custom checkbox */

.custom-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #9A9A9A;
    line-height: 21px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #C3C3C3;
    border-radius: 3px;
}
.custom-label:hover input ~ .checkmark {
    background-color: #ccc;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-label input:checked ~ .checkmark:after {
    display: block;
}
.custom-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #F0394B;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.no-cancle {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 19px;
    margin-bottom: 24px;
}
.detailsupdated{
    margin: 0px 40px;
    /* color: #72a72d !important; */
    font-size: 18px !important;
}

.form-box .input-with-errormsg:first-child {
    margin-right: 30px;
}
.input-with-errormsg {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.input-with-errormsg .select-design.input-design {
    margin: 30px 0 0 0;
}
/* .single-date{
    border-radius: 8px;
    border: 1px solid #C3C3C3;
    background-color: transparent;
    height: 70px;
    width: 268px;
    font-size: 16px;
    line-height: 19px;
    color: #9A9A9A;
    font-weight: 700;
    padding: 20px 40px 0 15px;
} */
.cnterr p{ 
    text-align:left !important; 
    margin-bottom:0px !important;
    font-size:14px;
}
.advertise-form .contactmsg{
    text-align: left;
    color: #F0394B;
}
.slider-content{
    font-size: 18px !important;
}
.edit-link{
    color: #F0394B;
    /* margin-top: 21px; */
    font-size: 18px;

}
.get-in-touch-main .form-row .form-box {
    flex: 0 0 50%;
}
.ticket-booking-main .form-row > div {
    flex: 0 0 calc(33.33% - 30px);
}
.ticket-booking-main .fixed-bottom-bar {
    /* display: flex; */
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    left: 0;
    padding: 16px;
    z-index: 1;
    box-shadow: 0px -1px 20px #00000029;
    display: none;
}
.ticket-booking-main .fixed-bottom-bar.show-pricebar {
    display: flex;
}
.ticket-booking-main .fixed-bottom-bar.remove-fixed-bar .form-row .total-amount:last-child {
    margin-right: 0;
}
.ticket-booking-main .fixed-bottom-bar.remove-fixed-bar .form-row > div {
    flex: 1;
}
.ticket-booking-main .fixed-bottom-bar.show-pricebar.remove-fixed-bar {
    position: relative;
    box-shadow: none;
    margin-bottom: 10px;
}
.ticket-booking-main .form-row{
    flex: 1;
  /*  align-items: center;*/
}
.ticket-booking-main .form-row .total-amount {
    justify-content: center;
    height: 100%;
}
.ticket-booking-main .total-book {
    margin-top: 0;
}
.reschedulebtns{
    flex-direction: row;
}
.reschedulebtns a{
    margin-right: 16px;
}
.reschedulebox{
    margin:29px 0px 0px 0px;
}
.create-account-main.login.reschedulcontainer{
    padding: 0px 0 70px;
}
.reschedulcontainer .book-now-main .filter-box{
    flex: 1;
}
.reschedulcontainer .single-date input,.reschedulcontainer .book-now-main select{
    width:100%;
}

.reschedulcontainer .container{
    padding:0px;
}
.reschedulcontainer .register-success{
    margin-top:20px;
}
.thankspopup{
    font-size: 16px;
    line-height: 21px;
    color: #1A1A1A;
    margin-bottom: 0;
    text-align: center;
    padding: 16px 0;
}

.back-link{
    font-size: 20px;
    color: #f0434b;
    margin-top: 29px;
    display: block;

}
/* faq page start*/
.faq-main {
    margin-top: 50px;
    margin-bottom: 80px;
}
.faq-main .container{
    background-color: #fff;
}
.faq-main h3{
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333333;
    padding-bottom: 20px;
    position: relative;
}
.faq-main h3::before {
    content: '';
    width: 62px;
    height: 3px;
    background: #F0394B;
    position: absolute;
    bottom: 0;
}
.faq-main h3 span {
    color: #F0394B;
}
.que-ans-box .faq-question{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    box-sizing: border-box;
    position: relative;
    transition: .3s ease-in all;
    text-transform: none;
    box-shadow: 0px 3px 10px #7777771A;
    border-radius: 3px;
}
.faq-ans a {
    color:#F0394B;
    text-decoration: underline;
}
.que-ans-box  a:before {
    content: '';
    position: absolute;
    right: 30px;
    height: 6px;
    width: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    transition: .3s ease-in transform;
    color: #696969;
    transform: rotate(135deg);
    transform-origin: center;
    top: calc(50% - 3px);
    transition: .3s ease-in all;
}
.show-faq a:before {
    transform: rotate(-45deg);
    transform-origin: center;
    transition: .3s ease-in all;
    top: calc(50% - 1px);
}
.show-faq .faq-question {
    position: relative;
    border-bottom: none;
}
.faq-ans {
    background: #fff;
    font-size: 15px;
    line-height: 24px;
    max-height: 0px;
    transition: .3s ease all;
    padding: 0 30px;
    opacity: 0;
}
.show-faq .faq-ans {
    max-height: 500px;
    padding: 15px 30px;
    opacity: 1;
    transition: .3s ease all;
    color: #6E6E6E;
    background-color: #f1f1f1;
}
.que-ans-box {
    margin-bottom: 10px;
}
.faq-que-ans-main {
    display: flex;
    flex: 1;
}
.ques-ans-container:first-child {
    margin-right: 20px;
}
.ques-ans-container .title {
    font-size: 22px;
    font-weight: 600;
    color: #F0394B;
    margin-bottom: 17px;
    margin-top: 30px;
}
.gallery-list .title {
    font-size: 22px;
    font-weight: 600;
    color: #F0394B;
    margin-bottom: 17px;
    margin-top: 30px;
}
.non-grid{
    display: flex;
    flex-wrap: wrap;
}
.non-grid .gallry-cnt{
    width: 33.33%;
    padding:10px 10px;
}
.non-grid .title{
    width:100%;
}
/* faq end */
/* terms condition start*/
.terms-condition {
    margin-top: 50px;
}
.terms-condition .container{
    background-color: #fff;
}
.terms-condition ul{
    list-style: disc;
    padding-left: 20px;
}
.terms-condition ul li,.terms-condition p{
    color: rgba(0, 0, 10, 0.6);
    font-size: 16px;
    line-height: 33px;
    /* margin-bottom: 24px; */
}
.terms-condition h3{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
    font-weight: 700;
    color: rgba(0, 0, 10, 0.6);
}
/* terms condition end*/
.premium-box .ticket-title{
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-size: 18px;
}
.premium-box .ticket-subtitle {
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    line-height: initial;
    margin-top: 5px;
}
.premium-box .ticket-shortdesc {
    font-weight: normal;
    font-size: 11px;
    margin: 0;
    line-height: initial;
    margin-top: 5px;
}
.total-book .prioritymsg{
    margin-left: 25px;
    color:#ED2151;
}
/* Offer pop up */
.content-popup h3 {
    border-bottom: 1px solid #000;
    padding: 10px 0 10px;
}

/* .content-popup p {
    text-align: center;
} */
#mappopupbody{
    display: flex;
    justify-content: center;
}
.content-popup a {
    margin: 0 auto;
    margin-bottom: 5px;
}

.modal-content.image-popup {
    padding: 20px 36px;
}

.modal-content.image-popup .destination-image{
    margin-bottom: 25px;
}
.modal-content.image-popup p{
    margin-bottom: 0;
    text-align: center;
}

.only-image-popup .destination-image {
    margin-bottom: 10px;
}

.modal-content.only-image-popup {
    padding: 20px 36px;
}
.login-form .forgot-link{
    margin-top: 15px;
    color: #F0394B;
    display:flex;
    justify-content:center;
}
.under-main-img {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: 100px;
}

p.under-main-content {
    text-align: center;
    margin-top: 48px;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 100px;
    color: #161616;
}
.booking-next-level .booking-inputs{
    font-size: 17px;
}
.booking-next-level .select-design .booking-inputs{
    font-size: 17px;
}
.ticket-booking-main .premium-box .soldout{
    background: #aba4a4;
}
.form-box .input-with-errormsg .bookinginfo{
    margin-top:0px;
}
/* location map page */

.about-story .pinimage .place-pin {
    position: absolute;
    cursor: pointer;
    width:18px;
}
.pin-1{
    top: 19%;
    left: 27%;
}
.pin-2{
    top: 44%;
    left: 10%;
}
.pin-3{
    top: 40%;
    left: 14%;
}
.pin-4{
    top: 87%;
    left: 24%;
}
.pin-5{
    top: 60%;
    left: 52%;
}
.pin-6{
    top: 91%;
    left: 25%;
}
.pin-7{
    top: 17%;
    left: 30%;
}
.pin-8{
    top: 49%;
    left: 10%;
}
#pin-place h3{
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}

#pin-place p{
    margin: 0 auto 16px;
}
.about-story-right{
    position: relative;
}
.map-container{
    margin: 0 0 60px 0px;
}
.messagebox .under-main-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}
.messagebox .under-main-content span {
    font-weight: 600;
    color: #F0394B;
}

.destination-image.destination-image--no-shadow {
    box-shadow: none;
    border-radius: 0;
}
.destination-image.destination-image--no-shadow img {
    border-radius: 0;
}
#ticketmsg{
    font-weight: bold;
    font-size:15px;
}
.label-detail-main .ticket-subtitle{
    font-size: 16px;
    font-weight: bold;
}
.modal--gallery .modal-content {
    max-width: 80vw;
    max-height: 80vh;
}
.modal--gallery img {
    max-width: 100%;
    max-height: calc(80vh - 30px);
    display: block;
    margin: 0 auto;
}
.marquee-line {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: transparent linear-gradient(104deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    padding: 4px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marquee-line p, .marquee-line marquee {
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 24px;
}
.marquee-line marquee p {
    text-align: initial;
}
.home-page .marquee-line {
    top: initial;
}
.home-page .marquee-line + a.header-left {
    margin-top: 40px;
}
.banner-detail .timing.time-with-marquee {
    top: -113px;
}
.home-page .marquee-line ~ .header-right {
    margin-top: 10px;
}
.home-page .sticky-header .marquee-line {
    top: 80px;
}
.home-page .sticky-header .marquee-line + a.header-left {
    margin-top: 0;
}
.home-page .sticky-header .marquee-line ~ .header-right {
    margin-top: 0;
}
#img-magnifier-container {
    position:relative;
    display: block;
    margin: 0 auto;
    width: fit-content;
}
.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    cursor: none;
    width: 150px;
    height: 150px;
}
.mobile-zoom{
    display: none;
}
.mobile-zoom button{
    background: transparent linear-gradient(126deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    border: none;
    color: #fff;
    font-weight: 600;
    height: 20px;
    width: 20px;
}
.noscroll{
    overflow: hidden;
}
.tns-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.tns-nav button {
    width: 16px;
    height: 16px;
    background: rgb(255 255 255 / 0.5);
    display: block;
    z-index: 1;
    border: none;
    margin-right: 8px;
    border-radius: 10px;
    outline: none;
}
.tns-nav button.tns-nav-active {
    background: transparent linear-gradient(151deg, #F6663F 0%, #ED2151 100%) 0% 0%;
}
.no-scroll{
    overflow-y: hidden;
}
#navigation .active:after {
      content: '';
      position:absolute;
      top:30px;
      left: 30%;
      right: 30%;
      height: 2px;
      background:red;
      display:block;
}
.inner-header #navigation .active:after {
    top:50px;
}
.advertis-leap-container .advertise-leap{
    top:0px;
}
.advertis-leap-container .advertise-leap{
    top:0px;
}
.leap-top{
    margin-top: -80px;
}
.gallery-top{
    margin-top: 255px;
}
.contact-top{
    margin-top: 255px;
}
.video-desktop{
    width:100%; 
    max-height: 70vh;
}
.video-desktop-other{
    width:100%; 
    max-height: 70vh;
}
.messagebox{
    height: auto;
    margin: 80px auto;
}
.messagebox .under-main-content{
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;

}
.termslink{
    color: #F0394B;
}
.note-box > p:first-child{
    font-weight: 700;
}
.note-box p{
color:#F0394B
}

.note-box{
    display: flex;
}
.note-info {
    margin: 0 10px;
}
.copyright .jetbro-link{
    margin-left: 0px;
    color: #F0394B;
    font-style: italic;
}
/* COVID page */
.covid-main__top {
    text-align: center;
}

.covid-main__top h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 600;
}

.covid-main__top img {
  /*   max-width: 200px; */
    margin-bottom: 30px;
}
.covid-detail__box img{
    height: 100px;
    margin: 0 auto;
}

.knowmore-btn {
    height: 42px;
    width: 128px;
    background: #f24c45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: capitalize;
    margin: 24px auto 30px;
}

.container.covid-main__top h2 {
    margin-bottom: 14px;
}

.covid-seperator {
    background: transparent linear-gradient(111deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    margin: 46px 0 24px;
    padding: 32px 0;
    text-align: center;
}

.covid-seperator p {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.covid-detail__row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 30px;
    /* grid-template-rows: 1fr auto; */
    /* grid-row-gap: 20px; */
}

.covid-detail__box {
    border: 1px solid #000;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    display: grid;
    grid-row-gap: 20px;
    align-items: flex-start;
}

.covid-detail__box h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
}
.covid-link{
    color:#F6663F;
}
.other-detail {
    text-align: center;
    padding: 38px 15px;
}
.first-covid-box__slider {
    padding-left: 4px;
}
.first-covid-box__slider .covid-detail__box {
    height:365px !important;
}
.first-covid-box__slider .tns-outer [data-controls="prev"],.first-covid-box__slider .tns-outer [data-controls="next"] {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    text-indent: -9999px;
    position: relative;
    background: transparent linear-gradient(180deg, #F6663F 0%, #ED2151 100%) 0% 0%;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    /* display: flex; */
    left: -60px;
}
.first-covid-box__slider .tns-outer [data-controls="prev"]:before,.first-covid-box__slider .tns-outer [data-controls="next"]:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 19px;
    transform: rotate(-45deg);
    top: 18px;
}
.first-covid-box__slider .tns-outer [data-controls="next"]:before {
    left: 14px;
    transform: rotate(135deg);
}
.first-covid-box__slider .tns-outer {
    position: relative;
}
.first-covid-box__slider .tns-outer [data-controls="next"] {
    right: -60px;
    left: initial;
}
.first-covid-box__slider .tns-outer [disabled] {
    background: #DCDCDC;
}
.footer-contact{
    margin-top: 16px;
}
.bulk-content{
    font-size: 13px;
    line-height: 21px;
    font-weight: 700;
    color: #959EA6;
}
.bulk-box{
    display: flex;
    flex-direction: column;
}
.whatsaapp{
    display: block;
}
@media screen and (max-width:1300px){
    .first-covid-box__slider .tns-controls {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }   
    .first-covid-box__slider .tns-outer [data-controls="prev"], .first-covid-box__slider .tns-outer [data-controls="next"]{
        left: -40px;
        right: -40px;
        transform: none;
        width: 32px;
        height: 32px;
    }
    .first-covid-box__slider .tns-outer [data-controls="next"]{
        left: initial;
    }
    .first-covid-box__slider .tns-outer [data-controls="prev"]:before, .first-covid-box__slider .tns-outer [data-controls="next"]:before {
        width: 8px;
        height: 8px;
        top: 11px;
    }
    .first-covid-box__slider .tns-outer [data-controls="next"]:before {
        left: auto;
        right: 13px;
    }
    .first-covid-box__slider .tns-outer [data-controls="prev"]:before{
        left: 13px;
    }
}
.covidcare-icon{
    width: 160px;
}
.form-row .price-total .ticketquantity label {
    margin-left: 10px;
    display: block;
    width: auto;
}








/*---------------location search--------------------*/

.premium-box img {
    margin: 0 0 20px 0;
    border-radius: 7px 7px 0 0 ;
    height: 200px;
}

.premium-box h2 { font-family: 'Work Sans', sans-serif; font-size: 18px; color: #F24647; padding: 0 10px 0 20px; }

.premium-box p.newTxt { font-family: 'Work Sans', sans-serif; font-size: 14px;  margin-bottom: 0;font-size: 15px;color: rgb(105, 103, 103); text-align: left; font-weight: 500; padding: 0 0 10px 20px;}

.premium-box a.booknowbut {  text-align: center; text-decoration: none; font-family: 'Work Sans', sans-serif; display: block; background-color: #F24647; border-radius: 7px 0 7px 0; color: #ebe9e9; font-size: 12px; line-height: 30px; padding-left: 20px; padding-right: 20px; max-width: 30%; position: absolute; top: 92%; left: 71%;}


.premium-box p.newTxtlast { font-family: 'Work Sans', sans-serif; font-size: 14px;  margin-bottom: 0;font-size: 15px;color: rgb(105, 103, 103); text-align: left; font-weight: 500; padding: 0 0 30px 20px;}

.locTxt{
    font-size: 36px;
    line-height: 44px;
    color: #44484a;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
   
}

.input-design input, .input-design div.valueNew {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    
}

.form-row .price-total .ticketquantity label.quantity {
    margin-left: 10px;
    display: block;
    width: auto;
    display: block;
}


.premium-box div.box-headertickwt {
    background:#696969;
    border: none;
    border-bottom: 3px solid #EF304D;
    width: 100%;
    padding: 20px 8px 10px;
    color:#1A1A1A;
    border-radius: 8px 8px 0 0;
    text-align: left;
}

.premium-box .ticket-title1{
    /*background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;*/
    font-size: 14px;
    text-transform: capitalize;
    color:#EF304D;
    background:none;
    padding: 10px 10px 10px;
    text-align: left;
}

.premium-box .ticket-subtitle2 {
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    line-height: initial;
    margin-top: 5px;
    color: #262C30;
    padding: 0 0 10px 10px;
    text-align: left;
}

.premium-box .ticket-shortdesc1 {
    font-weight: normal;
    font-size: 11px;
    margin: 0;
    line-height: initial;
    margin-top: 5px;
    color: #262C30;
    padding: 0 0 10px 0;
    text-align: left;
    padding: 0 0 10px 10px ;
}

.price-totalNew {
    display: flex;
      border-top: 1px solid #707070;
    /* margin-top: 12px; */
    padding-top: 20px;
    width: 100%;
    padding: 20px 8px;
}

.maxWidth {

    width: 50%;
}

.input-design input, .input-design div.value1 {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.ticketquantity {padding: 0 0 10px 10px;}
.parent {
   
    margin: 1rem;
    padding: 2rem 2rem;
    text-align: center;
  }
  .child {
    display: inline-block;
   
    padding: 1rem 1rem;
    vertical-align: middle;
  }
  .single-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.value1 {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-right: 2px;
    padding-top: 5px;
}
.note-info1{
    width: 21%;
    font-size: 18px;
}
.calenderstyle {
    position: relative;
    top: 74px;
    z-index: 10;
    left: 485px;
}
.topnav {
    overflow: hidden;
  
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
   
    color: black;
  }
  
  .topnav a.active {
   
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 1300px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 1300px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
 
#state option { color: black; }
.empty { color: gray !important;font-size: 22px!important; }
.bookingStatus{
    font-size: 20px;
    color: red;
}