<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* theme colours */
:root {
			--darkblue: #003371;
			--darkbluehover: #0053B9;
			--beige: #F0F0E5;
			--gold: #B29A6B;
			--darkgrey: #666666;
			--black: #000000;
			--white: #FFFFFF;

		}

/* Featured Post */
	.featured-post {
		align-items: center;
	}
	.subtitle {
		color: var(--darkblue);
		text-transform: uppercase;
		font-weight: bold;
		font-size: 16px;
	}
	.featured-post .post-left,
	.featured-post .post-right {
		width: 50%;
	}
	.featured-post .post-left img {
		width: 100%;
	}
	.featured-post .post-right {
		padding-left:30px ;
	}

	/* TESTIMONY SLIDER */

	.testimony-slider-container .testimony-slider {
		width: 70%;
		margin: auto;
		padding-top: 30px;
	} 
	.testimony-slider .author-name {
		font-style: italic;
		color: var(--gold);
	}
/* blocks large-small */

					
					section.blocks-large-small h2 {
						text-align: center;
						margin: auto;
					}
					section.blocks-large-small .single-block {
						
						position: relative;
						height: 250px;
						overflow: hidden;
						transition: all 0.3s;
					}
					
					.destinations .destination-rows {
						display: flex;
						justify-content: space-between;
						flex-wrap: wrap;

					}
					.destination-rows .single-destination {
						width: 370px;
						height: 250px;
						
						overflow: hidden;
						position: relative;
						margin-bottom: 30px;
					}
					.single-destination h4 {
						color: #fff;
						font-size: 32px;
						line-height: 32px;
						padding: 0 10px;
					}
					section.blocks-large-small .single-block .block-background,
					.single-destination .block-background {
						background-size: cover;
						background-position: center center;
						height: 100%;
						width: 100%;
						transition: all 0.3s;
					}

					section.blocks-large-small .single-block .block-content,
					.single-destination .block-content {
						position: absolute;
						top: 50%;
						transform: translateY(-50%);
						left: 0;
						right: 0;
						margin: auto;
						text-align: center;
						z-index: 5;
						text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); 

					}
					section.blocks-large-small .single-block .block-overlay,
					.single-destination .block-overlay {
						background-color: rgba(0,0,0,0.2);
						position: absolute;
						top: 0;
						bottom: 0;
						left: 0;
						right: 0;
						height: 100%;
						width: 100%;
						z-index: 2;
						transition: all 0.3s;
					}
					section.blocks-large-small .single-block:hover .block-overlay,
					.single-destination:hover .block-overlay 
					 {
						background-color: rgba(0,0,0,0.4);
					}

					section.blocks-large-small .single-block:hover .block-background,
					.single-destination:hover .block-background {
						transform: scale(1.2);
					}
					section.blocks-large-small .single-block .block-content .block-title,
					.single-destination .block-title{
						font-family: "Outfit";
						font-weight: 800;
						font-size: 32px;
						color: #fff;
						display: block;
						line-height: 32px;
						margin-bottom: 14px;
						padding:0 10px;
						position: relative;
						letter-spacing: 0px;
					}
					section.blocks-large-small .single-block .block-content .block-title.underlined:after {
						content: " ";
						position: absolute;
						bottom: -10px;
						width: 50px;
						height: 3px;
						background-color: #fff;
						left: 0;
						right: 0;
						margin: auto;
					}
					section.blocks-large-small .single-block .block-content .block-text{
						color: #fff;
						display: block;
						font-family: "Outfit";
						font-weight: 700;
						font-size: 16px;
						padding:0 10px;
					}
					section.blocks-large-small .block-row {
						display: flex;
						justify-content: space-between;
						padding-top: 30px;

					}
					section.blocks-large-small .block-row.three-blocks {
						justify-content: flex-start;
					}
					section.blocks-large-small .block-row.three-blocks .single-block{
						width: calc(33% - 30px);
					}
					section.blocks-large-small .block-row.three-blocks .single-block:first-child {
						margin-right: 15px;
					}
					section.blocks-large-small .block-row.three-blocks .single-block:nth-child(2){
						margin-left: 15px;
						margin-right: 15px;
					}
					section.blocks-large-small .block-row.three-blocks .single-block:nth-child(3){
						margin-left: 15px;
					}
					section.blocks-large-small .block-row.three-blocks .single-block {
						width: 370px;
					}
					section.blocks-large-small .block-row.small-first .single-block,
					section.blocks-large-small .block-row.large-first .single-block:first-child  {
						width: calc(100% - 400px);
					}

					section.blocks-large-small .block-row.small-first .single-block:first-child,
					section.blocks-large-small .block-row.large-first .single-block {
						width: 370px;
					}

