::-moz-selection {
	/* Code for Firefox */
	background-color: var(--selection-bg-color);
	color: var(--selection-text-color);
}

::selection {
	background-color: var(--selection-bg-color);
	color: var(--selection-text-color);
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: var(--text-color);
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: var(--text-color);
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--text-color);
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--text-color);
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: var(--text-color);
}

body {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 300;
	position: relative;
}

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

figure {
	margin: 0;
}


iframe {
	border: 0;
}

a {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #3e3e3e;
	outline: 0;
	text-decoration: none;
}

p a {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

b, strong {
	font-weight: 600;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	text-decoration: none;
	outline: 0;
}

/**
 *  Typography
 *
 **/
.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
	font-size: 1em;
	line-height: inherit;
}

.gray-bg {
	background: #f9f9ff;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Poppins", sans-serif;
	color: #222222;
	margin-top: 0;
	font-weight: 600;
}

h1, .h1 {
	font-size: 36px;
}

h2, .h2 {
	font-size: 30px;
}

h3, .h3 {
	font-size: 24px;
}

h4, .h4 {
	font-size: 18px;
}

h5, .h5 {
	font-size: 16px;
}

h6, .h6 {
	font-size: 14px;
	color: #222222;
}

td, th {
	border-radius: 0px;
}

.clear::before, .clear::after {
	content: " ";
	display: table;
}

.clear::after {
	clear: both;
}

.transition {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.section-full {
	padding: 100px 0;
}

.section-half {
	padding: 75px 0;
}

.display-table {
	display: table;
}

.light {
	color: #fff;
}

.dark {
	color: #222;
}

.relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden;
}

.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.container.fullwidth {
	width: 100%;
}

.container.no-padding {
	padding-left: 0;
	padding-right: 0;
}

/* .section-bg {
	background: #f9fafc;
	padding-top: 2rem;
	padding-bottom: 1.5rem;
} */

.section-bg .section-gap {
	padding: 40px 0;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

p img.float-right {
	margin: 0 0 10px 10px;
}

p img.float-left {
	margin: 0 10px 10px 0;
}

/*---------- Start Elements Page -------------*/
.generic-content h1 {
	font-weight: 600;
}

.about-generic-area {
	background: #fff;
}

.about-generic-area p {
	margin-bottom: 20px;
}

.section-top-border {
	padding: 50px 0;
	border-top: 1px dotted #eee;
}

/*---------- End Elements Page -------------*/

.list-style {
	width: 14px;
	height: 14px;
}

.unordered-list li {
	position: relative;
	padding-left: 30px;
	line-height: 1.82em !important;
}

.unordered-list li:before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 3px solid var(--primary-color);
	background: #fff;
	top: 4px;
	left: 0;
	border-radius: 50%;
}

.ordered-list {
	margin-left: 30px;
}

.ordered-list li {
	list-style-type: decimal-leading-zero;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.82em !important;
}

.ordered-list li span {
	font-weight: 300;
	color: #777777;
}

.ordered-list-alpha li {
	margin-left: 30px;
	list-style-type: lower-alpha;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.82em !important;
}

.ordered-list-alpha li span {
	font-weight: 300;
	color: #777777;
}

.ordered-list-roman li {
	margin-left: 30px;
	list-style-type: lower-roman;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.82em !important;
}

.ordered-list-roman li span {
	font-weight: 300;
	color: #777777;
}

.single-input {
	display: block;
	width: 100%;
	line-height: 40px;
	border: none;
	outline: none;
	background: #fff;
	padding: 0 20px;
}

.single-input:focus {
	outline: none;
}

.input-group-icon {
	position: relative;
}

.input-group-icon .icon {
	position: absolute;
	left: 20px;
	top: 0;
	line-height: 40px;
	z-index: 3;
}

.input-group-icon .icon i {
	color: #797979;
}

.input-group-icon .single-input {
	padding-left: 45px;
}

.single-textarea {
	display: block;
	width: 100%;
	line-height: 40px;
	border: none;
	outline: none;
	background: #fff;
	padding: 0 20px;
	height: 100px;
	resize: none;
}

.single-textarea:focus {
	outline: none;
}

.single-input-primary {
	display: block;
	width: 100%;
	line-height: 40px;
	border: 1px solid transparent;
	outline: none;
	background: #fff;
	padding: 0 20px;
}

.single-input-primary:focus {
	outline: none;
	border: 1px solid var(--primary-color);
}

