/**********navbar*************/
body {
	margin: 0;
	/*background-color: #f1f1f1;
  font-family: Arial, Helvetica, sans-serif;*/
}

#navbar {
	/*background-color: #333;*/
	position: fixed;
	top: 0;
	width: 100%;
	display: block;
	height: 100px; /*mine*/
	transition: top 0.5s;
	z-index: 9999; /*mine*/
}

/*#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}*/
/**********navbar*************/

/**for login**/

.center-screen {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}

.overlaycolor {
	/*background: linear-gradient(rgba(255, 0, 0, 0.65), rgba(0, 0, 255, 0.15)),
              rgba(27,48,180,0.10); */
	/*background: linear-gradient(-45deg, rgba(78, 97, 68, 0.50), rgba(0, 0, 0, 0.40));*/
	background: rgba(6, 17, 56, 0.7);
	background-size: cover;
	color: #fff;
	text-align: center;
	/*text-rendering: optimizeLegibility;*/
	font-family: 'Roboto Condensed', sans-serif;
	/*font-size: 30px;
  margin: 0;
  padding: 75px 10px 15px;
  min-height: 700px;*/
	/*max-height:800px;*/
	/*letter-spacing:3px;*/
}

/**for login**/

.main_image {
	box-shadow: 40px 40px 0px 0px rgba(39, 170, 224, 0.75);
	-webkit-box-shadow: 40px 40px 0px 0px rgba(39, 170, 224, 0.75);
	-moz-box-shadow: 40px 40px 0px 0px rgba(39, 170, 224, 0.75);
}
.hiddendesktop {
	display: none;
}

.phonelinks {
	font-family: 'Manrope', sans-serif;
	color: #061138;
	font-size: 25px;
	margin-top: 15px;
	font-weight: 800;
	padding-left: 10px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.phonelinks:hover {
	font-family: 'Manrope', sans-serif;
	color: #28aae0;
	font-size: 25px;
	margin-top: 15px;
	padding-left: 10px;
	font-weight: 800;
}

/************ snippets*************/
.snip1573 {
	background-color: #000;
	display: inline-block;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	margin: 0px; /*10px*/
	/*max-width: 600px;*/
	/*min-width: 500px;*/
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
}

.snip1573 * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

.snip1573:before,
.snip1573:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
	background-color: #000000;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	content: '';
	opacity: 0.5; /*0.9*/
	z-index: 1;
}

.snip1573:before {
	-webkit-transform: skew(45deg) translateX(-180%); /* translateX(-155%); */
	transform: skew(45deg) translateX(-180%); /* translateX(-155%); */
}

.snip1573:after {
	-webkit-transform: skew(45deg) translateX(180%); /* translateX(155%); */
	transform: skew(45deg) translateX(180%); /* translateX(155%); */
}

.snip1573 img {
	backface-visibility: hidden;
	max-width: 100%;
	vertical-align: top;
}

.snip1573 figcaption {
	top: 50%;
	left: 50%;
	position: absolute;
	z-index: 2;
	-webkit-transform: translate(-50%, -50%) scale(0.5);
	transform: translate(-50%, -50%) scale(0.5);
	opacity: 0;
	-webkit-box-shadow: 0 0 10px #000000;
	box-shadow: 0 0 10px #000000;
	/*width:80%;*/ /*for 1 line = 0*/
}

.snip1573 h3 {
	background-color: #000000;
	border: 2px solid #fff;
	color: #fff;
	font-size: 1em;
	font-weight: 400;
	letter-spacing: 1px; /*for 1 line = 0*/
	margin: 0;
	padding: 5px 10px;
	text-transform: uppercase;
}

.snip1573 a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

.snip1573:hover > img,
.snip1573.hover > img {
	opacity: 0.5;
}

.snip1573:hover:before,
.snip1573.hover:before {
	-webkit-transform: skew(45deg) translateX(-55%);
	transform: skew(45deg) translateX(-55%);
}

.snip1573:hover:after,
.snip1573.hover:after {
	-webkit-transform: skew(45deg) translateX(55%);
	transform: skew(45deg) translateX(55%);
}