/* Accordions */


						.accordion-intro {
						text-align: left;
					}
					.accordion-intro h2 {
						text-align: center;
					}
					.single-accordion {
						color: #fff;
						margin-bottom: 6px;
					}
					.single-accordion .accordion-content {
						border: 2px solid var(--goldhover);
						border-top: 0;
						color: #000;
						display: none;
						padding: 30px;
						text-align: left;
					}
					.single-accordion .accordion-title {
						display: flex;
						justify-content: space-between;
						align-items: center;
						padding: 20px;
						cursor: pointer;
						color: var(--goldhover);
						background-color: var(--white);
						border: 2px solid var(--goldhover);
						text-transform: uppercase;
					}
					.single-accordion .accordion-title.open {
						background-color: #efefef;
						color: #444444;
					}

/* favourites */

.hot-slide {
 	position: relative;
 	background: var(--white);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    margin: 0 0 25px 0;
}

 .hot-slide:hover {
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.favourites-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-row-gap: 15px;
	grid-column-gap: 15px;
}

.cruise-info h3 a{
	font-family: "Outfit",sans-serif;
	color: var(--goldhover);
	font-weight: 300;
}
/*
.hot-item h3 {
	position: relative;
	color: var(--blue);
	margin: 0 0 10px 0;
	font-size: 22px;
	font-weight: 400;
}*/

.hot-item h5 {
	position: relative;
	color: var(--blue);
	margin: 20px 0;
	font-size: 16px;
	font-weight: 400;
}

.hot-item p {
	margin: 0;
}

.hot-item i {
	color: var(--orange);
}


					/* Cruise Slider */


.cruise-slider .slick-list {
    max-width: 1100px;
    margin: 25px auto;
    width: 100%;
}

.cruise-slider .slick-slide {
    margin:0 10px;
    border: 1px solid #eee;
 }

 .cruise-slide {
 	position: relative;
 	background: #fff;
    margin: 0 0 25px 0;
}




.cruise-title {
    padding: 40px 20px;
    text-align: center;
    height: 200px;
}