.single-input-accent {
	display: block;
	width: 100%;
	line-height: 40px;
	border: 1px solid transparent;
	outline: none;
	background: #fff;
	padding: 0 20px;
}

.single-input-accent:focus {
	outline: none;
	border: 1px solid #eb6b55;
}

.single-input-secondary {
	display: block;
	width: 100%;
	line-height: 40px;
	border: 1px solid transparent;
	outline: none;
	background: #fff;
	padding: 0 20px;
}

.single-input-secondary:focus {
	outline: none;
	border: 1px solid #f09359;
}

.default-switch {
	width: 35px;
	height: 17px;
	border-radius: 8.5px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.default-switch input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.default-switch input+label {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--primary-color);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.default-switch input:checked+label {
	left: 19px;
}

.single-element-widget {
	margin-bottom: 30px;
}

.primary-switch {
	width: 35px;
	height: 17px;
	border-radius: 8.5px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.primary-switch input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.primary-switch input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.primary-switch input+label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border-radius: 8.5px;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.primary-switch input+label:after {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.primary-switch input:checked+label:after {
	left: 19px;
}

.primary-switch input:checked+label:before {
	background: var(--primary-color);
}

.confirm-switch {
	width: 35px;
	height: 17px;
	border-radius: 8.5px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.confirm-switch input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.confirm-switch input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.confirm-switch input+label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border-radius: 8.5px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	cursor: pointer;
}

.confirm-switch input+label:after {
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.confirm-switch input:checked+label:after {
	left: 19px;
}

.confirm-switch input:checked+label:before {
	background: #4cd3e3;
}

.primary-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.primary-checkbox input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.primary-checkbox input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.primary-checkbox input:checked+label {
	background: url(/theme/reisenavigator/images/elements/primary-check.png) no-repeat center center/cover;
	border: none;
}

.confirm-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.confirm-checkbox input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.confirm-checkbox input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.confirm-checkbox input:checked+label {
	background: url(/theme/reisenavigator/images/elements/success-check.png) no-repeat center center/cover;
	border: none;
}

.disabled-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.disabled-checkbox input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.disabled-checkbox input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.disabled-checkbox input:disabled {
	cursor: not-allowed;
	z-index: 3;
}

.disabled-checkbox input:checked+label {
	background: url(/theme/reisenavigator/images/elements/disabled-check.png) no-repeat center center/cover;
	border: none;
}

.primary-radio {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.primary-radio input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.primary-radio input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.primary-radio input:checked+label {
	background: url(/theme/reisenavigator/images/elements/primary-radio.png) no-repeat center center/cover;
	border: none;
}

.confirm-radio {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.confirm-radio input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.confirm-radio input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.confirm-radio input:checked+label {
	background: url(/theme/reisenavigator/images/elements/success-radio.png) no-repeat center center/cover;
	border: none;
}

.disabled-radio {
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.disabled-radio input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.disabled-radio input+label {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid #f1f1f1;
}

.disabled-radio input:disabled {
	cursor: not-allowed;
	z-index: 3;
}

.disabled-radio input:checked+label {
	background: url(/theme/reisenavigator/images/elements/disabled-radio.png) no-repeat center center/cover;
	border: none;
}

.default-select {
	height: 40px;
}

.default-select .nice-select {
	border: none;
	border-radius: 0px;
	height: 40px;
	background: #fff;
	padding-left: 20px;
	padding-right: 40px;
}

.default-select .nice-select .list {
	margin-top: 0;
	border: none;
	border-radius: 0px;
	box-shadow: none;
	width: 100%;
	padding: 10px 0 10px 0px;
}

.default-select .nice-select .list .option {
	font-weight: 300;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	line-height: 28px;
	min-height: 28px;
	font-size: 12px;
	padding-left: 20px;
}

.default-select .nice-select .list .option.selected {
	color: var(--primary-color);
	background: transparent;
}

.default-select .nice-select .list .option:hover {
	color: var(--primary-color);
	background: transparent;
}

.default-select .current {
	margin-right: 50px;
	font-weight: 300;
}

.default-select .nice-select::after {
	right: 20px;
}

@media ( max-width : 991px) {
	.left-align-p p {
		margin-top: 20px;
	}
}

.form-select {
	height: 40px;
	width: 100%;
}

.form-select .nice-select {
	border: none;
	border-radius: 0px;
	height: 40px;
	background: #fff !important;
	padding-left: 45px;
	padding-right: 40px;
	width: 100%;
}

.form-select .nice-select .list {
	margin-top: 0;
	border: none;
	border-radius: 0px;
	box-shadow: none;
	width: 100%;
	padding: 10px 0 10px 0px;
}

.form-select .nice-select .list .option {
	font-weight: 300;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	line-height: 28px;
	min-height: 28px;
	font-size: 12px;
	padding-left: 45px;
}

.form-select .nice-select .list .option.selected {
	color: var(--primary-color);
	background: transparent;
}

.form-select .nice-select .list .option:hover {
	color: var(--primary-color);
	background: transparent;
}

.form-select .current {
	margin-right: 50px;
	font-weight: 300;
}

.form-select .nice-select::after {
	right: 20px;
}

/* =================================== */
/*  Menu Styles
/* =================================== */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-top {
	font-size: 12px;
	padding: 6px 0px;
}

.header-top a {
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-top a:hover {
	color: var(--primary-color);
}

.header-top ul li {
	display: inline-block;
	margin-right: 15px;
}

@media ( max-width : 414px) {
	.header-top ul li {
		margin-right: 0px;
	}
}

.header-top .header-top-left a {
	margin-right: 8px;
}

.header-top .header-top-right {
	text-align: right;
}

.header-top .header-top-right .header-social a {
	color: #fff;
	margin-left: 15px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-top .header-top-right .header-social a:hover {
	color: var(--primary-color);
}


.header-top {
	text-shadow: 1px 1px 6px rgba(0, 0, 0, .7);
	transition: all .3s linear;
	height: auto;
}
.header-top svg {
	filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, .7));
}

.top-head-btn {
	background: var(--primary-color);
	padding: 9px 26px;
}

.main-menu {
	padding-bottom: 20px;
	padding-top: 20px;
	/* background: rgba(255, 255, 255, 0.15); */
	background: rgba( var(--headings-bg-color-rgb), 0.8);
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 5px;
}

#header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1040;
}

.searchmask-dropdown-open #header {
	z-index: 1;
}

#header.header-scrolled {
	transition: background-color 0.5s;
	background-color: rgba( var(--headings-bg-color-rgb), 0.9);
}

#header.header-scrolled .header-top {
	height: 0;
	padding: 0;
	opacity: 0;
}

#header.header-scrolled .main-menu {
	background: transparent;
}

/* =================================== */
/*  Homepage Styles
/* =================================== */
.section-gap {
	padding: 80px 0;
}

.alert-msg {
	color: #008000;
}

#logo img {
	transition: width ease .3s;
	width: 190px;
	height: auto;
}
.header-scrolled #logo img {
	width: 120px !important;
}

