/* ---------- Settings ---------- */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&family=Playfair+Display&display=swap');

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.5px;
	color: #222;
	line-height: 200%;
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
	overflow-x: hidden;
}

a, a:hover, a:active, a:visited {
	color: inherit;
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

i {
	margin-right: 10px;
}

iframe {
	border-radius: 5px;
	min-height: 300px;
}

.hide {
	display: none !important;
}

.s-desk {
	display: block;
}

.s-mobile {
	display: none;
}

.vcenter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ---------- Effects ---------- */

.shadow {
	-webkit-box-shadow: 0 10px 6px -6px #000;
	-moz-box-shadow: 0 10px 6px -6px #000;
	box-shadow: 0 10px 6px -6px #000;
}

/* ---------- Bootstrap ---------- */

.navbar-brand img {
	height: 40px;
}

.container-fluid, .row, [class^="col-"] {
	margin: 0;
	padding: 0;
}

.nav-item img {
	height: 30px;
	width: 30px;
	margin: 9px 0px;
	border-radius: 100%;
}

.nav-lang {
	margin-left: 20px;
}

.lang-item:first-child {
	margin-right: 10px;
}

/* ---------- Margin / Padding ---------- */

.section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.mrb-25 {
	margin-bottom: 25px;
}

.mrb-25-m {
	margin-bottom: 0px;
}

.pdr-25-d {
	padding-right: 25px;
}

.mrr-25-d {
	margin-right: 25px;
}

.mrr-10-d {
	margin-right: 10px;
}

/* ---------- Typography ---------- */

.head-3, .head-4 {
	font-family: 'PT Serif', serif;
	font-weight: 700;
}

.head-3 {
	font-size: 45px;
	line-height: 120%
}

.head-4 {
	font-size: 35px;
	line-height: 120%
}

/* ---------- Backgrounds ---------- */

.bg-two {
	background-color: #FAFAFA;
	color: #222;
}

.bg-three {
	background-color: #456990;
	color: #F0F0F0;
}

.bg-four {
	background-color: #1d3557;
	color: #F0F0F0;
}

.bg-price {
	background-color: #d9d9d9;
	color: #222;
}

.bg-img {
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/* ---------- Buttons ---------- */

button {
	border: none;
}

button:focus {
	outline: 0 !important;
}

.btn-auto {
	display: inline-block;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	cursor: pointer;
}

.btn-full {
	width: 100%;
	display: block;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: center;
	padding: 12px 24px;
	border-radius: 5px;
	cursor: pointer;
}

.btn-one {
	transition: background-color 0.5s ease;
	transition: color 0.5s ease;
	background-color: #F0F0F0;
	color: #0E2f44;
}

.btn-two {
	transition: background-color 0.5s ease;
	transition: color 0.5s ease;
	background-color: #2565AE;
	color: #F0F0F0;
}

.btn-three {
	transition: background-color 1s ease;
	transition: color 1s ease;
	background-color: #0E2f44;
	color: #F0F0F0;
}

.btn-four {
	transition: background-color 1s ease;
	transition: color 1s ease;
	background-color: #457b9d;
	color: #F0F0F0;
}

.btn-wp {
	transition: background-color 0.5s ease;
	transition: color 0.5s ease;
	background-color: #25d366;
	color: #F0F0F0;
}

.btn-one:hover, .btn-wp:hover, .btn-four:hover {
	background-color: #0E2f44;
	color: #F0F0F0;
}

.btn-two:hover, .btn-three:hover {
	background-color: #F0F0F0;
	color: #222;
}

/* ---------- Table ---------- */

.table-wrapper {
	width: 100%;
	overflow-x: scroll;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.table-wrapper::-webkit-scrollbar {
	display: none;
}

table {
	width: 100%;
}

th {
	font-weight: inherit;
	min-width: 150px;
	border: 1px solid #457b9d;
	text-align: center;
	padding: 12px 24px;
	background-color: #1D3557;
	color: #F0F0F0;
}

td {
	min-width: 150px;
	color: #457b9d;
	border: 1px solid #457b9d;
	text-align: center;
	padding: 12px 24px;
}

/* ---------- Form Elements ---------- */

.form-wrapper {
	padding: 25px;
	background-color: rgba(255,255,255,0.6);
	color: #F1F1F1;
	border-radius: 5px;
}

input, select {
	width: 100%;
	display: block;
	padding: 12px 24px;
	border: inherit;
	border-radius: 5px;
}

textarea {
	width: 100%;
	height: 150px;
	display: block;
	padding: 12px 24px;
	border: inherit;
	border-radius: 5px;
	resize: none;
}

input:focus, select:focus, textarea:focus {
	outline: inherit;
	box-shadow: 0 0 0 2px #2565AE;
}

/* ---------- Section for Img ---------- */

.img-wrapper {
	width: 100%;
}

.img-wrapper img {
	width: 100%;
	border-radius: 5px;
}

/* ---------- List Item Column ---------- */

.list-wrapper {
	display: flex;
	flex-direction: column;
}

.list-item {
	flex-grow: 1;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	background-color: #F0F0F0;
	color: #0E2f44;
	text-align: center;
	margin-bottom: 15px;
}

.list-wrapper-row {
	display: flex;
	flex-direction: row;
}

.list-item-row {
	flex-grow: 1;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	background-color: #F0F0F0;
	color: #0E2f44;
	text-align: center;
	margin-right: 10px;
}

.list-item-row:last-child {
	margin-right: 0px;
}

/* ---------- Room Card ---------- */

.card-item {
	background-color: #1d3557;
	border-radius: 5px;
}

.room-img {
	width: 100%;
}

.room-img img {
	width: 100%;
	border-radius: 5px 5px 0px 0px;
}

.card-text {
	padding: 24px;
	color: #F0F0F0;
}

.text-title {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 24px;
}

.property-wrapper {
	display: flex;
	flex-direction: row;
	margin-bottom: 24px;
}

.property-item {
	flex-grow: 1;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	background-color: #457b9d;
	color: #F0F0F0;
	text-align: center;
	margin-right: 10px;
}

.property-item:last-child {
	margin-right: 0px;
}

/* ---------- Ekko Lightbox ---------- */

.gl-row {
	display: flex;
	flex-direction: row;
}

.gl-item {
	flex-grow: 1;
	position: relative;
	overflow: hidden;
	margin-right: 25px;
	margin-bottom: 25px;
	border-radius: 5px;
}

.gl-item:last-child {
	margin-right: 0px;
}

.square-img {
	width: 100%;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	border-radius: 5px;
}

.square-img img {
	width: 100%;
	border-radius: 5px;
}

.hover-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 1.5em;
	color: #F0F0F0;
	text-align: center;
	transition: .5s ease;
	opacity: 0;
}

.filter {
	position: absolute;
	width: 100%;
	top: 0px;
	bottom: 0px;
	background-color: rgba(255,255,255,0.2);
	transition: .5s ease;
	opacity: 0;
}

.gl-item:hover .hover-text {
	opacity: 1;
}

.gl-item:hover .filter {
	opacity: 1;
}

/* ---------- Swiper ---------- */

.swiper-container, .swiper-rooms {
	display: block;
	width: 100%;
	overflow: hidden;
}

.swiper-slide {
	width: 100%;
	height: 100%;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.corners {
	border-radius: 5px;
}

/* ---------- Contact ---------- */

.con-info-wrapper {
	padding: 25px;
	background-color: rgba(255,255,255,0.6);
	color: #222;
	border-radius: 5px;
}

.contact-item {
	height: 100%;
}

/* ---------- Footer ---------- */

.footer {
	display: flex;
	justify-content: space-between;
}

.footer-item {
	flex: 1;
}

.f-left {
	text-align: left;
}

.f-center {
	text-align: center;
}

.f-right {
	text-align: right;
}

a.social {
	color: #222;
}

@media (max-width: 768px) {

	.s-desk {
		display: none;
	}

	.s-mobile {
		display: block;
	}

	.mrb-25-m {
		margin-bottom: 25px;
	}

	.mrr-25-d {
		margin-right: 0px;
	}

	.mrb-0-m {
		margin-bottom: 0px;
	}

	.pdy-50 {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.pdr-25-d {
		padding-right: 0px;
	}

	.head-3 {
		font-size: 1.8em;
		line-height: 150%;
	}

	.btn-auto {
		width: 100%;
		display: block;
		font-weight: 400;
		letter-spacing: 1px;
		text-align: center;
		padding: 12px 24px;
		border-radius: 5px;
		cursor: pointer;
	}

	.nav-lang {
		margin-left: 0px;
	}

	.list-item {
		margin-bottom: 15px;
		text-align: left
	}

	.list-wrapper-row {
		flex-direction: column;
		margin-bottom: 0px;
	}

	.list-item-row {
		margin-right: 0px;
		margin-bottom: 15px;
		text-align: left
	}

	.property-item {
		font-size: 0.8em;
	}

	.gl-row {
		flex-direction: column;
	}

	.gl-item {
		margin-right: 0px;
		margin-bottom: 25px;
	}

	.text-title {
		font-size: 1.3em;
	}

	.contact-item {
		height: auto;
		margin-bottom: 25px;
	}

	.footer {
		flex-direction: column;
	}

	.footer-item {
		margin-bottom: 25px;
	}

	.footer-item:last-child {
		margin-bottom: inherit;
	}

	.f-left, .f-center, .f-right {
		text-align: center;
	}

}