.cruise-title img {
	width: 100%;
	position: relative;
	max-width: 300px;
	height: auto;
	display: block;
	margin: 0 auto;
	text-align: center;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

.cruise-item {
	border-bottom: 2px dashed #eee;
	padding: 20px;
}

.cruise-item:last-of-type {
	border:0;
}

.cruise-item h3 {
	position: relative;
	margin: 0 0 10px 0;
	font-size: 22px;
	font-weight: 400;
}

.cruise-item h5 {
	position: relative;
	margin: 20px 0;
	font-size: 16px;
	font-weight: 400;
}

.cruise-item p {
	margin: 0;
}

.cruise-item i {
}

.fave {
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    right: 0px;
    top: 0;
    z-index: 1;
    color: #fff;
    transition: all 0.3s ease-in;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fave:hover { background:rgba(0, 0, 0, 0.7); }

.fave i {
    color: #fff;
    font-size: 14px;
}

.cruise-price {
    color: var(--darkgrey);
    font-size: 16px;
    font-weight: 900;
    margin: 10px 0;
}

.cruise-price span {
	font-size: 22px;
	font-weight: 900;
}
.cruise-image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
}
.cruise-info {
	padding: 15px;
	text-align: center;
	min-height: 300px;
}


	/* carousel slider */


		.dest-slider .slick-track {
			padding: 50px 0;
		}
		.dest-slider .slick-slide {
			/*width: 370px;
			height: 250px;
			padding-top: 50px;*/
		}
		.dest-slider .dest-slide {
			position: relative;
		}
		.dest-slider .dest-slide .dest-title {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%);
			text-align: center;
			font-size: 28px;
			line-height: 1;
			font-weight: 700;
			color: #fff;
		}
		.dest-slider .slick-center img{
			transform: scale(1.5);
		}

		
		.dest-slider .slick-center .dest-slide {
			z-index: 5;
		}
		.dest-slider .slick-slide {
			visibility: hidden;
			padding: 0 30px;
		}
		.dest-slider .slick-slide.slick-active {
			visibility: visible;

		}

		.dest-slider img {
			width: 100%;
		}
		.dest-slider .slick-dots,
		.cruiseline-slider .slick-dots,
		.blog-post-slider .slick-dots,
		.cruise-slider .slick-dots {
			width: auto;
			right: 50px;
		}
		.dest-slider .slick-dots li button:before,
		.cruiseline-slider .slick-dots li button:before,
		.blog-post-slider .slick-dots li button:before,
		.cruise-slider .slick-dots  li button:before {

			border-color: #fff;
		    border: 1px solid #fff;
		    border-radius: 50%;
		    background-color: var(--gold);
		    opacity: 1;
		    color: transparent;
		    width: 15px;
		    height: 15px;
		}

		.dest-slider .slick-dots li.slick-active button:before,
		.cruiseline-slider .slick-dots li.slick-active button:before,
		.blog-post-slider .slick-dots li.slick-active button:before,
		.cruise-slider .slick-dots li.slick-active button:before,
		.slick-dots li button:hover:before {
			background-color: rgba(0,0,0,0.3);
			color: transparent;
		}
		

					@media all and (max-width: 969px){
						.testimony-slider-container .testimony-slider {
							width: 100%;
						}

						/* featured post */

						.featured-post .post-left,
						.featured-post .post-right {
							width: 100%;
						}
						.featured-post .post-right {
							padding-left: 0;
						}

						section.blocks-large-small .block-row {
			flex-wrap: wrap;
			padding-top: 0;
		}
		section.blocks-large-small .block-row .single-block,
		section.blocks-large-small .block-row.small-first .single-block:first-child,
		section.blocks-large-small .block-row.small-first .single-block,
		section.blocks-large-small .block-row.large-first .single-block:first-child,
		section.blocks-large-small .block-row.large-first .single-block {
			width: 100%;
			margin-bottom: 30px;
		}
		section.blocks-large-small .block-row.three-blocks .single-block {
			width: 100%;
			margin-right: 0;
			margin-left: 0;
		}
		section.blocks-large-small .block-row.three-blocks .single-block:first-child,
		section.blocks-large-small .block-row.three-blocks .single-block:nth-child(2),
		section.blocks-large-small .block-row.three-blocks .single-block:nth-child(3) {
			margin-right: 0;
			margin-left: 0;
		}

		.dest-slider .dest-slide {
			width: 150px;
			height: 150px;
			margin: auto;
		}
					}
					@media all and (max-width:  768px){
						.dest-slider .slick-dots,
		.cruiseline-slider .slick-dots,
		.blog-post-slider .slick-dots,
		.cruise-slider .slick-dots {
			width: auto;
			right: 0;
			left: 0;
					}
				}
					/* Gallery */

					ul.gallery-list {
					list-style: none;
					padding: 0;
					margin: 0;
					display: flex;
					flex-wrap: wrap;
				}
				ul.gallery-list li {
					flex: 1 1 193px;
					min-height: 193px;
					max-width: 390px;
					
					overflow: hidden;
					border: 1px solid #fff;
				}
				ul.gallery-list li img {
					object-fit: cover;
					width: 100%;
					height: 100%;
					transition: all 0.2s;
				}
				ul.gallery-list li img:hover {
					transform: scale(1.2);
				}

/* cta_blocks */

.white-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
    margin: 50px auto 0 auto;
}
.all-ships.white-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}


.white-col {
	position: relative;
    background: #000;
    height: 300px;
}

.white-col .ship-background {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /*opacity: 0.7;*/
}

.white-col h5 {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: #fff;
	text-align: center;
	font-family: "Outfit", sans-serif;
	font-weight: 900;
	font-size: 32px;
}
.white-col h5 a { color:#fff; }


.white-col-bottom p,
.white-col p {
	margin: 0;
	font-size: 14px;
	color: #fff;
}

.white-col {
	position: relative;
}
.white-col-inner {
	    position: absolute;
    top: 50%;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}


.red-section .white-col:before {
     content: "";
    position: absolute;
    background: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.red-section {
    color: #fff;
}
.white-col:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.white-col:hover:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}
.white-col .read-more {
	text-align: center;
	opacity: 0;
	transition: all 0.3s;
}
.white-col:hover .read-more {
	opacity: 1;
}</pre></body></html>