.font-size-12 {
	font-size: 12px;
}

.font-size-24 {
	font-size: 24px;
}

@font-face {
	font-family: 'Roboto-Regular';
	font-display: swap;
	font-style: normal;
	font-weight: 400;
	src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
	font-family: 'Roboto-Medium';
	font-display: swap;
	font-style: normal;
	font-weight: 300;
	src: url("../../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
	font-family: 'Roboto-Bold';
	font-display: swap;
	font-style: normal;
	font-weight: 700;
	src: url("../../fonts/Roboto-Bold.ttf") format("truetype");
}

@font-face {
	font-family: 'Orbitron-Black';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/Orbitron-Black.ttf") format("truetype");
}

@font-face {
	font-family: 'DmSans-Reg';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/DMSans-Regular.ttf") format("truetype");
}

@font-face {
	font-family: 'DmSans-Reg-bold';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/DMSans-Bold.ttf") format("truetype");
}

@font-face {
	font-family: 'Poppins-Reg';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
	font-family: 'Poppins-Reg-bold';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
	font-family: 'Poppins-Semi-bold';
	font-display: swap;
	font-style: normal;
	font-weight: 900;
	src: url("../../fonts/Poppins-SemiBold.ttf") format("truetype");
}

/* Common Styles Start */

.page {
	overflow: hidden;
}

.full-width {
	max-width: 1920px;
	margin: 0 auto;
}

.restrict-width {
	max-width: 1366px;
	margin: 0 auto;
}

a:hover {
	text-decoration: underline;
}

.m-hide {
	display: block !important;
}

.m-show {
	display: none !important;
}

.mob-d-hide {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.mob-d-show {
	display: none !important;
}

.tab-hide {
	display: block !important;
}

.tab-show {
	display: none !important;
}

.d-hide {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-show {
	display: none !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.button-styles {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	box-shadow: 0 2px 9px 0 rgba(40, 40, 40, 0.2);
	border-radius: 6px;
	font-weight: 500;
	font-size: 20px;
	border: none;
	color: #FFFFFF;
	cursor: pointer;
}

.button-styles:focus {
	outline: none;
}

.button-styles.border {
	background-color: #FFFFFF;
	border: 1px solid #000000;
}

/* Custom Radio Styles Start */

input[type="radio"] {
	width: inherit;
}
/* removed this code */
/* added new styles */
/* To remove defult radio button*/
/* // [type="radio"]:not(:checked),
// [type="radio"]:checked {
//     display: none;
// } */
/* To remove defult radio button*/
/* // [type="checkbox"]:not(:checked),
// [type="checkbox"]:checked {
//   display: none;
// } */
/* added new styles */
/* removed this code */

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
	position: relative;
	padding-left: 40px;
	cursor: pointer;
}

/* Radio Default */

[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	content: url("../images/radio-button.svg");
	position: absolute;
	left: 0px;
	top: -4px;
}

/* Radio checked */

[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
	content: url("../images/radio-button-selected.svg");
	position: absolute;
	top: -4px;
	left: 0px;
}

[type="radio"]:not(:checked) + label:after {
	-webkit-transform: scale(0);
	        transform: scale(0);
}

[type="radio"]:checked + label:after {
	opacity: 1;
}

/* Custom Radio Styles End */

/* checkbox styles */

.checkbox-field {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
}

[type="checkbox"]:not(:checked) + label:before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
}

[type="checkbox"]:checked + label:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
}

[type="checkbox"]:checked + label:after {
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
}

[type="checkbox"]:not(:checked) + label:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
}

/* checkbox styles */

/* Search field Styles Start */

.input {
	outline: none;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 15px 12px;
	border: none;
	width: 100%;
}

.input-with-icon {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	position: relative;
	background-color: #FFFFFF;
	border: 2px solid #E8E8E8;
	border-radius: 6px;
}

.search-icon {
	cursor: pointer;
	margin-right: 30px;
}

/* Search field Styles End */

/* Input Field styles */

.input-field {
	background: #FFFFFF;
	border: 2px solid #E8E8E8;
	border-radius: 6px;
}

.input-field .input {
	padding: 11px 12px !important;
}

input {
	font-family: inherit;
}

/* Input Field styles */

/* Header Styles Start */

/* Header Styles End */

/* Footer Styles Start */

/* Footer Styles End */

/* Common Styles End */

.main {
	font-family: "DmSans-Reg";
	padding-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
}

.page-padding {
	padding-left: 60px;
	padding-right: 60px;
}

.common_btn-style {
	padding: 10px 15px;
	/* border: 2px solid #E6E8EC; */
	background-color: rgb(236, 31, 70);
    color: #fff;
	/* background-color: white; */
	border-radius: 26px;
	font-size: 14px;
	font-family: "DmSans-Reg-bold";
	cursor: pointer;
}

.bottom-line {
	width: 70px;
	background-color: #EC2051;
	height: 2px;
}

.common-heading {
	font-size: 48px;
	margin-bottom: 12px;
	line-height: 58px;
	color: #23262F;
}