.snip1573:hover figcaption,
.snip1573.hover figcaption {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
/*************snippets***********/
/********************squares *************************/

.flex-container {
	width: 100%;
	min-height: 200px;
	margin: 0 auto;
	display: -webkit-flex; /* Safari */
	display: flex; /* Standard syntax */
}

.flex-container .newcolumn {
	padding: 10px;
	min-height: 200px;
	background: #f8f8f8;
	-webkit-flex: 1; /* Safari */
	-ms-flex: 1; /* IE 10 */
	flex: 1; /* Standard syntax */
}

.postext {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
}

.loyaltytitle {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: #384140;
	font-size: 32px;
}

.loyaltytext {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: #4f5151;
	font-size: 18px;
}

.carousel_title {
	font-family: 'Manrope', sans-serif;
	color: #061138;
	font-size: 20px;
	font-weight: 800;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.carousel_title:hover {
	font-family: 'Manrope', sans-serif;
	color: #28aae0;
	font-size: 20px;
	font-weight: 800;
}

.flx_carousel {
	display: flex;
	padding: 20px 0;
	gap: 0px;
}

.flx_carousel .props .prop {
	padding-top: 9px;
	white-space: nowrap;
	max-width: 215px;
	width: auto;
}

.flx_carousel .props {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-grow: 1;
}
.flx_carousel .crs_button {
	flex-shrink: 1;
	text-align: right;
	padding: 0 10px;
	align-self: center;
}
@media only screen and (max-width: 767px) {
	.flx_carousel .props {
		flex-flow: wrap;
	}
	.flx_carousel .props .prop {
		min-width: 45%;
		max-width: 100%;
	}

	.carousel_btn {
		margin: 0 10px 10px 0;
	}
}

.carousel_height {
	min-height: 550px;
}

.carousel_no_img {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	padding-left: 10px;
	width: 100%;
}

.carousel_no_img span {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	padding-left: 3px;
}

.carousel_lenght {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	background: url('../img/ruler.png') no-repeat 15px 10px;
	padding-left: 40px;
	display: inline;
	width: 100%;
}

.carousel_lenght span {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	padding-left: 3px;
}

.carousel_quests {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	background: url('../img/guests.png') no-repeat 15px 10px;
	padding-left: 40px;
	display: inline;
	width: 100%;
}

.carousel_quests span {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	padding-left: 3px;
}

.carousel_build {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	background: url('../img/wheel.png') no-repeat 15px 10px;
	padding-left: 40px;
	display: inline;
	width: 100%;
}

.carousel_build span {
	color: #6f7b91;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 300;
	text-align: left;
	padding-left: 3px;
}

.carousel_btn {
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 8px 7px 7px 7px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	color: #fff;
	/*line-height: 38px;
	letter-spacing: 0.1rem;*/
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	/*background-color: #fd39ff;*/
	background-color: #27aae0;
	/*border: 1px solid #feadff;*/
	border: 0px solid #1d85b0;
	cursor: pointer;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.carousel_btn:hover {
	color: #fff;
	/*border-color: #fe8aff;*/
	/*border-color: #fff;*/

	border: 0px solid #ff0000;
	/*background-color: #fe5cff;*/
	background-color: #061138;
	padding: 8px 7px 7px 17px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.product_descr {
	font-family: 'Roboto Condensed', sans-serif;
	color: #626262;
	font-size: 15px;
	font-weight: 300;
	padding-top: 30px;
}

.center_div2 {
	text-align: right;
}
/****************** togle on/off *******/

.toggled-on .toggle-content {
	display: block;
	/*margin-top: 15px;
  padding-left: 10px;*/
	padding: 20px 0px 15px 20px;

	/*border-radius: 10px; */
}

.toggle-content {
	/*box-shadow: inset 0px 0px 10px #0c0b41; */
	font-size: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	color: #626262;
	font-weight: 300;
}

.toggle-content p {
	margin: 0;
}

.toggled-on .fa-angle-down {
	display: none;
}

.toggle-title {
	cursor: pointer;
	position: relative;
	padding-left: 10px;
	background-color: #fff;
	font-size: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	color: #626262;
	font-weight: 400;
}

.toggle-title i {
	position: absolute;
	top: 0;
	right: 0;
}

.toggled-off .toggle-content {
	display: none;
}

.toggled-off .fa-angle-up {
	display: none;
	right: 0;
}

/****************** togle on/off *******/
.space20top {
	padding-top: 20px;
}

.space30top {
	padding-top: 30px;
}

.textpos {
	position: relative;
	min-height: 130px;
	width: 95%;
	/*border:1px red solid;*/
	text-align: center;
	margin-top: -40px;
	padding-top: 10px;
	border-radius: 5px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	box-shadow: 0px 24px 50px 0px rgba(46, 46, 46, 0.1);
	-webkit-box-shadow: 0px 24px 50px 0px rgba(46, 46, 46, 0.1);
	-moz-box-shadow: 0px 24px 50px 0px rgba(46, 46, 46, 0.1);
}

.codetxt {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	color: #384140;
	font-size: 35px;
}

.flx_container {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}

.item {
	flex: 23.37%;
	max-width: 23.37%;
}

@media (min-width: 551px) and (max-width: 989px) {
	.flx_container {
		display: flex;
		flex-wrap: wrap;
		gap: 18px;
	}

	.item {
		flex: 48%;
		max-width: 48%;
	}
}

@media (min-width: 990px) and (max-width: 1271px) {
	.flx_container {
		display: flex;
		flex-wrap: wrap;
		gap: 26px;
	}

	.item {
		flex: 22.9%;
		max-width: 22.9%;
	}
}

@media (max-width: 550px) {
	.flx_container {
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.item {
		flex: 48%;
		max-width: 48%;
	}

	.center_div {
		text-align: center;
	}

	.center_div2 {
		text-align: center;
	}
}

@media (max-width: 371px) {
	.flx_container {
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.item {
		flex: 47%;
		max-width: 47%;
	}
}

.home_btn {
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	color: #2d2d2d;
	font-size: 13px;
	font-weight: 400;
	display: block;
	border: 2px solid #828282;
	width: 150px;
	padding: 10px;
	margin-left: auto;
	margin-right: auto;
	text-decoration: none;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	text-decoration: none;
}
.home_btn:hover {
	color: #d6d6d6;
	border: 2px solid #d6d6d6;
	background: #2d2d2d;
}

.form_btn {
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	color: #2d2d2d;
	font-size: 15px;
	font-weight: 400;
	display: block;
	border: 2px solid #828282;
	width: 150px;
	padding: 10px;
	/*margin-left:auto;
    margin-right:auto;*/
	text-decoration: none;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	text-decoration: none;
}
.form_btn:hover {
	color: #d6d6d6;
	border: 2px solid #d6d6d6;
	background: #2d2d2d;
}

.form_position {
	display: inline-block;
	text-align: left;
	width: 350px;
}

.form_space {
	color: #5d5d5d;
	font-size: 15px;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	margin-top: 10px;
}

.footercontent {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	color: #787878;
	/*padding: 40px 20px 50px 20px;*/
	font-weight: 400;
}

.footer_title {
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	color: #fff;
	/*padding: 40px 20px 50px 20px;*/
	font-weight: 800;
	padding-bottom: 10px;
}

.footer_texts {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #b8b8b8;
	/*padding: 40px 20px 50px 20px;*/
	font-weight: 400;
}

.footer_links {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #979797;
	/*padding: 40px 20px 50px 20px;*/
	font-weight: 400;
	text-decoration: none;
}

.footer_links:hover {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #b8b8b8;
	/*padding: 40px 20px 50px 20px;*/
	font-weight: 400;
}

.footer_link {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	padding-left: 13px;
	padding-bottom: 7px;
	background: url('../img/arrow_footer.png') 0px 7px no-repeat;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.footer_link:hover {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #1e90ff;
	padding-left: 17px;
	background: url('../img/arrow_footer_hover.png') 0px 7px no-repeat;
}

input[name='txtLoginPassword'],
input[name='txtLoginUsername'],
textarea[name='message'],
input[name='onomafacebook'],
input[name='addressform'],
input.regformfield,
textarea.regformfield {
	font-size: 15px;
	height: 42px;
	border-radius: 1px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	font-family: 'Manrope', sans-serif;
	color: #5d5d5d;
	border: 1px solid #bcc6b6;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
}

input[name='txtLoginPassword']:focus,
input[name='txtLoginUsername']:focus,
textarea[name='message']:focus,
input[name='onomafacebook']:focus,
input[name='addressform']:focus,
input.regformfield:focus,
textarea.regformfield:focus {
	border: 1px solid #939b8e;
	outline: 0;
}

/***********************/
select.simple {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #d1d1d1;
	box-shadow: none;
	box-sizing: border-box;
	max-width: 350px;
	min-width: 150px;
	font-family: 'Manrope', sans-serif;
	color: #5d5d5d;
	font-weight: 300;
}

select.simple:focus {
	border: 1px solid #839595;
	outline: 0;
}

select.simple {
	margin-bottom: 1.5rem;
}
/***********************/
.form_submit_btn,
.login_btn {
	display: inline-block;
	height: 48px;
	padding: 5px 30px;
	color: #fff;
	text-align: center;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
	background-color: #061138;
	border-radius: 1px;
	border: 1px solid #061138;
	cursor: pointer;
	box-sizing: border-box;
	width: 100%;
	max-width: 350px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form_submit_btn:hover,
.login_btn:hover {
	color: #fff;
	border-color: #1e90ff;
	outline: 0;
	background-color: #1e90ff;
}

.forgotpass {
	font-family: 'Manrope', sans-serif;
	color: #1e90ff;
	font-weight: 600;
	text-align: center;
	font-size: 16px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.forgotpass:hover {
	color: #061138;
}

.field-icon {
	margin-left: -35px;
	margin-top: -25px;
	position: relative;
	z-index: 2;
}

.newsletterbtn {
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 7px 7px 7px 7px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	color: #fff;
	/*line-height: 38px;
	letter-spacing: 0.1rem;*/
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	/*background-color: #fd39ff;*/
	background-color: #1e90ff;
	/*border: 1px solid #feadff;*/
	border: 2px solid #1e90ff;
	cursor: pointer;
	border-radius: 50%;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.newsletterbtn:hover {
	color: #fff;
	/*border-color: #fe8aff;*/
	/*border-color: #fff;*/

	border: 2px solid #1e90ff;
	/*background-color: #fe5cff;*/
	background-color: transparent;
	padding: 7px 7px 7px 15px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.boxtitle {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	color: #3e3a48;
	padding-top: 18px;
	padding-left: 0px;
	font-weight: 400;
}

.fa-envelope {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
}

.fa-phone {
	text-decoration: none;
	color: #27aae0;
	font-size: 25px;
}

.fa-map-marker {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
}

.fa-sign-in {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
}

.fa-mobile {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
}

.fa-instagram {
	text-decoration: none;
	font-size: 18px;
}

.fa-facebook {
	text-decoration: none;
	font-size: 18px;
}

.fa-youtube {
	text-decoration: none;
	font-size: 18px;
}

.responsive-image {
	height: auto;
	/* width:100%; */
	max-width: 100%;
}

/*scroll to top */
.scroll-to-top {
	position: fixed;
	background: url(../img/scroll-to-top.png) no-repeat;
	cursor: pointer;
	bottom: 1em;
	right: 0px;
	width: 55px;
	height: 55px;
	padding-right: 4em;
	padding-bottom: 1em;
	display: none;
	z-index: 999;
}

.scroll-to-top:hover {
	position: fixed;
	background: url(../img/scroll-to-top-hover.png) no-repeat;
	cursor: pointer;
	bottom: 1em;
	right: 0px;
	width: 55px;
	height: 55px;
	padding-right: 4em;
	padding-bottom: 1em;
	display: none;
	z-index: 999;
}
/*scroll to top */

.form-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 17px;
	color: #787878;
	font-weight: 400;
}

.confirm_message {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 26px;
	color: #787878;
	padding: 50px 20px 120px 20px;
	font-weight: 700;
}

.home_title {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	color: #061138;
	font-weight: 800;
	/*text-align:center; */
}

.home_title_profile {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	color: #061138;
	font-weight: 600;
	text-align: center;
	/*text-align:center; */
}

.home_title span {
	font-family: 'Manrope', sans-serif;
	font-size: 36px;
	color: #27aae0;
	font-weight: 800;
	/*text-align:center; */
}

.home_title_small {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #28aae0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
	/*text-align:center; */
}

.home_title_small2 {
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
	color: #061138;
	font-weight: 800;
	padding-bottom: 20px;
	/*text-align:center; */
}
/**** yacht details table ****/
.flex-parent-element {
	display: flex;
	width: 100%;
	border-bottom: 1px #76d5fc solid;
}

.flex-parent-element2 {
	display: flex;
	width: 50%;
	border-bottom: 1px #76d5fc solid;
	margin-left: auto;
	margin-right: auto;
}

.flex-child-element {
	flex: 1;
	margin: 15px 10px 15px 10px;
}

.flex-child-element:first-child {
	margin-right: 20px;
}
/**** yacht details table ****/

.booknow,
.salenow {
	display: inline-block;
	height: 40px;
	width: 140px;
	padding: 9px 7px 7px 7px;
	color: #fff;
	text-align: center;
	font-weight: 600;
	color: #fff;
	/*line-height: 38px;
    letter-spacing: 0.1rem;*/
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
	/*background-color: #fd39ff;*/
	background-color: #27aae0;
	/*border: 1px solid #feadff;*/
	border: 0px solid #1d85b0;
	cursor: pointer;
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.booknow:hover,
.salenow:hover {
	color: #fff;
	/*border-color: #fe8aff;*/
	/*border-color: #fff;*/

	border: 0px solid #ff0000;
	/*background-color: #fe5cff;*/
	background-color: #061138;
	padding: 9px 7px 7px 7px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.main_text {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #6f7b91;
	font-weight: 400;
	/*text-align:center; */
}

.main_text_strong {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #6f7b91;
	font-weight: 600;
	/*text-align:center; */
}

.main_text2 {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #6f7b91;
	font-weight: 400;
	margin-bottom: 5px;
	/*text-align:center; */
}

.custom li {
	font-family: 'Manrope', sans-serif;
	color: #6f7b91;
	list-style-image: url('../img/tick.png');
	margin-bottom: 5px;
	margin-left: 20px;
	text-align: left;
}

.custom li span {
	padding-left: 10px;
}

.pb-center-column h2 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #3f3f45;
	border-bottom: 1px solid #ebebeb;
	font-size: 16px;
	/*font-weight: bold;*/
	margin-bottom: 20px;
	margin-top: 5px;
	padding-bottom: 10px;
	position: relative;
}

.pb-center-column h2:after {
	border-bottom: 2px solid #27aae0;
	bottom: -2px;
	content: '';
	left: 0;
	position: absolute;
	width: 120px;
}

/************* image zoom *********/

/* [1] The container */
.img-hover-zoom {
	/*max-height: 300px;*/ /* [1.1] Set it as per your need */
	overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
	transition: transform 0.5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
	transform: scale(1.1);
	/*** transform: scale(1.2) rotate(10deg); ***/ /* for zoom*/
}

/************* image zoom *********/
@media (min-width: 768px) and (max-width: 993px) {
	.loyaltytitle {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 300;
		color: #384140;
		font-size: 22px;
	}

	.loyaltytext {
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 300;
		color: #4f5151;
		font-size: 13px;
	}

	.home_btn {
		font-family: 'Roboto Condensed', sans-serif;
		text-align: center;
		color: #2d2d2d;
		font-size: 13px;
		font-weight: 400;
		display: block;
		border: 2px solid #828282;
		width: 100px;
		padding: 8px;
		margin-left: auto;
		margin-right: auto;
		text-decoration: none;
		background: transparent;
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
		text-decoration: none;
	}
	.home_btn:hover {
		color: #d6d6d6;
		border: 2px solid #d6d6d6;
		background: #2d2d2d;
	}

	.space20top {
		padding-top: 8px;
	}

	.space30top {
		padding-top: 8px;
	}
}

@media (min-width: 320px) and (max-width: 767px) {
	.flex-container {
		width: 100%;
		min-height: 300px;
		margin: 0 auto;
		display: -webkit-flex; /* Safari */
		display: flex; /* Standard syntax */
		flex-direction: column;
	}

	.flex-container .newcolumn {
		padding: 10px;
		min-height: 450px;
		background: #f8f8f8;
		-webkit-flex: 1; /* Safari */
		-ms-flex: 1; /* IE 10 */
		flex: 1; /* Standard syntax */
	}

	.hiddenmobile {
		display: none;
	}

	.hiddendesktop {
		display: block;
	}
}