#nav-menu-container {
	padding-right: 15px;
}

.primary-btn {
	background: var(--primary-color);
	line-height: 42px;
	padding-left: 30px;
	padding-right: 30px;
	border: none;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	position: relative;
}

.primary-btn:focus {
	outline: none;
}

.primary-btn span {
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	right: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.primary-btn:hover {
	color: #fff;
}

.primary-btn:hover span {
	color: #fff;
	right: 20px;
}

.primary-btn.white {
	border: 1px solid #fff;
	color: #fff;
}

.primary-btn.white span {
	color: #fff;
}

.primary-btn.white:hover {
	background: #fff;
	color: var(--primary-color);
}

.primary-btn.white:hover span {
	color: var(--primary-color);
}

.primary-btn.wh {
	background: #fff;
	color: #222;
	text-transform: uppercase;
}

.primary-btn.wh:hover {
	background: #222;
	color: #fff;
}

.primary-btn.squire {
	border-radius: 0px !important;
	border: 1px solid transparent;
}

.primary-btn.squire:hover {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.section-title {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}

.section-title h1 {
	margin-bottom: 10px;
}

/*-------- Start Banner Area ------------*/
@media ( max-width : 767px) {
	.banner-area .fullscreen {
		height: auto !important;
	}
}

.banner-left h6 {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 2px;
}

.banner-left h1 {
	margin: 20px 0;
	font-size: 60px;
	text-transform: uppercase;
}

@media ( max-width : 1199px) {
	.banner-left h1 {
		font-size: 40px;
	}
}

@media ( max-width : 413px) {
	.banner-left h1 {
		font-size: 33px;
	}
}

@media ( max-width : 991px) and (min-width: 768px) {
	.banner-left h1 {
		font-size: 36px;
	}
	.banner-left h6 {
		font-size: 12px;
	}
}

.banner-left p {
	margin: 20px 0px;
}

.banner-left .primary-btn {
	background: var(--primary-color);
}

.banner-left .primary-btn:hover {
	background: #222;
	color: #fff;
}

@media ( max-width : 767px) {
	.banner-left {
		margin-top: 120px;
		margin-bottom: 60px;
	}
}

.banner-right .nav-tabs {
	border-bottom: none;
}

.banner-right .nav-item {
	background: rgba(255, 255, 255, 0.25);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	margin-right: 1px;
}

.banner-right .nav-item a {
	color: #fff;
}

.banner-right .nav-item:hover a {
	border-color: transparent !important;
}

.banner-right .nav-tabs .nav-link {
	border-radius: 0 !important;
}

.banner-right .tab-content {
	background: #fff;
}

.banner-right .form-wrap {
	padding: 40px 30px;
	text-align: center;
}

.banner-right .form-wrap .form-control {
	padding: 0.675rem 0.75rem;
	font-size: 13px;
	font-weight: 300;
	border-radius: 0px;
	margin-bottom: 10px;
	border-color: #eee;
}

.banner-right .form-wrap .form-control:focus {
	box-shadow: none;
}

@media ( max-width : 1024px) {
	.banner-right {
		margin-top: 40px;
	}
}

@media ( max-width : 767px) {
	.banner-right {
		padding-bottom: 50px;
	}
}

/*-------- End Banner Area ------------*/

/*-------- Slider ------------*/
.slider-wrapper .slider-item-content {
	font-weight: 400;
}

.slider-wrapper .slider-item-content .slider-item-topic {
	font-size: 45px;
}

.slider-wrapper .slider-item-content .lastCharacter {
	position: relative;
	display: inline-block;
}

.slider-wrapper .slider-item-content .lastCharacter > span {
	position: relative;
	z-index: 2;
}

.slider-wrapper .slider-item-content .priceItem {
	bottom: -25px;
	left: auto !important;
	right: -58px;
	position: absolute !important;
	font-size: 14px;
	white-space: nowrap;
	word-spacing: initial;
	border-radius: 3px;
	padding: 8px;
	z-index: 1 !important;
	background: var(--gradient-begin-color) !important;
	background: -moz-linear-gradient(90deg, var(--gradient-begin-color) 0%, var(--gradient-end-color) 100%) !important;
	background: -webkit-linear-gradient(90deg, var(--gradient-begin-color) 0%, var(--gradient-end-color) 100%) !important;
	background: linear-gradient(90deg, var(--gradient-begin-color) 0%, var(--gradient-end-color) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0018', endColorstr='var(--gradient-end-color)', GradientType=1) !important;
	text-align: center;
}


/*--------- start home-about area  -------------*/
.home-about-area .home-about-left {
	padding-left: 20%;
}

@media ( max-width : 1366px) {
	.home-about-area .home-about-left {
		padding-left: 5%;
	}
}

.home-about-area .home-about-left .h1 {
	max-width: 510px;
}

@media ( max-width : 1366px) {
	.home-about-area .home-about-left .h1 {
		font-size: 20px;
	}
}

.home-about-area .home-about-left p {
	max-width: 500px;
	padding: 20px 0;
}

@media ( max-width : 991px) {
	.home-about-area .home-about-left p {
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}

.home-about-area .home-about-left .primary-btn {
	margin-top: 10px;
	background: #222;
	font-size: 14px;
}

.home-about-area .home-about-left .primary-btn:hover {
	background: var(--primary-color);
}

@media ( max-width : 991px) {
	.home-about-area .home-about-left {
		padding: 100px 15px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		display: inline-block;
	}
	.home-about-area .home-about-left h1 {
		margin-left: auto;
		margin-right: auto;
		display: inline-block;
	}
}

.home-about-area .home-about-right img {
	width: 100%;
}

/*--------- end home-about area  -------------*/
.container .container {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.container .wrapper-breakout .container {
	padding-right: var(--bs-gutter-x,.75rem) !important;
	padding-left: var(--bs-gutter-x,.75rem) !important;
}

/*-------- Start Common Page Style   -------------*/
.link-nav {
	margin-top: 10px;
	margin-bottom: 0px;
}

.home .about-content .breadcrumb {
	display: none !important;
}

.about-banner {
	box-shadow: 1px 1px 10px rgba(55,55,55,.3);
}

.about-content {
	margin-top: 50px;
	text-align: center;
}

@media screen and (max-width: 769px) {
	.about-content {
		margin-top: 70px;
	}
	.about-content h1 {
		font-size: 2rem !important;
	}
}
.about-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	text-shadow: 1px 1px 10px rgba(55,55,55,.5);
}

.about-content a {
	color: #fff;
	font-weight: 300;
	font-size: 14px;
	text-shadow: 1px 1px 10px rgba(55,55,55,1);
}

.about-content .lnr {
	margin: 0px 10px;
	font-weight: 600;
}

.about-content .breadcrumb {
	color: #fff;
	font-weight: 300;
	font-size: 14px;
	text-shadow: 1px 1px 10px rgba(55,55,55,.5);
}
/*-------- End Common Page Style   -------------*/
/* =================================== */
/*  About Page Styles
/* =================================== */
/*-------- start about-info Style  -------------*/
.about-info-area .info-left img {
	width: 100%;
}

@media ( max-width : 991px) {
	.about-info-area .info-left {
		margin-bottom: 30px;
	}
}

.about-info-area .info-right h6 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.about-info-area .info-right h1 {
	text-transform: uppercase;
	margin: 20px 0px;
}

.about-info-area .info-right p {
	max-width: 450px;
}

/*-------- start destinations-area Style  -------------*/
.destination-area-item {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.destination-area-item .overlay-bg {
	background: rgba(4, 9, 30, 0.4);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
}

.destination-area-item .thumb {
	position: relative;
}

.destination-area-item .thumb img {
	width: 100%;
}

.destination-area-item:hover .price-btn {
	opacity: 1;
}

.destination-area-item:hover .overlay-bg {
	opacity: 1;
}

@media ( max-width : 991px) {
	.destination-area-item {
		margin-bottom: 30px;
	}
}
.destination-area {
	background: #f9f9ff;
}

.destination-area .destination-area-item {
	margin-top: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.destination-area .destination-area-item .thumb {
	overflow: hidden;
}

.destination-area .destination-area-item .thumb img {
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #ddd;
}

.destination-area .destination-area-item .details {
	background: #fff;
	padding: 20px;
}

.destination-area .destination-area-item .details .destination-area-name {
	margin-bottom: 10px;
}

.destination-area .destination-area-item .details .package-list {
	margin-top: 30px;
}

.destination-area .destination-area-item .details .package-list li {
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.destination-area .destination-area-item .details .package-list li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}

.destination-area .destination-area-item .details .price-btn {
	background: var(--primary-color);
	color: #222;
	font-weight: 600;
	padding: 5px 20px;
}

.destination-area .destination-area-item:hover {
	box-shadow: 0px 10px 30px 0px rgba(60, 64, 143, 0.2);
}

.destination-area .star .checked {
	color: orange;
}

/*-------- end destinations-area Style  -------------*/

.list-wrap {
	background: #fbfcff;
	max-width: 445px;
	padding: 30px;
}

.list-wrap ul {
	list-style-image: url("/theme/reisenavigator/images/insurence/bullet.png");
}

.list-wrap li {
	padding-left: 12px;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 15px;
	color: #222;
}

@media ( max-width : 991px) {
	.img-one {
		margin-bottom: 45px;
	}
}

/*============ End Blog Home Styles  =============*/
.contact-wrapper .map-wrap {
	margin-bottom: 120px;
}

@media ( max-width : 991px) {
	.contact-wrapper .map-wrap {
		margin-bottom: 50px;
	}
}

.contact-wrapper .contact-btns {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	padding: 40px;
	color: #fff;
	margin-bottom: 30px;
}

.contact-wrapper .contact-btns:hover {
	color: #fff;
}

.contact-wrapper .form-wrapper .form-control:focus {
	box-shadow: none !important;
	border-color: #ced4da !important;
}

.contact-wrapper .form-wrapper textarea {
	height: 218px;
	margin-top: 0px;
	padding: 15px;
}

.contact-wrapper .form-wrapper .genric-btn {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 0 !important;
	font-size: 14px;
	text-transform: uppercase !important;
}

.contact-wrapper .form-wrapper .genric-btn:hover {
	border: 1px solid var(--primary-color);
	color: var(--primary-color) !important;
}

@media ( max-width : 991px) {
	.contact-wrapper .address-wrapper {
		margin-bottom: 30px;
	}
}

.contact-wrapper .address-wrapper .single-contact-address {
	margin-bottom: 20px;
}

.contact-wrapper .address-wrapper .single-contact-address .h5 {
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 5px;
	display: block;
}

.contact-wrapper .address-wrapper .single-contact-address .lnr {
	font-size: 30px;
	font-weight: 500;
	color: var(--secondary-color);
	margin-right: 30px;
}

/* =================================== */
/*  Footer Styles
/* =================================== */
.footer-area {
	background: #282763;
	padding-top: 100px;
}

.footer-area .footer-nav li {
	margin-top: 18px;
}

.footer-area .footer-nav li a {
	color: #fff;
}

.footer-area .footer-nav li a:hover {
	color: var(--primary-color);
}

.footer-area .primary-btn {
	background-color: var(--primary-color);
	line-height: 42px;
	padding-left: 30px;
	padding-right: 60px;
	border-radius: 25px;
	border: none;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	text-transform: uppercase;
	position: relative;
}

.footer-area .primary-btn:focus {
	outline: none;
}

.footer-area .primary-btn span {
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	right: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.footer-area .primary-btn:hover {
	background-color: var(--primary-color);
	box-shadow: none;
	color: #fff;
}

.footer-area .primary-btn:hover span {
	color: #fff;
	right: 20px;
}

.footer-area .primary-btn.white {
	border: 1px solid #fff;
	color: #fff;
}

.footer-area .primary-btn.white span {
	color: #fff;
}

.footer-area .primary-btn.white:hover {
	background: #fff;
	color: var(--primary-color);
}

.footer-area .primary-btn.white:hover span {
	color: var(--primary-color);
}

.footer-area h6 {
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 25px;
	font-size: 16px;
	font-weight: 600;
}

.footer-social {
	text-align: right;
}

.footer-social a {
	width: 20px;
	width: 40px;
	display: inline-table;
	height: 40px;
	text-align: center;
	padding-top: 10px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.footer-social a:hover i {
	color: var(--primary-color);
}

.footer-social i {
	color: #cccccc;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media ( max-width : 991.98px) {
	.footer-social {
		text-align: left;
		margin-top: 20px;
	}
}

.single-footer-widget {
	color: #fff;
}

.single-footer-widget input {
	line-height: 38px;
	border: none;
	background: transparent;
	border: 1px solid #eee;
	font-weight: 300;
	color: #fff;
	padding-left: 20px;
	width: 80%;
}

.single-footer-widget .bb-btn {
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 300;
	border-radius: 0;
	cursor: pointer;
	width: auto;
}

@media ( max-width : 960px) {
	.single-footer-widget .nw-btn {
		margin-top: 20px;
	}
	.single-footer-widget .newsletter {
		padding-bottom: 40px;
	}
}

.single-footer-widget .info {
	position: absolute;
	margin-top: 20px;
	color: #fff;
	font-size: 12px;
}

.single-footer-widget .info.valid {
	color: green;
}

.single-footer-widget .info.error {
	color: red;
}

.single-footer-widget ::-moz-selection {
	/* Code for Firefox */
	background-color: var(--secondary-color);
	color: var(--footer-text-color);
}

.single-footer-widget ::selection {
	background-color: var(--secondary-color);
	color: var(--footer-text-color);
}

.single-footer-widget .form-control::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff;
	font-weight: 300;
}

.single-footer-widget .form-control::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff !important;
	opacity: 1;
	font-weight: 300;
}

.single-footer-widget .form-control::-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #777777;
	font-weight: 300;
}

.single-footer-widget .form-control::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #777777;
	font-weight: 300;
}

@media ( max-width : 991.98px) {
	.single-footer-widget {
		margin-bottom: 70px;
	}
}

.single-footer-widget p {
	color: #fff;
}

.single-footer-widget ul li {
	margin-bottom: 12px;
}

.single-footer-widget ul li a {
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.single-footer-widget ul li a:hover {
	color: var(--secondary-color);
}

.footer-bottom,
.footer-bottom *,
.footer-bottom a:hover {
	color: var(--footer-text-color);
}

.footer-bottom {
	padding-top: 40px;
	margin-top: 20px;
	border-top: 1px solid #aaa;
}

.footer-bottom a:hover {
	text-decoration: underline;
}