/* ----------------------------------------------- */
/* ---------------- INITIAL SETUP ---------------- */
/* ----------------------------------------------- */

:root {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background-color: #fafafa;
	font-size: 18px;
}

h4 {
	font-style: normal;
	font-weight: 600;
	line-height: 162.69%;
	color: #241e09;
	padding: 5px 0;
	font-size: 24px;
}

/* ----------------------------------------------- */
/* -------------------- LAYOUT ------------------- */
/* ----------------------------------------------- */
.container {
	/*max-width: 1050px;*/
	margin: 0 auto;
	padding: 1.5rem 0.5rem;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.col {
	padding: 10px;
	flex-wrap: nowrap;
}



.center-lg {
	justify-content: center;
}

/* ----------------------------------------------- */
/* ---------------- HEADER SECTION --------------- */
/* ----------------------------------------------- */
.page-header-container {
	margin-bottom: 70px;
}

.page-header {
	margin-top: 10px;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
}

hr {
	border-top: 1.5px solid #D2A74A;
	width: 104px;
	margin: 0.5rem auto 1rem;
}

.page-sub-header {
	text-align: center;
	letter-spacing: 0.01em;
	font-weight: 300;
	color: #3b331a;
}
/* ----------------------------------------------- */
/* ----------- Upper SECTION ------------ */
/* ----------------------------------------------- */
.upper-section {
	padding: 0 0 80px;
}

.right-title {
	font-size: 165%;
	font-weight: 600;
	margin: 25px 0 15px;
	line-height: 45px;
	letter-spacing: 0.01em;
}

.right-sub-title {
	font-size: 74%;
	color: #3b331a;
	font-weight: 300;
	margin-bottom: 20px;
}

.facilities-list {
	list-style: none;
	margin-bottom: 30px;
}

.facilities-list li {
	margin: 12px 0;
}

.list-icon {
	height: 17px;
	vertical-align: middle;
	margin-right: 5px;
}

.list-text {
	display: inline-block;
	font-size: 17px;
}

.btn {
	border-radius: 3px;
	border: 1px solid #D2A74A;
	text-transform: uppercase;
	font-size: 55%;
	padding: 10px 18px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s;
	margin-right: 10px;
}

.btn-fill {
	background-color: #D2A74A;
	color: #fff;
}

.btn-fill:hover,
.btn-fill:active {
	background-color: #D2A74A;
	border: 1px solid #D2A74A;
}

.btn-ghost {
	color: #D2A74A;
	background-color: #fff;
}

.btn-ghost:hover,
.btn-ghost:active {
	background-color: #D2A74A;
	color: #fff;
}

.btn-large {
	font-size: 65%;
	padding: 9px 22px;
}

/* ----------------------------------------------- */
/* ---------------- OTHER FACILITIES ------------- */
/* ----------------------------------------------- */

p.imggrid {
	text-align: justify;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	margin-bottom: 7px;
	line-height: 1.5;
	color: #999;
	width: 100%;
}

h4.imggrid2 {
    text-align: justify;

}
p.imggrid2 {
    text-align: justify;

    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 7px;
    line-height: 1.5;
    color: #999;
}

.containera {
	/*max-width: 100rem;*/
	margin: 0 auto;
	/* padding: 0 2rem 2rem; */
	padding-bottom: 20px;
}

.up h1 {
	text-align: center;
	font-size: 20px;
	padding-bottom: 30px;
	position: relative;
}
.up h1::after {
	display: block;
	height: 1px;
	background-color: #D2A74A;
	content: '';
	width: 90px;
	margin: 5px auto 10px;
}
.up p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 23px;
	text-align: center;
	letter-spacing: 0.01em;
}

img {
	max-width: 100%;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
  /* margin: 0 auto; */
  justify-content: center;
}

.gallery-image {
	display: block;
	/*max-width: 100%;*/
    width: 50%;
	object-fit: cover;
}

/* ----------------------------------------------- */
/* --------------- SUPPORTS ---------------------- */
/* ----------------------------------------------- */
.gallery-item {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@supports (display: grid) {
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		grid-gap: 2rem;
	}

	.gallery,
	.gallery-item {
		margin: 0;
	}
}

/* ----------------------------------------------- */
/* --------------- QUERIES ----------------------- */
/* ----------------------------------------------- */

@media only screen and (max-width: 600px) {

	h3.right-title {
		font-size: 20px;
	}


	p.imggrid,
	p.right-title-content,
	p.list-text {
		font-size: 15px;
		width: 100%;
		padding: 25px;
		text-align: justify;
	}

	p.right-title-content {
		width: 19em;
	}

	.container {
		margin: auto;
		justify-content: center;
	}
    .gallery-item:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .gallery-item {
        flex-direction: column;
    }
    .gallery-image {
        width: 100%;
    }
}

@media (min-width: 700px) {

  .image-col {
    margin-right: 5%;
  }
}

@media (min-width: 1200px) {
	* {
		font-size: 12px;
	}
}


@media (min-width: 1050px) {
	.gallery {
		grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	}
}