.common-sub-heading {
	font-size: 12px;
	color: #777E90;
	margin-top: 8px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

select {
	background: none;
}

img {
	width: auto;
}

body {
	color: #000000;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
	letter-spacing: 0;
	line-height: 24px;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

body :focus {
	outline: none;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

ol,
ul {
	list-style: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	display: block;
}

/* input[type=text] {
	font-size: 20px;
} */

::-webkit-input-placeholder {
	font-weight: 400;
	opacity: 0.5;
}

:-ms-input-placeholder {
	font-weight: 400;
	opacity: 0.5;
}

::placeholder {
	font-weight: 400;
	opacity: 0.5;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */

input[type=number] {
	-moz-appearance: textfield;
}

html {
	scroll-behavior: smooth;
	transition: all 10s smooth;
}

.header {
	font-family: "DmSans-Reg";
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	/* font-size: 14px;
	border-bottom: 1px solid lightgray;
	position: fixed;
	width: 100%;
	background-color: #fff;
	z-index: 1; */
}

.header .header_nav {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.header .header_nav .header_logo {
	width: 110px;
	/* margin-right: 25px;
	border-right: 1px solid lightgray; */
	padding-right: 20px;
}

.header .header_nav .header_nav-list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	font-family: "DmSans-Reg-bold";
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header .header_links {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .header_text {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header .header_text h3{
	align-items: center;
    color: #ef416b;
    text-transform: uppercase;
    text-align: left; 
	font-size: 14px;
	line-height: 16px;
    width: 80%;
    font-family: "DmSans-Reg-bold";
}
.header .header_links .links {
	color: #333; 
    font-family: "DmSans-Reg-bold";
	border-bottom: 2px solid transparent;
	font-size: 14px;
	padding: 0 5px;
	transition: 0.4s ease;
    /*border-radius: 10px; */
}
.header .header_links .links.individual{
	margin-right: 15px;
}
.header .header_links .links.individual:hover{
    border-bottom: 2px solid #ef416b;;
}
.header .header_links .header_login-btn {
	padding: 11px 26px;
	background-color: white;
	border: 2px solid #E8E8E8;
	border-radius: 90px;
	font-size: 14px;
	margin-right: 24px;
	color: #1D1618;
	cursor: pointer;
	font-weight: 700;
}
.header .header_links .header-login-btn{
	border: 1px solid lightgray;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.header .header_links .header-login-btn svg{
	width:24px !important;
	margin-right: 5px;
}
.header .header_links .header-login-btn button{
	margin-right: 5px;
}
/* .header .header_links .header_ministry {
	width: 140px;
} */
.header .header_links .header_ministry img{
	height: 50px;
}
.dropdown {
	display: inline-block;
	position: relative;
}

.dropdown-content {
	display: none;
    position: absolute;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 40%);
    background-color: white;
    z-index: 999;
    min-width: 185px;
    border: 1px solid #ddd;
	right: 0;
	border-radius: 8px;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content a {
	display: block;
	color: #000000;
	padding: 8px 12px;
    font-size: 13px !important;
	text-decoration: none;
}

.dropdown-content a:hover {
	color: #FFFFFF;
	background-color: #EC2051;
}

button {
	border: none;
	color: #333;
	margin-right: 5px;
	font-family: "DmSans-Reg-bold";
	font-size: 14px;
	cursor: pointer;
	background-color: white;
}

.dropdown-btn {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 20px;
	cursor: pointer;
}

.footer-container {
	padding: 10px 0px 10px 0px;
    background-color: #ffff;
    border-top: 1px solid lightgrey;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-container .footer {
	color: white;
	width: 1280px;
	margin-left: auto;
	margin-right: auto;
	/* padding: 0px 80px; */
}

.footer-container .footer .footer_content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	/* border-bottom: 1px solid #8E8A8B; */
	/* padding-bottom: 48px; */
}

.footer-container .footer .footer_content .footer-company-description {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 256px;
}

.footer-container .footer .footer_content .footer-company-description .nidi-logo {
	width: 70px;
}

.footer-container .footer .footer_content .footer-company-description .company-address {
	font-size: 12px;
	color: #8E8A8B;
	margin:0;
}

.footer-container .footer .footer_content .footer-headers {
	/* margin-right: 120px; */
	display: flex;
    align-items: center;
}

.footer-container .footer .footer_content .footer-headers .footer-headings {
	font-size: 14px;
	color: #ef416b;
}

.footer-container .footer .footer_content .footer-headers .footer-subheadings {
	margin: 0;
    margin-left: 4px;
	font-size: 14px;
	color: #555;
}
.footer-container .footer .footer_content .footer-headers .footer-subheadings:hover{
	text-decoration: underline;
}
.footer-container .footer .footer_content .footer-headers .footer-subheadings:not(:last-child)::after {
    content: "|";
    padding: 2px;
}

.footer-container .footer .footer-cc-text {
	color: #D2D0D1;
	font-family: "Poppins-Reg";
	font-size: 12px;
	margin-top: 24px;
}

.home-page {
	max-width: 1366px;
	padding-top: 100px;
	padding-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
}

.banner-section {
	margin-top: 22px;
	position: relative;
	width: 1250px;
	padding-right: 80px;
}

.banner-section .banner-sec-bg {
	width: 100%;
	border-radius: 24px;
}

.banner-section .banner-sec-content {
	position: absolute;
	top: 0;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-left: 80px;
	border-radius: 24px;
	background: linear-gradient(130.48deg, rgba(236, 248, 252, 0.84) 22.56%, rgba(236, 248, 252, 0) 69.73%);
}

.banner-section .banner-sec-content .banner-sec-text {
	font-family: "DmSans-Reg";
	font-size: 48px;
	line-height: 56px;
	color: #23262F;
	width: 450px;
}

.banner-section .banner-sec-content .banner-sec-btn {
	background: #3366C1;
	border-radius: 90px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 12px 24px;
	color: white;
	margin-top: 24px;
}

.banner-sec-nav {
	margin-top: 15px;
	display: -webkit-flex;
	display: -ms-flexbox;
	justify-content: center;
	display: flex;
	padding-bottom: 15px;
	border-bottom: 1px solid #E6E8EC;
}

.banner-sec-nav .nav-list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	color: #8E8A8B;
	margin-right: 18px;
	cursor: pointer;
}

.banner-sec-nav .nav-list:last-child {
	margin-right: 0px;
}

.banner-sec-nav .nav-list .banner-nav-icons {
	width: 13px;
	margin-right: 16px;
}
.banner-sec-nav .nav-list .banner-nav-icons img{
	display: block;
    margin-right: 4px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.banner-sec-nav .nav-list .banner-nav-text {
	white-space: nowrap;
}

.banner-sec-nav .nav-active {
	color: #EC2051;
}

.nav-content {
	position: relative;
}

.nav-content .nav-content-sec {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	/* padding-top: 48px; */
}

.nav-content .nav-content-sec .keyword-sec {
	display: inline-block;
	width: 400px;
}

.nav-content .nav-content-sec .keyword-sec .keyword-provider {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-size: 32px;
	padding: 24px;
	background: #EBF0F9;
	color: #23262F;
	border-radius: 16px;
}

.nav-content .nav-content-sec .keyword-sec .keyword-provider .keyword-provider-text {
	color: #777E90;
	font-family: "Poppins-Reg";
}

.nav-content .nav-content-sec .keyword-sec .search-field {
	border: 1px solid #E6E8EC;
	border-radius: 90px;
	padding: 12px 16px;
	width: 400px;
	cursor: pointer;
	margin-top: 24px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn,
.nav-content .nav-content-sec .keyword-sec .search-field .search-box {
	border: none;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn:hover,
.nav-content .nav-content-sec .keyword-sec .search-field .search-box:hover {
	border: none !important;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn:focus,
.nav-content .nav-content-sec .keyword-sec .search-field .search-box:focus {
	box-shadow: none;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn::-webkit-input-placeholder, .nav-content .nav-content-sec .keyword-sec .search-field .search-box::-webkit-input-placeholder {
	font-size: 16px;
	color: #777E91;
	opacity: 1;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn:-ms-input-placeholder, .nav-content .nav-content-sec .keyword-sec .search-field .search-box:-ms-input-placeholder {
	font-size: 16px;
	color: #777E91;
	opacity: 1;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn::placeholder,
.nav-content .nav-content-sec .keyword-sec .search-field .search-box::placeholder {
	font-size: 16px;
	color: #777E91;
	opacity: 1;
}

.nav-content .nav-content-sec .keyword-sec .search-field .search-icon-btn {
	width: 20px;
	margin-right: 12px;
	background: white;
}

.nav-content .nav-content-sec .keyword-sec .keywords-dropdowns {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 400px;
	padding: 6px 0px;
	border: 1px solid #E6E8EC;
	border-radius: 90px;
	font-size: 14px;
	margin-top: 10px;
	color: #777E90;
	font-family: "Poppins-Reg";
	color: #23262F;
	cursor: pointer;
}

.nav-content .nav-content-sec .keyword-sec .keywords-dropdowns .keyword-dropdown-icon {
	width: 32px;
}

.nav-content .nav-content-sec .keyword-sec .keywords-dropdowns select {
	opacity: 0.5;
}

.nav-content .nav-content-sec .keyword-sec .keyword-sec-btn {
	margin-top: 10px;
	padding: 16px;
	color: white;
	width: 152px;
	background-color: #3366C1;
	border-radius: 90px;
	cursor: pointer;
	border: none;
}

/* .nav-content .nav-content-sec .keyword-content-section {
	margin-left: 24px;
} */

.nav-content .nav-content-sec .keyword-content-section .tourism_section {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.nav-content .nav-content-sec .keyword-content-section .tourism_section .tourism_section-img {
	width: 300px;
	/* height: 190px; */
}

.nav-content .nav-content-sec .keyword-content-section .tourism_section .tourism_section-content {
	padding: 0 24px;
	font-family: "Poppins-Reg";
}

.nav-content .nav-content-sec .keyword-content-section .tourism_section .tourism_section-content .tourism_service-heading {
	font-weight: 600;
	font-family: "Poppins-Reg-bold";
	color: #23262F;
}

.nav-content .nav-content-sec .keyword-content-section .tourism_section .tourism_section-content .tourism_service-para {
	color: #777E90;
	margin-top: 8px;
}

.nav-content .nav-content-sec .keyword-content-section .services-content-section {
	padding: 24px;
	background-color: #EC2051;
	margin-top: 24px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
			justify-content: space-between;
	font-family: "Poppins-Reg";
}

.nav-content .nav-content-sec .keyword-content-section .services-content-section .services-content-text .services-content-header {
	font-size: 16px;
	color: white;
}

.nav-content .nav-content-sec .keyword-content-section .services-content-section .services-content-text .services-content-para {
	color: white;
	margin-top: 8px;
}

.nav-content .nav-content-sec .keyword-content-section .services-content-section .service-content-link .service-link-img {
	width: 24px;
}

.our_services-section {
    margin-top: 30px;
    margin-bottom: 60px;
}

.our_services-section .our_services-header-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	/* -webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center; */
	margin-bottom: 60px;
}

.our_services-section .our_services-header-box .our_services-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/* -webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center; */
}

.our_services-section .our_services-header-box .our_services-header .our_services-sup-header {
	font-weight: 700;
	color: #EC2051;
	text-align: center;
	text-transform: uppercase;
	font-family: "DmSans-Reg-bold";
}

.our_services-section .our_services-header-box .our_services-header .our_services-main-header {
	font-size: 48px;
	margin: 8px 0px;
	line-height: 56px;
	color: #23262F;
}

.our_services-section .our_services-header-box .our_services-header .our_services-main-header-line {
	width: 70px;
	background-color: #EC2051;
	height: 2px;
}

.our_services-section .our_services-cards-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.our_services-section .our_services-cards-sec .our_service-card {
	position: relative;
    flex: 0 0 22%;
    font-family: "Poppins-Reg";
}

.our_services-section .our_services-cards-sec .our_service-card .our_service-card-img {
	width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}

.our_services-section .our_services-cards-sec .our_service-card .our_service-card-heading {
    margin: 24px 0px 8px 0px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: "DmSans-Reg-bold";
}

.our_services-section .our_services-cards-sec .our_service-card .our_service-card-sub-heading {
	font-size: 12px;
	color: #777E91;
	font-family: "Poppins-Reg";
	margin-top: 8px;
}

.our_services-section .our_services-cards-sec .our_services-card-section2 {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 124px;
}

.discover_section .discover_section-head {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.discover_section .discover_section-head .discover_section-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.discover_section .discover_section-head .discover_section-header .discover_section-heading {
	font-size: 48px;
	line-height: 38px;
	/* font-family: "DmSans-Reg-bold"; */
	color: #23262F;
}

.discover_section .discover_section-head .discover_section-header .discover_section-heading-line {
	width: 70px;
	background-color: #EC2051;
	height: 2px;
	margin: 12px 0px;
}

.discover_section .discover_section-head .discover_section-header .discover_section-sub-heading {
	color: #777E90;
	font-family: "Poppins-Reg";
}

.discover_section .discover_section-head .discover_section-arrows {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.discover_section .discover_section-head .discover_section-arrows .discover_section-left-arrow {
	width: 15px;
	height: 10px;
	cursor: pointer;
}

.discover_section .discover_section-head .discover_section-arrows .discover_section-right-arrow {
	width: 40px;
	margin-left: 20px;
	cursor: pointer;
}

.discover_section .discover_section-cards {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	margin-top: 5px;
	min-width: -webkit-fit-content;
	min-width: fit-content;
}

.discover_section .discover_section-cards .discover_sec-card {
	padding: 36px 24px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-right: 16px;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	background-color: #F3F3F3;
	font-family: "Poppins-Reg";
	border-radius: 16px;
	margin: 0px 12px;
	color: #23262F;
	cursor: pointer;
	width: 240px;
}

.discover_section .discover_section-cards .discover_sec-card:first-child {
	margin-left: 0px;
}

.discover_section .discover_section-cards .discover_sec-card .discover-number {
	color: #23262F;
	opacity: 0.5;
	line-height: 32px;
}

.discover_section .discover_section-cards .discover_sec-card .discover-text {
	font-size: 16px;
	color: #23262F;
	opacity: 0.5;
}

.discover_section .discover_section-cards .discover-aactive-card {
	background-color: #EC2051;
	box-shadow: -2px 33px 20px -19px rgba(236, 32, 81, 0.25);
	border-radius: 0px !important;
	/* color: white !important; */
	border-bottom: 2px solid #EC2051;
}
.discover_section .discover_section-cards .discover-aactive-card:hover{
	border-bottom: 2px solid #EC2051;
}
.discover_section .discover_section-cards .discover-aactive-card .discover-text {
	color: #ffff;
	opacity: 1;
}

.discover_section .discover_section-cards .discover-aactive-card .discover-number {
	color: #fff;
	opacity: 1;
}

.accomdation_unit-section {
	margin-top: 96px;
	padding-left: 128px;
	padding-right: 0px;
}

.accomdation_unit-section .accomdation_header-sec .accomdatin_sec-header {
	font-size: 32px;
	font-family: "DmSans-Reg-bold";
	color: #23262F;
	line-height: 40px;
}

.accomdation_unit-section .accomdation_header-sec .accomdation_section-para {
	font-family: "Poppins-Reg";
	color: #777E91;
	margin-top: 8px;
}

.accomdation_unit-section .accomdation_unit-banners {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-right: 20px;
	width: 290px;
	margin-top: 48px;
	font-family: "Poppins-Reg";
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner .accomdation_hotel-header {
	line-height: 32px;
	font-family: "Poppins-Reg-bold";
	color: #23262F;
	margin-top: 8px;
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner .accomdation_hotel-props {
	color: #777E90;
	font-size: 12px;
}
/* //added new styles */
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner img {
	height: 160px;
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner:nth-child(2),
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner :nth-child(4),
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner :nth-child(9),
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner :nth-child(11),
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner :nth-child(13),
.accomdation_unit-section .accomdation_unit-banners .accomdation_hotel-banner :nth-child(17) {
	width: 556px;
}
/* //added new styles */

.accomdation_unit-section .accomdation_unit-banners .accomdation_resort-banner {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-right: 13px;
	width: 556px;
	margin-top: 48px;
	font-family: "Poppins-Reg";
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_resort-banner .accomdation_hotel-header {
	line-height: 32px;
	color: #23262F;
	margin-top: 8px;
	font-family: "Poppins-Reg-bold";
}

.accomdation_unit-section .accomdation_unit-banners .accomdation_resort-banner .accomdation_hotel-props {
	font-size: 12px;
	color: #777E90;
}

.attraction_section {
	margin: 0 auto;
    /* width: 1274px; */
    /* padding-right: 0px; */
	margin-top: 50px;
}

.attraction_section .attraction_section-head {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	/* -webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column; */
	/* -webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center; */
	/* -webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center; */
	/* margin-left: auto;
	margin-right: auto; */
}

.attraction_section .attraction_section-head .attraction_Section-head-text {
	font-size: 48px;
	line-height: 56px;
	/* font-family: "DmSans-Reg-bold"; */
	color: #23262F;
}

.attraction_section .attraction_section-head .attraction_header-line {
	width: 70px;
	background-color: #EC2051;
	height: 2px;
	margin: 12px 0px;
}

.attraction_section .attraction_section-head .attraction_sub-header {
	color: #777E91;
	font-family: "Poppins-Reg";
}

.attraction_section .attraction_images-section {
    margin-top: 48px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.attraction_section .attraction_images-section .attraction_image-block {
    position: relative;
    margin-bottom: 40px;
    margin-right: 20px;
    flex: 0 0 23%;
    font-family: "Poppins-Reg";
}

.attraction_section .attraction_images-section .attraction_image-block .attraction_image {
	width: 240px;
    height: 265px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}

.attraction_section .attraction_images-section .attraction_image-block .attraction_image-title {
	margin: 24px 0px 8px 0px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: "DmSans-Reg-bold";
}

.attraction_section .attraction_section-view {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	/* -webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center; */
	/* margin-top: 64px; */
}

.attraction_section .attraction_section-view .attraction_view-all-btn {
	padding: 10px 15px;
	border: 2px solid #E6E8EC;
	background-color: white;
	border-radius: 26px;
	font-size: 14px;
	font-family: "DmSans-Reg-bold";
	cursor: pointer;
}
.bg-seperator{
	background: #f7f7f7;
    padding-top: 60px;
    padding-bottom: 60px
}
.popular_destination-section {
	/* width: 1274px; */
	/* padding-right: 0px; */
	margin: 0 auto;
	/* margin-top: 80px; */
}

.popular_destination-section .popular_destination-head {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: baseline;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
			margin-bottom: 20px;
			flex-wrap: wrap;
}

.popular_destination-section .popular_destination-head .popular_destination-header .populer_destination-heading {
	color: #23262F;
	font-size: 48px;
	line-height: 56px;
	margin-bottom: 12px;
}

.popular_destination-section .popular_destination-head .popular_destination-header .bottom-line {
	width: 70px;
	background-color: #EC2051;
	height: 2px;
}

.popular_destination-section .popular_destination-head .popular_destination-links {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.popular_destination-section .popular_destination-head .popular_destination-links .popular_destination-left-arrow {
	width: 40px;
	height: 40px;
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	margin-right: 20px;
	cursor: pointer;
}

.popular_destination-section .popular_destination-head .popular_destination-links .popular_destination-right-arrow {
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.popular_destination-section .popular_destination-images-section {
	margin-top: 48px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;   
    flex-wrap: wrap;
    justify-content: start;
}

.popular_destination-section .popular_destination-images-section .popular_destination-card {
	position: relative;
    margin-bottom: 40px; 
    margin-right: 20px;
    flex: 0 0 23%;
	font-family: "Poppins-Reg";
}

.popular_destination-section .popular_destination-images-section .popular_destination-card .destination-bg {
	width: 265px;
    height: 265px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}
.popular_destination-section .popular_destination-images-section .popular_destination-card .destination-heading{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: "DmSans-Reg-bold";
}
.popular_destination-section .popular_destination-images-section .popular_destination-card .destination-heading {
	margin: 24px 0px 8px 0px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: "DmSans-Reg-bold";
}

.popular_destination-section .popular_destination-images-section .popular_destination-card .destination-sub-heading {
	color: #777E90;
}

/* .popular_destination-section .popular_destination-show {
	margin-top: 48px;
} */

.popular_destination-section .popular_destination-show .popular-destination-show-more-btn {
	color: #23262F;
	padding: 10px 15px;
    border: 2px solid #E6E8EC;
    background-color: white;
}

.gallery_section {
	margin-top: 64px;
	background-color: #1D1618;
	width: 100%;
	padding-top: 64px;
	padding-bottom: 64px;
}

.gallery_section .gallery_section-content {
	width: 1128px;
	margin: 0 auto;
}

.gallery_section .gallery_section-content .gallery_section-header {
	color: white;
	margin-bottom: 60px;
}

.gallery_section .gallery_section-content .gallery_section-header .gallery_section-heading {
	font-size: 48px;
	margin-bottom: 12px;
	line-height: 58px;
}

.gallery_section .gallery_section-content .gallery_sections-collage {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.gallery_section .gallery_section-content .gallery_sections-collage .gallery_video-sec {
	margin-right: 8px;
	border-radius: 16px;
}

.gallery_section .gallery_section-content .gallery_sections-collage .gallery_video-sec .gallery-video {
	width: 572px;
	height: 540px;
}

.gallery_section .gallery_section-content .gallery_sections-collage .gallery-images-sec {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.gallery_section .gallery_section-content .gallery_sections-collage .gallery-images-sec .gallery-image {
	width: 266px;
	height: 266px;
	border-radius: 16px;
	margin: 8px;
	margin-top: 0px;
	margin-left: 0px;
}

.visualised_section {
	margin-top: 64px;
}

.visualised_section .visualised_head {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	/* -webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center; */
			margin-bottom: 20px;
}

.visualised_section .visualised_head .visualised_header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/* -webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center; */
}

.visualised_section .visualised_head .visulised-sub-heading {
	color: #777E91;
	font-family: "Poppins-Reg";
	width: 544px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.visualised_section .discover_section-cards {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	margin-top: 20px;
	min-width: -webkit-fit-content;
	min-width: fit-content;
}

.visualised_section .discover_section-cards .discover_sec-card {
	padding: 24px 24px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-right: 16px;
	font-family: "Poppins-Reg";
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	background-color: #F3F3F3;
	border-radius: 16px;
	margin: 0px 12px;
	color: #23262F;
	cursor: pointer;
	width: 240px;
}

.visualised_section .discover_section-cards .discover_sec-card:first-child {
	margin-left: 0px;
}

.visualised_section .discover_section-cards .discover_sec-card .discover-number {
	color: #23262F;
	opacity: 0.5;
	line-height: 32px;
}

.visualised_section .discover_section-cards .discover_sec-card .discover-text {
	font-size: 16px;
	color: #23262F;
	opacity: 0.5;
}

.visualised_section .discover_section-cards .discover-aactive-card {
	background-color: #EC2051;
	box-shadow: 0px 12px 24px -16px rgba(236, 32, 81, 0.25);
	border-radius: 16px;
	color: white !important;
}

.visualised_section .discover_section-cards .discover-aactive-card .discover-number,
.visualised_section .discover_section-cards .discover-aactive-card .discover-text {
	color: #ffff;
	opacity: 1;
}

.visualised_section .visualisation-filters {
	margin-top: 20px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}

.visualised_section .visualisation-filters .state-filter {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	color: #1D1618;
}

.visualised_section .visualisation-filters .state-filter .state-filter-label {
	font-size: 14px;
}

.visualised_section .visualisation-filters .state-filter .state-filter-dropdown {
	border: 1px solid #E6E8EC;
	padding: 10px 16px;
	padding-right: 20px;
	width: 215px;
	margin-right: 10px;
	font-size: 16px;
	font-family: "DmSans-Reg-bold";
	cursor: pointer;
	border-radius: 6px;
	color: #1D1618;
	font-family: "Poppins-Reg-bold";
}

.visualised_section .visualisation-graph {
	width: 1120px;
}

.visualised_section .visual-bar-graph {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	margin-top: 20px;
}

.visualised_section .visual-bar-graph .progress-bar .visual-progress-bar {
	width: 353px;
}

.visualised_section .visual-bar-graph .progress-bar-result {
	margin-left: 84px;
}

.visualised_section .visual-bar-graph .progress-bar-result .bar-graph-result {
	width: 684px;
}

.events_section {
	margin-top: 50px;
	/* padding-bottom: 56px; */
}

.events_section .events_section-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.events_section .events_section-header .event_section-fields {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	padding-right: 47px;

}


.our_partners-section .partners-logos-sections { 
	display: flex !important;
}

.events_section .events_section-header .event_section-fields .keywords-dropdowns {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 1px solid #E6E8EC;
	border-radius: 12px;
	font-size: 14px;
	width: 256px;
	height: 48px;
	font-family: "Poppins-Reg";
	cursor: pointer;
}

.events_section .events_section-header .event_section-fields .keywords-dropdowns .keyword-dropdown-icon {
	width: 32px;
}

.events_section .events_section-header .event_section-fields .keywords-dropdowns .dropdown-text {
	-webkit-appearance: none;
	appearance: none; /* Some browsers will not display the caret when using calc, so we put the fallback first */
	background: url("../../assets/images/down-arrow.png") white no-repeat 98.5% !important; /* !important used for overriding all other customisations */
	background: url("../../assets/images/down-arrow.png") white no-repeat calc(100% - 10px) !important; /* Better placement regardless of input width */
	background-size: 32px 32px;
	width: 100%;
	height: 100%;
	padding: 9px 16px;
	border-radius: 90px;
}

.events_section .events_section-header .event_section-fields .date-field {
	width: 256px;
	height: 48px;
	color: #777E90;
	border: 1px solid #E6E8EC;
	border-radius: 12px;
	padding: 12px 14px 12px 16px;
	font-family: "Poppins-Reg";
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-left: 10px;
	cursor: pointer;
}

.events_section .events_section-header .event_section-fields .date-field .date-field-text {
	color: #23262F;
	opacity: 0.5;
	width: 100%;
	border: unset;
	-webkit-appearance: none;
	        appearance: none;
}

.events_section .events_section-header .event_section-fields .date-field .calendar-img {
	width: 24px;
	height: 24px;
	opacity: 1;
}

.events_section .events_images-section {
	margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.events_section .events_images-section .events_images-card {
    position: relative;
    margin-bottom: 40px;
    margin-right: 20px;
    /* flex: 0 0 30%; */
	width: 400px;
	height: 420px;
    border: 1px solid #E6E8EC;
	background-color: #fff;
    border-radius: 16px;
    font-family: "Poppins-Reg";
}

.events_section .events_images-section .events_images-card .events_images-bg {
	border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    width: 100%;
    height: 265px;
    object-fit: cover;
    position: relative;
}

.events_section .events_images-section .events_images-card .events-card-heading {
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 90%;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 10px auto 0 auto;
    font-family: "DmSans-Reg-bold";
}

.events_section .events_images-section .events_images-card .event-card-sub-heading {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 8px;
	justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 12px;
    min-height: 70px;
    /* align-items: center; */
}

.events_section .events_images-section .events_images-card .event-card-sub-heading .event-location,
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-date {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #777E91;
	font-size: 12px;
	margin-right: 16px;
}
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-location .location-text,
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-date .date-text{
	margin:0;
}
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-location .location-icon,
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-date .location-icon {
	width: 13px;
	height: 13px;
	margin-right: 10px;
}

.events_section .events_images-section .events_images-card .event-card-sub-heading .event-location .date-icon,
.events_section .events_images-section .events_images-card .event-card-sub-heading .event-date .date-icon {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.events_section .event_images-view-all {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: start;
	    -ms-flex-pack: start;
	        justify-content: start;
	/* margin-top: 48px; */
}

.events_section .event_images-view-all .view-all-btn {
	color: #23262F;
	font-size: 16px;
	/* changed width style */
	width: auto;
	padding: 10px 15px;
    border: 2px solid #E6E8EC;
    background-color: white;
}

.what-others-say-section {
	margin-top: 64px;
}

.what-others-say-section .others-template {
	background-color: #E0EEF7;
	padding: 42px;
	margin-top: 42px;
}

.what-others-say-section .others-template .template-content {
	width: 447px;
	font-size: 19px;
	line-height: 28px;
	font-family: "Poppins-Reg";
	color: #23262F;
}

.what-others-say-section .others-template .template-content-user {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 25px;
	font-size: 14px;
	font-family: "Poppins-Reg";
}

.what-others-say-section .others-template .template-content-user .quotes-img {
	width: 20px;
	height: 20px;
	margin-right: 14px;
}

.what-others-say-section .others-template .template-content-user .template-user-name {
	margin-right: 26px;
	color: #23262F;
}

.what-others-say-section .others-template .template-content-user .template-user-designation {
	color: #777E90;
}

.what-others-say-section .users-details {
	margin-top: 42px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.what-others-say-section .users-details .users-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 256px;
	margin-right: 32px;
	padding-bottom: 24px;
	-webkit-filter: opacity(0.5);
	        filter: opacity(0.5);
	cursor: pointer;
}

.what-others-say-section .users-details .users-card .user-img {
	width: 48px;
	height: 48px;
	margin-right: 16px;
}

.what-others-say-section .users-details .users-card .users-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: "Poppins-Reg";
}

.what-others-say-section .users-details .users-card .users-content .user-name {
	color: #23262F;
}

.what-others-say-section .users-details .users-card .users-content .user-designation {
	margin-top: 0px;
	line-height: 18px;
}

.what-others-say-section .users-details .user-active-card {
	border-bottom: 2px solid #3366C1;
	-webkit-filter: opacity(1);
	        filter: opacity(1);
}

.our_partners-section {
	margin-top: 80px;  
	margin-left: auto;
	margin-right: auto;
	border-radius: 24px;
	padding-bottom: 30px;
}
.our_partners-section .our_partners-subsection{
	border-radius: 24px;
    margin-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 10px #ddd;
}
.our_partners-section .our_partners-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
			padding-top: 10px;
}
.our_partners-header1{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
 
}
.our_partners-section .our_partners-tabs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	margin-top: 24px;
}

.our_partners-section .our_partners-tabs .our_partners-links {
	font-size: 14px;
	color: #777E90;
	margin-right: 24px;
	text-decoration: none;
	cursor: pointer;
}

.our_partners-section .our_partners-tabs .active-link {
	background-color: #353945;
	border-radius: 16px;
	color: #FCFCFD;
	padding: 2px 14px;
}

.our_partners-section .partners-logos-sections {
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.our_partners-section .partners-logos-sections .partner-card {
	/* width: 180px; */
	/* padding: 8px 26px 24px 26px; */
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: white;
	border-radius: 16px;
	margin-right: 44px;
	margin-top: 50px;
	/* min-height: 176px; */
}

.our_partners-section .partners-logos-sections .partner-card .partner-logo {
	width: 150px ;
}

.our_partners-section .partners-logos-sections .partner-card .partner-name {
	width: 128px;
	font-size: 16px;
	text-align: center;
	margin-top: 16px;
	padding: 0px 6px;
	font-family: "Poppins-Reg";
	color: #23262F;
}

.our_services-card-section2 {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 124px;
	width: 100%;
}

.our_service-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 31.1% !important;
	margin: 0 1.1% !important;
}

.our_services-cards-sec {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	width: 1148px;
	margin: 0 auto;
}

.dropdown-text {
	color: #23262F;
	border: none;
	-webkit-appearance: none;
	        appearance: none;
	font-size: 14px;
	font-family: "Poppins-Reg";
	width: 100%;
	cursor: pointer;
}

::-webkit-calendar-picker-indicator {
	color: rgba(0, 0, 0, 0);
	opacity: 1;
	background-image: url("../../assets/images/cal.png");
	width: 24px;
	height: 24px;
	cursor: pointer;
	border-radius: 50%;
	margin-left: .5rem;
}

.date-field-text:hover {
	border: 1px solid transparent !important;
}

.dropdown-text {
	-webkit-appearance: none;
	appearance: none; /* Some browsers will not display the caret when using calc, so we put the fallback first */
	background: url("../../assets/images/down-arrow.png") white no-repeat 98.5% !important; /* !important used for overriding all other customisations */
	background: url("../../assets/images/down-arrow.png") white no-repeat calc(100% - 10px) !important; /* Better placement regardless of input width */
	background-size: 32px 32px;
	width: 100%;
	height: 100%;
	padding: 9px 16px;
	border-radius: 90px;
}

.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons inside the tab */

.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

/* Change background color of buttons on hover */

.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
	color: #EC2051;
}
.banner-sec-nav .nav-list{
	border-bottom: 2px solid transparent;
}
.banner-sec-nav .nav-list.active {
	color: #EC2051;
	border-bottom: 2px solid #EC2051;
}

.banner-sec-nav .nav-list.active .nav-active-icon {
	display: block !important;
}

.banner-sec-nav .nav-list.active .nav-icon {
	display: none;
}

/* Style the tab content */

.tabcontent {
	/*display: none;*/
	border: none;
}

.navcontent {
	display: none;
	border: none;
}

.usercontent {
	/*display: none;*/
	border: none;
}

#units {
	display: block;
}

.discover-aactive-card {
	background-color: #EC2051;
	box-shadow: -2px 33px 20px -19px rgba(236, 32, 81, 0.25);
	border-radius: 16px;
	color: white !important;
}

.discover-aactive-card .discover-text {
	color: #ffff;
	opacity: 1;
}

.discover-aactive-card .discover-number {
	color: #fff;
	opacity: 1;
}

#accomdation {
	display: block;
}

#rishi {
	display: block;
}

#state {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.user-active-card {
	border-bottom: 2px solid #3366C1;
	-webkit-filter: opacity(1);
	        filter: opacity(1);
}

.logocontent {
	display: none;
	border: none;
}

.nav-active-icon {
	display: none !important;
}

.slick-dots {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: absolute;
	width: 100%;
	bottom: -5px !important;
	margin: 0;
	padding: 1rem 0;
	list-style-type: none;
	z-index: 10;
	left: 0;
	height: 6px;
}

.slick-dots li {
	margin: 0 0.25rem;
}

.slick-dots li button {
	display: block;
	width: 14px !important;
	height: 6px !important;
	padding: 0 !important;
	/* chnaged dot color */
	border: 0.5px solid #EC2051 !important;
	border-radius: 20px !important;
	background-color: #FFFFFF !important;
	text-indent: -9999px;
}

.slick-dots li.slick-active button {
	/* chnaged dot color */

	background-color: #EC2051 !important;
}

.home-page-banner {
	margin-bottom: 100px !important;
}

.slick-initialized .slick-slide {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	flex-direction: column;
	height: auto;
}
/* .slick-initialized .slick-slide:hover{
	border-bottom: 2px solid #f6ccd6;
} */
/* added new styles */
.nav-arrrow-right {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	margin-right: 20px;
}

.nav-arrow-left {
	-webkit-transform: rotate(1deg);
	        transform: rotate(1deg);
}
/* added new styles */

.nav-slicks-arrows {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-top: 10px;
	top: 0;
	width: 100%;
	left: 33px;
}
/* added new styles */

.nav-slicks-arrows img {
	cursor: pointer;
}

#un-click-left,
#un-click-right {
	display: none !important;
}

#click-left {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

#un-click-right {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	margin-left: 20px;
}

.read-more {
	color: #EC2051;
}

.content-page {
	width: 100%;
	padding: 20px 0px;
}

.content-page .content-page-banner {
	width: 100%;
	/* background-image: url("../../assets/images/content-page-bg.png");
	height: 254px; */
	padding-top: 70px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.content-page .listing-page .listing_section{
    width: 916px;
}
.content-page .listing-page{
    padding: 0;
}
.content-page .content-page-banner .content-page-sub-banner {
	width: 1000px;
	padding: 12px 40px;
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	/* background: linear-gradient(37deg, #FCFCFD 36.52%, rgba(252, 252, 253, 0.83) 98.8%);
	-webkit-backdrop-filter: blur(32px);
	        backdrop-filter: blur(32px); */
}

.content-page .content-page-banner .content-page-sub-banner .banner-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .home-btn {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #23262F;
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .home-btn .home-btn-arrow {
	width: 4px;
	height: 6px;
	margin-right: 18px;
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	color: #777E91;
	font-family: "DmSans-Reg-bold";
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .banner-breadcrumbs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-decoration: none;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .banner-breadcrumbs .breadcrumb-arrow {
	width: 5px;
	height: 10px;
	margin-right: 17px;
	margin-left: 17px;
}

.content-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .active-breadcrumb {
	color: #B1B5C3;
}

.content-page .content-page-banner .content-page-sub-banner .banner-sub-heading {
	color: #777E90;
	font-size: 16px;
	font-family: "Poppins-Reg";
}

.content-page .content-page-nav-section {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-left: 183px;
	margin-top: 24px;
	width: 1366px;
	margin-left: auto;
	margin-right: auto;
}

.content-page .content-page-nav-section .nav-links {
	color: #23262F;
	opacity: 0.5;
	font-family: "Poppins-Reg";
	border-radius: 8px;
	background-color: #F3F3F3;
	padding: 20px 24px;
	margin-right: 24px;
	font-size: 16px;
	white-space: nowrap;
	width: 230px;
}

.content-page .content-page-nav-section .nac-active-link {
	background-color: #EC2051;
	color: white;
	box-shadow: -2px 33px 20px -19px rgba(236, 32, 81, 0.25);
	opacity: 1;
}

.content-page .content-QA {
	width: 1000px;
	margin: auto;
	margin-top: 66px;
	padding: 40px;
	padding-top: 0px;
	color: #353945;
}

.content-page .content-QA .content-qa-heading {
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 24px;
	font-family: "DmSans-Reg-bold";
}

.content-page .content-QA .content-block {
	margin-top: 24px;
}

.content-page .content-QA .content-block .content-header-text {
	font-size: 26px;
	margin-bottom: 8px;
	font-family: "Poppins-Semi-bold";
	margin-top: 24px;
}

.content-page .content-QA .content-block .content-para {
	font-family: "Poppins-Reg";
	font-size: 16px;
	color: #353945;
}

.content-page .content-QA .content-check-in-img {
	width: 916px;
	margin: 24px 0px;
}

.content-page .content-mid-banner {
	width: 100%;
	height: 440px;
}

.page-b {
	background-color: #F4F5F6 !important;
	/* padding-top: 0px !important; */
	background-image: unset !important;
	background-image: url("./assets/images/img.png") !important;
	background-image: none !important;
}

.page-b .content-page-sub-banner {
	background: transparent !important; 
	border-radius: unset !important;
	padding-top: 16px !important;
	height: inherit;
}

.page-b .content-page-sub-banner .banner-heading {
	margin-top: 52px !important;
	font-family: "DmSans-Reg-bold";
}

.page-b .home-btn {
	background-color: #F4F5F6 !important;
}

.content-pagec-section .pagec-para {
	width: 916px;
	margin-left: auto;
	margin-right: auto;
	/* margin-top: 42px; */
	font-size: 16px;
	color: #353945;
	font-family: "Poppins-Reg";
}

.content-pagec-section .pagec-para:last-child {
	margin-bottom: 22px;
}
.content-pagec-section iframe{
	border:none;
	margin-top:20px
}
.listing-page {
	margin: auto;
	padding: 20px 0px;
}

.listing-page .page-b {
	background-color: #F4F5F6 !important;
	padding-top: 75px !important;
}

.listing-page .page-b .content-page-sub-banner {
	background-color: transparent !important;
	border-radius: unset !important;
	padding-top: 16px;
}

.listing-page .page-b .content-page-sub-banner .banner-heading {
	margin-top: 35px !important;
	font-family: "DmSans-Reg-bold";
}

.listing-page .content-page-banner {
	width: 100%;
	/* height: 254px; */
	padding-top: 52px;
}

.listing-page .content-page-banner .content-page-sub-banner {
	width: 1000px;
	padding: 12px 40px;
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .home-btn {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #23262F;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .home-btn .home-btn-arrow {
	width: 4px;
	height: 6px;
	margin-right: 18px;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	color: #777E91;
	font-family: "DmSans-Reg-bold";
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .banner-breadcrumbs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-decoration: none;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .banner-breadcrumbs .breadcrumb-arrow {
	width: 5px;
	height: 10px;
	margin-right: 17px;
	margin-left: 17px;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-header .breadcrumbs .active-breadcrumb {
	color: #B1B5C3;
}

.listing-page .content-page-banner .content-page-sub-banner .banner-sub-heading {
	font-family: "Poppins-Reg";
	color: #777E90;
	font-size: 16px;
}

.listing-page .nav-content .banner-sec-nav {
	padding-left: 40px;
	padding-bottom: 0px;
}

.listing-page .nav-content .banner-sec-nav .nav-list {
	margin-right: 40px;
	font-family: "DmSans-Reg-bold";
	margin-bottom: 15px;
}

.listing-page .nav-content .banner-sec-nav .nav-active {
	border-bottom: 2px solid #EC2051;
}

.listing-page .filters-section {
	background-color: #E0EEF7;
	padding: 28px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.listing-page .filters-section .filter-btn {
	padding: 16px 24px;
	color: white;
	background-color: #3366C1;
	border-radius: 90px;
	cursor: pointer;
	border: none;
	height: 48px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-family: "DmSans-Reg";
}

.listing-page .filters-section .filter-btn .filter-icon {
	width: 13px;
	height: 13px;
	margin-left: 14px;
}

.listing-page .filters-section .selected-filters {
	margin-left: 10px;
	margin-right: 10px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	width: 747px;
	height: auto;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	font-family: "Poppins-Reg";
}

.listing-page .filters-section .selected-filters .selected-box {
	border: 1px solid #3366C1;
	border-radius: 20px;
	display: inline-block;
	padding: 1px 8px;
	font-size: 12px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 16px;
	height: 28px;
	margin-top: 8px;
	color: #1D1618;
}

.listing-page .filters-section .selected-filters .selected-box .selected-box-search {
	color: rgba(29, 22, 24, 0.5);
}

.listing-page .filters-section .selected-filters .selected-box .filter-close-btn {
	width: 13px;
	height: 13px;
	margin-left: 10px;
	cursor: pointer;
}

.listing-page .listing_section {
	margin-top: 14px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.listing-page .listing_section .listing-heading-group{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center; 
}
.listing-page .listing_section .listing-heading {
	font-size: 32px;
	font-family: "DmSans-Reg-bold";
	margin-bottom: 32px;
	color: #23262F;
}

.listing-page .listing_section .listing-block {
	border: 1px solid #E6E8EC;
	border-radius: 26px;
	margin-top: 16px;
	margin-bottom: 16px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 120px;
}

.listing-page .listing_section .listing-block .hotel-details {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 24px;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: "Poppins-Reg";
	height: -webkit-fit-content;
	height: fit-content;
	flex: 0 0 70%;
}

.listing-page .listing_section .listing-block .hotel-details .hotel-heading {
	color: #141416;
	font-size: 16px;
	font-family: "Poppins-Semi-bold";
	margin-bottom: 0;
}

.listing-page .listing_section .listing-block .hotel-details .location-details {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: #777E91;
	font-size: 12px;
	font-family: "Poppins-Reg";
	margin-top: 8px;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	line-height: 20px; 
    justify-content: space-between;
}
.listing-page .listing_section .listing-block .hotel-details .location-details .category-name{
	margin: 0;
    color: #000;
}
.listing-page .listing_section .listing-block .hotel-details .location-details .loaction-icon {
	width: 13px;
	height: 13px;
}

.listing-page .listing_section .listing-block .hotel-details .location-details .address {
	/* width: 230px; */
	margin: 0px 10px;
	font-size: 14px;
}
.listing-page .listing_section .listing-block .hotel-details .location-details .location-details-address{
	display: flex;
    /* align-items: center; */
	flex: 0 0 65%;
}

.listing-page .listing_section .listing-block .hotel-details .location-details .share-location {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	/* margin-top: -21px; */
	font-size: 14px;
}

.listing-page .listing_section .listing-block .hotel-details .location-details .share-location .hotel-icon {
	width: 15px;
	/* margin-left: 12px;
	margin-right: 8px; */
}

.listing-page .listing_section .listing-block .hotel-details .active-hotel {
	color: #3366C1;
}

.listing-page .listing_section .listing-block .contact-details {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
			justify-content: center;
	background-color: #F4F5F6;
	/* display: inline-block; */
	padding: 16px;
	font-size: 14px;
	color: #777E91;
	font-family: "Poppins-Reg";
	min-width: 303px;
	border-top-right-radius: 26px;
	border-bottom-right-radius: 26px;
	/* height: 120px; */
	width: 300px;
}

.listing-page .listing_section .listing-block .contact-details .mail-details {
	margin-bottom: 8px;
	word-break: break-all;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.listing-page .listing_section .listing-block .contact-details .mail-details.arrow-icon{
	margin-top:auto;
}
.listing-page .listing_section .listing-block .contact-details .mail-details.arrow-icon .common_btn-style{
	padding: 4px 15px;
}
.listing-page .listing_section .listing-block .contact-details .mail-details.arrow-icon a img { 
		width: 60px; 
}
.listing-page .listing_section .listing-block .contact-details .mail-details .contact-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.listing-page .listing_section .hotel-pagination {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 48px;
	font-family: "Poppins-Reg";
	font-size: 14px;
}

.listing-page .listing_section .hotel-pagination .page-no {
	color: #777E91;
}

.listing-page .listing_section .hotel-pagination .pagination-block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.listing-page .listing_section .hotel-pagination .pagination-block .page-numbers {
	width: 32px;
	height: 32px;
	border: 1px solid #777E91;
	color: #777E91;
	border-radius: 32px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	margin-right: 5px;
}

.listing-page .listing_section .hotel-pagination .pagination-block .active-page {
	background-color: #3366C1;
	color: white;
	border: none;
}

.listing-page .listing_section .slider-section {
	margin-top: 48px;
}

.listing-page .listing_section .slider-section .slider-header {
	font-size: 24px;
	font-family: "DmSans-Reg-bold";
	margin-bottom: 32px;
	color: #353945;
	font-family: "Poppins-Semi-bold";
}

.listing-page .listing_section .slider-section .hotel-corousel {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.listing-page .listing_section .slider-section .hotel-corousel .hotel-card {
	width: 290px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-right: 28px;
}

.listing-page .listing_section .slider-section .hotel-corousel .hotel-card .hotel-img {
	height: 160px;
	width: 290px;
}

.listing-page .listing_section .slider-section .hotel-corousel .hotel-card .hotel-text {
	font-size: 24px;
	line-height: 32px;
	margin-top: 8px;
	font-family: "Poppins-Semi-bold";
	color: #23262F;
}

.listing-page .listing_section .slider-section .hotel-corousel .hotel-card .hotel-properties {
	font-size: 12px;
	color: #777E91;
	font-family: "Poppins-Reg";
}

.listing-page .listing_section .slider-section .corousel-dots {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 32px;
}

.listing-page .listing_section .slider-section .corousel-dots .dots {
	width: 8px;
	height: 8px;
	border: 1px solid #777E91;
	border-radius: 8px;
	margin-right: 12px;
}

.listing-page .listing_section .slider-section .corousel-dots .active-dot {
	background-color: #3366C1;
	border: none;
}
.showcasing-page.listing-page .listing_section .listing-block .hotel-details {
	flex: initial; 
	padding:0px;
}
 
 
.show-cases .listing-block {
	height: unset !important;
}

.show-cases .listing-block .listing-block-img {
	/* border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;  */
	border-radius: 26px;
	width: 300px;
	height: 250px;
    object-fit: cover;
}

.show-cases .listing-block .hotel-details {
	/* padding: 24px 32px !important;
	height: unset !important; */
	-webkit-justify-content: center !important;
	    -ms-flex-pack: center !important;
	        justify-content: center !important;
}

.show-cases .listing-block .hotel-details .hotel-review {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 8px;
	font-size: 12px;
	font-family: "Poppins-Semi-bold";
}

.show-cases .listing-block .hotel-details .hotel-review .review-text {
	color: #777E91;
	margin-left: 8px;
	font-family: "Poppins-Reg";
}

.show-cases .listing-block .hotel-details .review-img {
	width: 12px;
	height: 12px;
	margin-right: 4px;
}

.show-cases .listing-block .hotel-details .assesed-images-block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.show-cases .listing-block .hotel-details .assesed-img {
	width: 80px;
	margin-top: 8px;
	margin-right: 12px;
}

.show-cases .listing-block .address {
	width: 273px !important;
}

.show-cases .contact-details {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-justify-content: center !important;
	    -ms-flex-pack: center !important;
	        justify-content: center !important;
	min-width: 263px !important;
	height: unset !important;
}

.destination-page .destinations {
	width: 880px !important;
	margin-left: auto;
	margin-right: auto;
}

.destination-page .destinations .destinations_block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.destination-page .destinations .destinations_block .distination-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-right: 16px;
	font-family: "Poppins-Reg";
	width: 31.5% !important;
	margin-bottom: 32px;
}

.destination-page .destinations .destinations_block .distination-card .destination-img {
	border-radius: 24px;
}

.destination-page .destinations .destinations_block .distination-card .destination-text {
	color: #23262F;
	font-size: 24px;
	margin-top: 21px;
	margin-bottom: 8px;
}

.destination-page .destinations .destinations_block .distination-card .location {
	color: #777E90;
	font-size: 12px;
}

.destination-page .hotel-pagination {
	margin-top: 16px !important;
}

.attractions-page .attractions {
	width: 880px !important;
	margin-left: auto;
	margin-right: auto;
}

.attractions-page .attractions .attractions_block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.attractions-page .attractions .attractions_block .attractions-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-right: 16px;
	font-family: "Poppins-Reg";
	width: 31.5% !important;
	margin-bottom: 32px;
}

.attractions-page .attractions .attractions_block .attractions-card .attractions-img {
	border-radius: 16px;
}

.attractions-page .attractions .attractions_block .attractions-card .attractions-info {
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #23262F;
	margin-top: 20px;
}

.attractions-page .hotel-pagination {
	margin-top: 16px !important;
}

.events-page .events {
	width: 880px !important;
	margin-left: auto;
	margin-right: auto;
}

.events-page .events .events_block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
			justify-content: space-between;
}

.events-page .events .events_block .events-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/* margin-right: 16px; */
	font-family: "Poppins-Reg";
	width: 31.5% !important;
	margin-bottom: 32px;
	/* background: #FCFCFD; */
	border: 1px solid #E6E8EC;
	border-radius: 24px;
}
.events-page .events .events_block .events-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
}

.events-page .events .events_block .events-card .events-img {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.events-page .events .events_block .events-card .events-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #141416;
	margin: 10px;
	/* margin-bottom: 8px; */
}

.events-page .events .events_block .events-card .event-details-section {
	margin: 0 18px;
	/* padding-bottom: 24px; */
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.events-page .events .events_block .events-card .event-details-section .location-details,
.events-page .events .events_block .events-card .event-details-section .date-details {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
			align-items: baseline;
}

.events-page .events .events_block .events-card .event-details-section .location-text,
.events-page .events .events_block .events-card .event-details-section .date-text {
	font-size: 12px;
	line-height: 20px;
	color: #777E91;
}

.events-page .events .events_block .events-card .event-details-section .location-icon,
.events-page .events .events_block .events-card .event-details-section .date-icon {
	margin-right: 10px;
	height: 13px;
	width: 13px;
	border-radius: 0px;
}

.events-page .events .events_block .events-card .event-details-section .location-details {
	margin-right: 12px;
}

.events-page .hotel-pagination {
	margin-top: 16px !important;
}
/* destination-list css */
.events-page.destination-list .events .events_block .events-card,
.events-page.attraction-list .events .events_block .events-card{
	border:none;
}
.events-page.destination-list .events .events_block .events-card img{
    height: 250px; 
    border-radius: 24px;
}
.events-page.destination-list .events .events_block .events-card .events-text{
	margin:12px
}
.events-page.destination-list .events .events_block .events-card,
.events-page.attraction-list .events .events_block .events-card{
	margin-bottom: 24px;
}
/* destination-list css */
.events-page.attraction-list .events .events_block .events-card img{
    height: 350px; 
    border-radius: 24px;
}
.events-page.attraction-list .events .events_block .events-card .events-text{ 
	margin: 12px;
    text-align: center;
}
/* added new modal styles */
/* .modal { 
	position: fixed; 
	z-index: 1; 
	padding-top: 20px;  
	left: 0;
	top: 0;
	width: 100%;  
	height: 100%;  
	overflow: auto; 
	background-color: black;  
	background-color: rgba(0, 0, 0, 0.4); 
} */

/* Modal Content */

.modal-content {
	position: relative;
	background-color: #f3f3f3;;
	margin: auto;
	padding: 12px 32px 26px 32px;
	border: 1px solid #888;
	/* width: 34.6%; */
	max-height: 600px;
	overflow-y: auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
}

/* Add Animation */

/* The Close Button */

.close {
	color: #777E90;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	font-family: "Poppins-Reg";
	font-size: 24px;
	padding: 10px 0;
	border-bottom: none; 
}
.modal-header .close,
.modal-header .modal-title{
	opacity: 1;
	color: #000;
}
.modal-body {
	background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}
.modal-body hr{
	margin-top: 10px;
    margin-bottom: 10px;
}
.modal-body label{
	font-weight: 500;
    font-size: 14px;
    color: #555;
}
.modal-footer { 
    text-align: center;
	border-top:none;
}
.modal-footer .btn-clear{
	background-color: transparent;
    padding: 14px 15px;
    color: #555;
    border: 2px solid #E6E8EC;
}
.modal-content {
	/* background-color: #F3F3F3;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between; */
}

.modal-content .modal-search-keyword-block {
	background-color: white;
	padding: 20px 12px;
	margin: 13px 0px;
}

.modal-content .modal-search-keyword-block .modal-srch-key-txt {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-family: "Poppins-Semi-bold";
}

.modal-content .modal-search-keyword-block .Keyword-input {
	margin-top: 16px;
}

.modal-content .modal-search-keyword-block .modal-select-block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 16px;
	font-family: "DmSans-Reg";
}

.modal-content .modal-search-keyword-block .modal-select-block .offer-check-box-container {
	border: 1px solid #D2D0D1;
	border-radius: 4px;
	width: 100%;
	height: 42px;
	padding: 0px 12px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 10px;
}

.modal-content .modal-search-keyword-block .modal-select-block .offer-check-box-container .offer-check-box {
	width: 20px;
	height: 20px;
	border: 1px solid #8E8A8B;
	cursor: pointer;
}

.modal-content .modal-search-keyword-block .modal-select-block .offer-check-box-container .checkbox-text {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.modal-content .modal-search-keyword-block .modal-select-block .offer-check-box-container .checkbox-text .offered-img {
	margin-left: 11px;
	margin-right: 9px;
}

.modal-content .service-offered-block {
	height: 230px;
	overflow-y: auto;
}

.modal-content .select-dropdown {
	cursor: pointer;
}

.modal-content .search-input-box,
.modal-content .select-dropdown {
	border: 1px solid #D2D0D1;
	border-radius: 4px;
	width: 100%;
	height: 42px;
	padding: 0px 12px;
}

.search-dropdown-icon,
.keyword-up-icon,
.search-dropup-icon {
	cursor: pointer;
}

.search-dropup-icon {
	display: none;
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.modal-filter-btn {
	border: 2px solid #777E91;
	border-radius: 90px;
	padding: 13px 24px;
	color: #777E91;
	min-width: 143px;
	font-size: 16px;
}

.modal-filter-btn:first-child {
	margin-right: 20px;
}

.modal-filter-btn:nth-child(2) {
	margin-right: 0px;
}

.modal-filter-btn:hover {
	background-color: #3366C1;
	border: none;
	color: white;
}

.modal-btns-block {
	margin-left: auto;
	margin-top: 8px;
}

.modal-content,
.service-offered-block { /* Track */ /* Handle */ /* Handle on hover */
}

.modal-content::-webkit-scrollbar,
.service-offered-block::-webkit-scrollbar {
	width: 2px;
}

.modal-content::-webkit-scrollbar-track,
.service-offered-block::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb,
.service-offered-block::-webkit-scrollbar-thumb {
	background: #888;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.service-offered-block::-webkit-scrollbar-thumb:hover {
	background: #555;
}
/* added new styles */

.details .details-page {
	background-color: white !important;
}

.details .details-page .content-page-sub-banner {
	background-color: white !important;
}

.details .review-text {
	color: #777E90;
}

.details .review-img {
	width: 20px;
	height: 18px;
	margin-right: 8px;
}

.details .rating-number {
	color: #23262F;
	margin-right: 8px;
}

.details .bottom-line {
	margin-top: 16px;
	margin-bottom: 18px;
}

.details .content-page-sub-banner {
	width: 1120px !important;
}

.details .banner-sub-heading {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.details .banner-sub-heading .review,
.details .banner-sub-heading .flag {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 20px;
}

.details .banner-sub-heading .review .flg-img,
.details .banner-sub-heading .flag .flg-img {
	margin-right: 8px;
}

.details .heading {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.details .heading .share-img {
	margin-bottom: 30px;
}

.details .details-page-banner {
	padding-left: 80px;
	margin-top: 38px;
}

.details .details-page-banner .details-bg {
	margin: auto;
}

.details .details-content-section {
	padding-left: 80px;
}

.details .details-page-content-section {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 80px;
	width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

.details .details-page-content-section .details-description {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 66.3%;
}

.details .details-page-content-section .details-description .details-paras {
	color: #777E90;
	font-family: "Poppins-Reg";
}

.details .details-page-content-section .details-description .details-paras .details-para {
	margin-bottom: 36px;
}

.details .details-page-content-section .details-description .amenities-section {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: "Poppins-Reg";
	margin-top: 64px;
}

.details .details-page-content-section .details-description .amenities-section .amenities-heading {
	font-size: 24px;
	color: #23262F;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	margin-top: 32px;
	color: #777E90;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block1 {
	padding-right: 55px;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block2 {
	padding-left: 80px;
	border-left: 1px solid lightgray;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block1,
.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block2 {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block1 .amenities,
.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block2 .amenities {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 24px;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block1 .amenities .amenity-icon,
.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block2 .amenities .amenity-icon {
	margin-right: 16px;
}

.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block1 .amenities:last-child,
.details .details-page-content-section .details-description .amenities-section .amenities-block .amenities-block2 .amenities:last-child {
	margin-bottom: 0px;
}

.details .details-page-content-section .details-description .amenities-section .amenities-btn {
	margin-top: 64px;
	color: #23262F;
	font-family: "DmSans-Reg";
}

.details .details-page-content-section .details-description .nearest-location {
	margin-top: 68px;
}

.details .details-page-content-section .details-description .nearest-location .nearest-heading {
	font-size: 24px;
	color: #23262F;
	margin-bottom: 32px;
}

.details .details-page-content-section .details-description .nearest-location .nearest-blocks {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.details .details-page-content-section .details-description .nearest-location .location-block {
	margin-right: 86px;
}

.details .details-page-content-section .details-description .nearest-location .location-block .location {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: #777E90;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 24px;
}

.details .details-page-content-section .details-description .nearest-location .location-block .location:last-child {
	margin-bottom: 0px;
}

.details .details-page-content-section .details-description .nearest-location .location-block .location .tick-img {
	margin-right: 16px;
	width: 12px;
	height: 8px;
}

.details .details-page-content-section .details-description .map-section {
	margin-top: 68px;
}

.details .details-page-content-section .details-description .review-section {
	margin-top: 48px;
}

.details .details-page-content-section .details-description .review-section .review-heading {
	font-size: 24px;
	color: #23262F;
	margin-bottom: 40px;
}

.details .details-page-content-section .details-description .review-section .serach-box {
	border: 2px solid #E6E8EC;
	border-radius: 16px;
	padding: 16px 24px;
	width: 100%;
	font-size: 16px;
	font-family: "Poppins-Reg";
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	height: 72px;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field {
	border: none;
	background-color: white;
	height: 24px;
	width: 75%;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field:hover {
	border: none !important;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field:focus {
	outline: none;
	box-shadow: none;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field ::-webkit-input-placeholder {
	color: #777E91;
	font-size: 16px;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field :-ms-input-placeholder {
	color: #777E91;
	font-size: 16px;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-field ::placeholder {
	color: #777E91;
	font-size: 16px;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-btn {
	padding: 12px 16px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #3366C1;
	color: #ffff;
	border-radius: 90px;
	font-size: 14px;
	border: none;
	height: 40px;
	cursor: pointer;
}

.details .details-page-content-section .details-description .review-section .serach-box .search-btn .arrow {
	margin-left: 15px;
}

.details .details-page-content-section .details-description .newest-reviews {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 48px;
}

.details .details-page-content-section .details-description .newest-reviews .review-heading {
	font-size: 24px;
	font-family: "Poppins-Semi-bold";
}

.details .details-page-content-section .details-description .newest-reviews .review-dropdown {
	border: 2px solid #E6E8EC;
	padding: 6px 8px 6px 16px;
	font-size: 14px;
	font-family: "Poppins-Reg";
	color: #23262F;
	border-radius: 12px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 160px;
}

.details .details-page-content-section .details-description .user-review {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	font-family: "Poppins-Reg";
	margin-top: 40px;
}

.details .details-page-content-section .details-description .user-review .user-img {
	width: 48px;
	height: 48px;
	margin-right: 20px;
}

.details .details-page-content-section .details-description .user-review .user-review-content .review-head {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 14px;
	font-family: "Poppins-Semi-bold";
}

.details .details-page-content-section .details-description .user-review .user-review-content .review-content {
	font-size: 14px;
	color: #353945;
	line-height: 24px;
	margin-top: 4px;
	margin-bottom: 8px;
}

.details .details-page-content-section .details-description .user-review .user-review-content .review-bottom {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: #777E91;
	font-size: 12px;
}

.details .details-page-content-section .details-description .user-review .user-review-content .review-bottom .review-links {
	color: #23262F;
}

.details .details-info-section {
	width: 29.5%;
	padding: 32px;
	border: 1px solid #E6E8EC;
	font-family: "Poppins-Reg";
	border-radius: 24px;
	height: -webkit-fit-content;
	height: fit-content;
}

.details .details-info-section .checkin-section {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	width: 100%;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 20px;
	background-color: #F4F5F6;
	border-radius: 24px;
}

.details .details-info-section .checkin-section .check-in-text {
	color: #777E91;
	font-size: 12px;
}

.details .details-info-section .checkin-section .check-sep-line {
	background-color: #E6E8EC;
	width: 1px;
	height: 48px;
	margin: 0 auto;
}

.details .details-info-section .contact-details {
	background: #F4F5F6;
	border-radius: 16px;
	padding: 30px 15px;
	width: 100%;
	color: #777E91;
	font-size: 14px;
	margin-top: 32px;
}

.details .details-info-section .contact-details .mail-details {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 8px;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.details .details-info-section .contact-details .mail-details:last-child {
	margin-bottom: 0px;
}

.details .details-info-section .contact-details .mail-details .mail-icon {
	margin-right: 8px;
	width: 16px;
	height: 16px;
}

.details .details-info-section .rooms-section {
	margin-top: 42px;
}

.details .details-info-section .rooms-section .rooms-heading {
	color: #23262F;
	font-size: 16px;
	margin-bottom: 22px;
}

.details .details-info-section .rooms-section .rooms {
	color: #141416;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 20px;
}

.details .details-info-section .rooms-section .rooms:last-child {
	margin-bottom: 0px;
}

.details .details-info-section .separater-line {
	width: 120px;
	height: 0px;
	border: 1px solid #B1B5C4;
	margin: 40px auto 45px auto;
}

.details .details-info-section .links-section .website-links {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 14px;
	padding: 14px 0px;
	border-bottom: 1px solid #B1B5C4;
}

@media (min-width: 1921px) {

.page-wrapper {
	width: 1921px;
	overflow: hidden;
	margin: auto;
}

}

@media (max-width: 1440px) {

.listing-page .filters-section .selected-filters {
	margin-right: 65px;
}

}

@media (max-width: 1366px) {

.listing-page .filters-section .selected-filters {
	margin-right: -30px;
}

}

@media (max-width: 1279px) {

.button-styles {
	font-size: 18px;
	padding: 0 20px;
	min-height: 50px;
}

}

@media (max-width: 769px) {

.tab-hide {
	display: none !important;
}

.tab-show {
	display: block !important;
}

.d-hide {
	display: none !important;
}

.d-show {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

/* input[type=text] {
	font-size: 18px;
} */

}

@media (max-width: 426px) {

.m-hide {
	display: none !important;
}

.m-show {
	display: block !important;
}

.mob-d-hide {
	display: none !important;
}

.mob-d-show {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.button-styles {
	font-size: 14px;
	min-width: 130px;
	min-height: 40px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
	padding-left: 30px;
}

[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	-webkit-transform: scale(0.8);
	        transform: scale(0.8);
}

[type="radio"]:checked + label:after {
	-webkit-transform: scale(0.8);
	        transform: scale(0.8);
}

.input-with-icon input {
	padding: 10px 12px;
}

.search-icon {
	margin-right: 15px;
	opacity: 0.5;
}

input[type=text] {
	font-size: 16px;
}

}

@-webkit-keyframes animatetop {

from {
	top: -300px;
	opacity: 0;
}

to {
	top: 0;
	opacity: 1;
}

}

@keyframes animatetop {

from {
	top: -300px;
	opacity: 0;
}

to {
	top: 0;
	opacity: 1;
}

}


/*# sourceMappingURL=maps/main.css.map */

.events-description{
	font-family: Sofia Pro;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	color: #1D1618;
	order: 1;
	align-self: stretch;
	flex-grow: 0;
	margin: 10px 5px;
}
/* new styles 27-07-2022 */
.d-none{
	display: none !important;
}
.subcategory-item{
	display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.subcategory-item .item{
	position: relative;
    margin-bottom: 40px;
	/* margin-top: 20px; */
	margin-right: 20px;
    flex: 0 0 23%;
}
.subcategory-item .item img{  
	width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
}
.subcategory-item .item .accomdation_hotel-header h3{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 250px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-family: "DmSans-Reg-bold";
}
@media ( max-width: 768px) { 
	.flex-container > div {
	  flex-basis: 34%;
	}
  }
  
  @media ( max-width: 320px) {
	.flex-container > div {
	  flex-basis: 51%;
	}
  }
  /* .accomdation_hotel-props{
	display: flex;
    justify-content: space-between;
  }
  .accomdation_hotel-props .link-1{
	display: flex;
    flex-direction: column;
  } */
.accomdation_hotel-props a{
	color: #717171;
    font-size: 13px;
    font-family: "Poppins-Reg";
}
.accomdation_hotel-props a:hover{
    color: #EC2051;
}
.discover_section-cards .slick-slide img{
	/* height: 100%; */
	margin-right: 4px;
	width: 20px;
    height: 20px;
    object-fit: contain;
}
.discover_section-cards .slick-slide{
	align-items: center;
	margin-right: 18px;
	font-size: 12px;
	color: #717171;
	cursor: pointer;
}
.discover_section-cards.slick-initialized .slick-slide:hover{
	border-bottom: 2px solid #f6ccd6;
}
.discover_section {
	margin-bottom: 15px;
}
.discover_section .discover_section-cards .discover-aactive-card .discover-text {
	color: #EC2051;
}
.discover_section .discover_section-cards .discover-aactive-card {
    background-color: transparent; 
    border-radius: 16px; 
}
.discover_section-filters{
	display: flex;
    align-items: center;
}
.discover_section-filters a{
	margin-top: 20px;
    border: 1px solid lightgray;;
    padding: 5px 15px;
    border-radius: 18px;
    font-size: 14px;
	display: flex;
	align-items: center;
}
.discover-filter-search a{   
	/* margin:0px; */
	border: 1px solid lightgray;;
    padding: 5px 15px;
    border-radius: 18px;
	box-shadow: 0px 5px 10px #f5f5f5;
    font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:0.2s ease;
	background: #fff;
}
.discover-filter-search a:hover{
	    box-shadow: 0px 5px 10px #ddd;
}
.discover-filter-search a span{
	margin-right: 5px;
	color: #a39a9a;
}
.discover-filter-search a .search-svg{
	height: 26px;
    width: 26px;
    line-height: 30px;
    background: red;
    border-radius: 30px;
    margin-right: 0;
}
.discover-filter-search a .search-svg svg{
	color: #fff;
	margin-top: 7px;
    margin-left: 7px;
}
.discover_section-filters .discover_section-slider{
	position: relative;
	width: 79%;
}

.discover_section-filters .discover_section-slider .discover_section-arrows {
    position: absolute;
    display: flex;
    bottom: 5px;
    right: 10px;
    cursor: pointer;
}
.discover_section-filters .discover_section-slider .discover_section-arrows img {
    width: 40px;
    padding: 5px;
}
.discover_section-filters a svg{
	margin-right: 5px;
}
.discover_section .discover_section-cards{
	min-width: inherit;
    width: 90%;
}
.gallery-btn{ 
	 text-align: center;
	 padding-top: 40px;
}
.slider-arrows{
	display: flex;
    margin-top: 20px; 
}
.slider-arrows img{
	width: 30px;
	margin-right: 10px;
	cursor: pointer;
}
/**
 * Modals ($modals)
 */

/* 1. Ensure this sits above everything when visible */
 .modal {
    /* position: absolute;
    z-index: 10000;  
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
	padding: 20px; */
}

.modal.is-visible {
    visibility: visible;
    display: block;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  /* transform: translateX(50%); */
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-nidhi .modal-wrapper {
	position: absolute;
    z-index: 9999;
    display: flex;
    width: 98%;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 35%);
    flex-direction: column;
	padding: 20px;
}

.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal-nidhi .modal-header {
    border: none;
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px;
}
.modal-nidhi .modal-header .modal-heading{
    font-size: 20px;
}
.modal-nidhi .modal-content {
	border:none;
	width:80%;
	height: auto;
}
.modal-nidhi .modal-content .form-control{
	width: 300px;
    padding: 12px 20px;
    margin: 8px 0;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-right: 10px;
}
.modal-nidhi .modal-content p{
	font-size: 20px;
    margin: 10px 0;
}
.modal-nidhi .modal-content label{
    color: #555;
}
.two-coloum{
	display: flex;
}
 .country-list{
	background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
	max-height: 200px;
    overflow: auto;
 }
 .country-list li{ 
    padding: 0 10px;
	font-size: 12px;
}
 .country-list li:hover,
 .country-list li a:hover{
	 background-color: #ef416b; 
	color: #fff;
 }
/* bootstrap css changes */
.main .navbar-default{ 
	font-family: "DmSans-Reg";
	background-color: #fff;
	border:none;
	border-bottom: 1px solid lightgray;
}
.main .navbar-default .dropdown:hover .dropdown-menu {
	display: block;
  }
  .header_links .dropdown-menu{
	overflow: auto;
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 40%);
    background-color: white;
    border: 1px solid #ddd;
    right: 0;
    border-radius: 8px !important;
	padding: 0;
  }
  .header_links .dropdown-menu>li>a:focus, .header_links .dropdown-menu>li>a:hover{
	color: #FFFFFF;
    background-color: #EC2051;
  }
  .header_links .dropdown-menu>li>a {
	padding: 8px 12px;
	font-size: 13px;
  }
  .navbar-default .navbar-toggle{
	border-color: #ef416b;
  }
  .navbar-default .navbar-toggle .icon-bar{
	background-color: #ef416b;
  }
  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #fff;
}
  @media (max-width: 820px) {

	.header{
		 flex-direction: column; 
		 align-items: center;
	}
	.header .header_text{
		justify-content: center;
	}
	.home-page{
		margin-top: 100px;
	}
	.discover_section-filters{
		flex-direction: column;
		align-items: initial;
	}
	.discover_section-filters .discover_section-slider{
		width: 100%;
		margin-bottom: 20px;
	}
	.subcategory-item .item{
		flex:1;
	}
	.page-b .content-page-sub-banner .banner-heading{
		margin-top: 102px !important;
	} 
	.content-page .content-page-banner .content-page-sub-banner,
	.content-pagec-section .pagec-para{
		width: initial;
    	padding: 10px;
	}
	.banner-sec-nav{
		flex-wrap: wrap;
	}
	.listing-page .listing_section {
		width: 100% !important;
		padding: 15px;
	}
	.events-page .events .events_block .events-card{
		width: 100% !important;
	}
  }
  @media (max-width: 540px) {
	  .main{
		padding-bottom: 0;
	  }
	  .footer-container{
		position: relative;
	  }
	.header .header_nav{
		display: initial;
		padding:10px;
	}
	.header{
		align-items: initial;
	}
	.header .navbar-toggle{
		margin-top: 28px;
	}
	.header .header_links .links{
		padding: 8px 15px;
	}
	.header .header_links{
		display: initial;
	}
	.header .header_links .header-login-btn{
		border: 0px solid lightgray;
		padding: 5px 18px;
	}
	.header .header_links .header_ministry img{
		display: none;
	}
	.home-page{
		margin-top: 20px;
	}
	.discover_section-filters{
		flex-direction: column;
		align-items: initial;
	}
	.discover_section-filters .discover_section-slider{
		width: 100%;
		margin-bottom: 20px;
	}
	.subcategory-item .item{
		flex:1;
		margin-right:0px;
	}
	.discover_section-filters .discover_section-slider .discover_section-arrows{
		z-index: 1;
		background: #fff;
	}
	.footer-container .footer .footer_content{
		flex-direction: column;
		padding: 10px;
	}
	.footer_content p {
		margin: 0;
	}
	.page-padding {
		padding-left: 20px;
		padding-right: 20px;
	}
	.bg-seperator { 
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.popular_destination-section .popular_destination-head,
	.attraction_section .attraction_section-head,
	.events_section .events_section-header{
		flex-wrap: wrap;
	}
	.our_services-section .our_services-cards-sec{
		display: initial;
	}
	.our_service-card{
		width: 100% !important;
	}
	.visualised_section.page-padding{
		padding-left: 0px;
		padding-right: 0px;
	}
	.visualised_section iframe{
		height: 3500px !important
	}
	.visualised_section .visualised_head{
		padding: 10px;
	}
	.what-others-say-section .users-details{
		flex-direction: column;
	}
	.content-page .content-page-banner .content-page-sub-banner,
	.content-pagec-section .pagec-para{
		width: initial;
    	padding: 10px;
	}
	.page-b .content-page-sub-banner .banner-heading {
		margin-top: 45px !important;
	}
	.content-page .content-page-banner{
		height: initial;
	}
	.common-heading{
		font-size: 28px;
	}
	.banner-sec-nav{
		flex-wrap: wrap;
	}
	.listing-page .listing_section {
		width: 100% !important;
		padding: 15px;
	}
	.listing-page .listing_section .listing-block{
		flex-wrap: wrap;
	}
	.listing-page .listing_section .listing-block .contact-details{
		width: 100%;
	}
	.listing-page .listing_section .listing-block .hotel-details{
		flex:1;
	}
	.listing-page .listing_section .listing-block .hotel-details .location-details{
		flex-wrap: wrap;
	}
	.listing-page .listing_section .listing-block .hotel-details .location-details .share-location{
		margin-top: initial;
	}
	.show-cases .listing-block .listing-block-img{
		width: 100%;
	}
	.our_partners-section .partners-logos-sections .partner-card{
		margin: 14px;
	}
	.our_partners-section .partners-logos-sections .partner-card .partner-logo {
		width: 60px;
	}
	.events-page .events .events_block .events-card{
		width: 100% !important;
	}
  }
  .foriegner-feedback {
	background: #f7f7f7;
	padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }
  .foriegner-feedback img{
	width: 90px;
  }
  .download-btn{
	font-size: 14px;
    color: #ec1f46;
    text-decoration: underline;
  }