*, *::after, *::before { margin: 0; padding: 0; box-sizing: inherit; }

html { font-size: 62.5%; }

body { background: #000; padding: 0; box-sizing: border-box; }

:root {
	--red: #993300;
}

@import url("https://use.typekit.net/lub3eba.css");


.mainContent {
	width: 860px;
	background: #FFF;
	min-height: 20rem;
	margin: 1rem auto;
	border-radius: 0.5rem;
	overflow: hidden;
}

.logo {
	background-color: var(--red);
}

.logo img {
	width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 180px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
	background-color: #FFF !important;
	opacity: 0.5 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1 !important;
}

.menu {
	background: var(--red);
	padding: 2rem 0 0 0;
}

.menu ul {
	display: flex;
	justify-content: center;
	gap: 3rem;
}

.menu ul li {
	font-family: "museo-sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
	list-style-type: none;
	text-transform: lowercase;
	letter-spacing: 1px;
	position: relative;
}

.menu ul li a {
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px solid var(--red);
}

.menu ul li a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background-color: #FFF;
	bottom: -0.2rem;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .2s ease-in-out;
}

.menu ul li a:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.contentRow {
	padding: 3rem 6rem;
}

.twoColumns {
	display: grid;
	grid-template-columns: 45% 45%;
	column-gap: 5rem;
	position: relative;
}

.twoColumns::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #000;
	grid-column: 2 / 3;
	grid-row: 1 / -1;
	transform: translateX(-2.5rem);
}

.columnTwo {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto;
	align-items: start;
}

h2, span.intro {
	font-family: "museo-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.8rem;
	color: var(--red);
	padding: 0 0 1rem 0;
}

h2.booking {
	padding: 0;
}

h3 {
	font-family: "museo-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4rem;
	color: #000;
	padding: 0;
}

p {
	font-family: "museo-sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	padding: 0 0 1rem 0;
}

p a {
	color: var(--red);
	font-weight: 500;
}

ul {
	padding: 0 0 2rem 0;
}

ul.last {
	padding: 0;
}

li {
	font-family: "museo-sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.3;
	padding: 0;
	list-style-type: none;
}

.onePanama {
	width: 100%;
	margin: 2rem 0 0 0;
}


.footer {
	padding: 3rem 0;
	border-top: 1px dotted var(--red);
}

p.center {
	text-align: center;
	padding: 0;
}

/* --------------------[ GALLERY ]-------------------- */

.galleryHead {
	
}	
	
.galleryGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 2rem;
}

.galleryImages {
	max-width: 100%;
	aspect-ratio: 650 / 436;
	overflow: hidden;
	border-radius: 0.5rem;
	display: flex;
}

.galleryImages img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.galleryImages.image-01 {
	grid-column: 1 / -1;
}

.galleryImages.image-12 {
	grid-column: 1 / -1;
}

.galleryImages.image-13 {
	aspect-ratio: 353 / 480;
	grid-column: 2 / 3;
	grid-row: 6 / span 2;
	height: 100%;
}


/* --------------------[ THINGS TO DO ]-------------------- */

.threeColumns {
	display: grid;
	grid-template-columns: 1fr 25rem;
	column-gap: 5rem;
	position: relative;
}

.columnOneThird img {
	border-radius: 0.5rem;
	margin: 0 0 2rem 0;
}

.columnOneThird img:first-of-type {
	margin: 3.5rem 0 2rem 0;
}

.columnTwoThirds.toDo h3 {
	padding: 2.2rem 0 0.5rem 0;
	border-top: 1px dotted var(--red);
	line-height: 1.3;
}

.columnTwoThirds.toDo h3:first-of-type {
	padding: 0 0 0.5rem 0;
	border-top: none;
	line-height: 1.3;
}

.columnTwoThirds.toDo p {
	padding: 0 0 2rem 0;
}

.columnTwoThirds.toDo p:has(+p) {
  padding-bottom: 0.5rem !important;
}


/* --------------------[ SPECIALS ]-------------------- */

.p-bot2 {
	padding-bottom: 2rem;
}

ul.bullets {
	
}

ul.bullets li {
	position: relative;
	padding: 0 0 0.5rem 2rem;
}

ul.bullets li::before {
	content: '';
	position: absolute;
	width: 1rem;
	height: 1rem;
	left: 0;
	bottom: 0.9rem;
	background-color: var(--red);
}

p:has(+ul) {
  padding-bottom: 0.5rem !important;
}



/*-----------------------------------------------[925px]------------------------------------------------------*/

@media only screen and ( max-width: 925px ) {
	
.mainContent {
	width: 90%;
}

.contentRow {
	padding: 2rem 3rem;
}


}	
	
/*-----------------------------------------------[670px]------------------------------------------------------*/

@media only screen and ( max-width: 670px ) {
	
.menu ul {
	gap: clamp(1rem, 3vw, 3rem);
}

.menu ul li {
	font-size: clamp(1rem, 2vw, 1.5rem);
}


.twoColumns {
	grid-template-columns: 100%;
	row-gap: 3rem;
}

.twoColumns::after {
	display: none;
}

.columnOne {
	grid-column: 1 / -1;
	grid-row: 2 / 3;
}

.columnOne h2,
.columnOne h3,
.columnOne ul li {
	text-align: center;
}

.columnTwo {
	grid-column: 1 / -1;
	grid-row: 1 / 2;
}

.columnTwo h2,
.columnTwo h3,
.columnTwo p,
.columnTwo ul li {
	text-align: center;
}

.calendar {
	text-align: center;
}

h2.booking {
	padding: 0;
}

.facebook {
	max-width: 6rem;
	max-height: 6rem;
	margin: 2rem auto;
	align-self: start;
}

a.onePanamaLink {
	margin: 3rem 0 0 0;
}

/* COMMENTS */

.threeColumns {
	display: grid;
	grid-template-columns: 100%;
	column-gap: 5rem;
	position: relative;
}

.columnOneThird {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 3rem 0 0 0;
}



.columnOneThird img {
	margin: 0;
	width: 100%;
}

.columnOneThird img:first-of-type {
	margin: 0;
}

}	

/*-----------------------------------------------[550px]------------------------------------------------------*/

@media only screen and ( max-width: 550px ) {
	
.galleryGrid {
	grid-template-columns: 100%;
}

.galleryImages.image-13 {
	grid-column: 1 / 2;
}

	
}

	
/*-----------------------------------------------[500px]------------------------------------------------------*/

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

.columnOneThird {
	grid-template-columns: 100%;
}

	
}