/* Site Presets */
:root {
	--blue:#1C75BC;
}
li,
p {
	font-size: 16px;
	line-height: 26px;
}
img {
	max-width:100%;
	display: block;
}
ul:not([class]) {
	list-style:disc outside;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
	row-gap:15px;
}
ul:not([class]) li {
	position: relative;
}
html, body {
	scroll-behavior:smooth;
	overflow-x:clip !important;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color:var(--blue);
}
a {
	text-decoration:none;
	transition: all ease-in-out 250ms;
}
a:hover {
	color:inherit;
}
h1,h2,h3,h4,h5,h6,p {
	margin:0;
}
h1,h2,h3,h4,h5,h6 {
/* 	font-family: "Playfair Display", serif;
	  font-family: "Oswald", sans-serif;*/
	  font-family: "Fira Sans", sans-serif;
	text-transform: uppercase;
	font-weight: 400 !important;
	color: #3d3d3d !important;
	font-style: normal !important;
	letter-spacing: 5px;
}
p:not(:last-child) {
	margin-bottom:20px;
}
h1,
.h1 {
	font-size:50px;
}
.h2,
h2 {
	font-size:45px;
}
.h3,
h3 {
	font-size:25px;
}
.h4,
h4 {
	font-size:20px;
}
.net22-image {
	width: 35px;
	transform: translateY(1px);
	display: inline-block;
}
.container {
	width:1145px;
	margin-inline:auto;
}
.section--title {
	font-size: 30px;
	font-style: italic;
	font-weight: 300;
	line-height:1;
}
.section--title span {
	font-size: 40px;
}
.circle.icon {
	position:absolute;
	width: 184px;
	height: 184px;
	min-width: 184px;
	min-height: 184px;
	max-width: 184px;
	max-height: 184px;
}
/* Telos Site Presets */

/* Burger */
.burger {
	background-color: transparent;
	border: none;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	display: none;
	padding: 0;
}
.burger .line {
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger .line1 {
	stroke-dasharray: 60 207;
	stroke-width: 2;
}
.burger .line2 {
	stroke-dasharray: 60 60;
	stroke-width: 2;
}
.burger .line3 {
	stroke-dasharray: 60 207;
	stroke-width: 2;
}
html.mobile-menu-visible .burger .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 2;
}
html.mobile-menu-visible .burger .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
	stroke-width: 2;
}
html.mobile-menu-visible .burger .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 2;
}
html.mobile-menu-visible,
html.mobile-menu-visible body {
	overflow: hidden !important;
}
/* TELOS BURGER */

/* Navigation */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 15;
	padding: 12px 35px;
	transition:all linear 400ms;
	border-bottom:1px solid transparent;
}
#header.header-scrolled {
	background-color: var(--blue);
	border-color:rgba(255,255,255,.5);
}
.main-menu li a {
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
	color:#fff;
	position:relative;
	display:flex;
	padding-bottom:8px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2px;
}
.main-menu li a::after {
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:0;
	height:1px;
	background-color:#fff;
	transition:all linear 250ms;
}
.main-menu li a:hover::after {
	width:100%;
}
.main-menu {
	column-gap:45px;
	transform: translateY(4px);
}
.header--right {
	column-gap:60px;
}
.logo-wrapper {
	position: relative;
	width: 134px;
}
.logo-wrapper > a {
	transition:all linear 300ms;
}
.logo-wrapper > a.secondary {
	position: absolute;
	top: 0;
	left: 0;
}
#header.header-scrolled .logo-wrapper > a.secondary,
#header:not(.header-scrolled) .logo-wrapper > a.primary {
	opacity:0;	
	pointer-events:none;
}
.header--actions {
	column-gap:12px;
	align-items:stretch;
}
.lang--item {
	font-size: 13px;
	font-weight: 400;
	line-height: 15.73px;
	color:#fff;
}
.current--lang {
	padding: 20px 15px;
	column-gap: 5px;
	border: 1px solid #fff;
	user-select:none;
}
.current--lang .icon {
	transition:all linear 250ms;
}
.lang--wrapper:hover .current--lang .icon {
	transform: rotate(-90deg);
}
.lang--dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	transition:all linear 400ms;
}
.lang--wrapper {
	position:relative;
}
.lang--dropdown .lang--item {
	padding: 10px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid;
	background-color: var(--blue);
}
.lang--dropdown .lang--item:hover {
	background-color:var(--blue);
	color:#fff;
}
.lang--dropdown {
	border-inline:1px solid #fff;
}
.lang--wrapper:not(:hover) .lang--dropdown {
	opacity:0;
	visibility:hidden;
	pointer-events:none;
}
.cta {
	background-color: #fff;
	padding: 20px 45px;
	color: #3C4F5F;
	line-height: 1;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	max-width:max-content;
	border:1px solid #9EBDD7;
}
.cta:hover {
	color:#fff;
	background-color:#1C75BC;
	border-color:transparent;
}
.header--content {
	max-width: 1920px;
	margin: auto;
}
#header .cta.book--button {
	border-color:transparent;
}
#header.header-scrolled .cta.book--button:hover {
	border-color:#fff;
}
/* Telos Navigation */

/* Hero */
#hero .title {
	font-size: 100px;
	font-weight: 300;
	line-height: 148.3px;
	color: #fff !important;
	letter-spacing: 8px;
}
#hero .title span {
	font-size: 40px;
	font-weight: 100;
	line-height: 48px;
	display: block;
	margin-top: -30px;
}
#hero .hero--image::before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1;
	background: linear-gradient(180deg, rgba(28, 117, 188, 0) 0%, rgba(28, 117, 188, 0.4) 100%);
}
/* End Hero */

/* Villa */
#the-villa {
	padding-block:140px 110px;
}
#the-villa .cols {
	column-gap:55px;
}
#the-villa .cols .col--left {
	min-width:615px;
	max-width:615px;
}
#the-villa .cols .col--right {
	padding-top:65px;
}
#the-villa .cols .col--left .image {
	height:500px;
	position:relative;
	z-index:1;
	transform:unset !important;
}
#the-villa .cols .col--right .section--title {
	color:#000;
}
#the-villa .cols .col--right .text {
	margin-block:30px 40px;
	color:#000;
}
#the-villa .cols .col--right .book--button {
	border:1px solid transparent;
	background-color: var(--blue);
	color: #fff;
}
#the-villa .cols .col--right .book--button:hover {
	border-color:var(--blue);
	background-color:#fff;
	color:var(--blue);
}
#the-villa .cols .col--left .circle.icon {
	top: -90px;
	right: -75px;  
	transform: unset !important;
}
.villa-amenities {
	padding-block:175px 115px;
	background-color: var(--blue);
}
.villa-amenities .cols {
	column-gap:130px;
}
.villa-amenities .cols .col--left {
	min-width:300px;
}
.villa-amenities .cols .col--left .section--title {
	flex-direction:column;
	display:flex;
	position:relative;
	z-index:1;
	color:#fff !important;
}
.villa-amenities .col--right > ul li {
	column-gap: 10px;
	color:#fff;
}
.villa-amenities .col--right > ul li .icon svg path {
	fill:#fff;
}
.villa-amenities .col--right > ul li .text span {
	font-weight:700;
}
.villa-amenities .col--right > .text {
	margin-block: 50px 40px;
	max-width: 600px;
	color:#fff;
}
.villa-amenities .col--right > .text ul {
	padding:0;
	list-style:none;
}
.villa-amenities .col--right > .text ul li:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
	display:none;
}
.villa-amenities .cols .col--left > .circle.icon {
	top: -45px;
	left: -100px;
	width: 204px;
	height: 204px;
	min-width: 204px;
	min-height: 204px;
	max-width: 204px;
	max-height: 204px;
	transform:unset !important;
}
.villa-amenities .cta:hover {
	border-color:#fff;
}
/* End Villa */

/* Gallery */
.gallery--grid {
	margin-top:30px;
	gap:10px;
}
/* .gallery--grid a:nth-child(3n+1),
.gallery--grid a:nth-child(3n+3) {
height:425px;
}
.gallery--grid a:nth-child(3n+2) {
height:360px;
} */
.gallery--grid a {
	height:425px;
}
.gallery--grid a::before,
.gallery--grid a::after {
	content:'';
	position:absolute;
	transition:all ease-in-out 250ms;
	opacity:0;
}
.gallery--grid a::before {
	background-color:rgba(0,0,0,.2);
	height:100%;
	width:100%;
}
.gallery--grid a::after {
	width:40px;
	height:40px;
	background-image:url('../images/open-image.svg');
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
.gallery--grid a:hover::before,
.gallery--grid a:hover::after {
	opacity:1;
}
#gallery {
	padding-inline: 85px;
	max-width: 1920px;
	margin-inline: auto;
}
.gallery--inner {
	padding:55px 85px;
}
.gallery--inner .cta {
	margin:100px auto 0;
}
.gallery--inner .section--title {
	color:#000000;
}
.gallery--grid-single {
	gap: 10px;
}
.gallery--grid-single {
	grid-template-columns:1fr 1.5fr 1fr;
}
/* End Gallery */

/* Location */
.locations--map-content { 
	background-color: #fff;
	padding: 75px 45px 40px 0;
	width: 475px;
}
#location-map {
	min-height: calc(100vh - 120px);
	width: 100%;
	transform:unset !important;
}
.locations--map-wrapper {
	margin: 55px auto;
	max-width: 1920px;
	padding-inline:45px;
}
.locations--map-content .section--title {
	margin: 0 auto 45px;
	color:#000;
}
.locations--map-single > .title {
	padding-block: 20px;
	width: 100%;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #D0D0D0;
	font-size: 17px;
	font-weight: 500;
	user-select:none;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.locations--map-single__dropdown a {
	color: #000;
	font-size: 16px;
	line-height: 1;
}
.locations--map-single__dropdown a.active,
.locations--map-single__dropdown a:hover {
	color:var(--blue);
}
.locations--map-single__dropdown a span {
	color:#000 !important;
	font-size: 16px;
}
.locations--map-single__dropdown a:not(:last-child) {
	margin-bottom:15px;
}
.locations--map-single > .title.active,
.locations--map-single > .title:hover {
	color:var(--blue);
}
.locations--map-single__dropdown {
	display:none;
	padding-block: 20px;
	border-bottom: 1px solid #D0D0D0;
}
.locations--map-results {
	padding-top:40px;
}
.locations--map-results a {
	margin-inline:auto;
	line-height: 1.25;
}
#location {
/* 	margin-block:100px 125px; */
}
#location .location--header {
	background-color:var(--blue);
	padding-block:100px;
}
#location .location--header .section--title,
#location .location--header .text {
	color:#fff !important;
}
#location .location--header .text {
	max-width:600px;
	margin-top:25px;
}
.nearby--beaches {
	background-color:var(--blue);
	padding-block:95px;
	margin-block:130px 110px;
}
.nearby--beaches-inner .text {
	margin-block:40px 30px;
	max-width: 600px;
}
.nearby--beaches-inner .text,
.nearby--beaches-inner .section--title {
	color:#fff;
}
.nearby--beaches-inner .cta:hover {
	border-color: #fff;
}
.useful--links .section--title {
	color:#000;
	margin-bottom:25px;
}
.useful--links--list {
	column-gap:85px;
}
.useful--links--list li a {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color:#B6B6B6;
}
.useful--links--list li a:hover {
	color:#000;
}
/* End Location */

/* Foooter */
#footer {
	background-color:var(--blue);
	padding:45px;
	max-width:1920px;
/* 	margin: 45px auto 0; */
	margin: 0 auto;
}
.footer--content {
	background-color:#fff;
	padding:55px 120px;
}
.footer--title {
	color:#000;
	font-size: 25px;
	font-style: italic;
	font-weight: 300;
	line-height:1;
	margin-bottom:12px;
}
.footer--content .single:first-child {
	margin-bottom:60px;
}
.footer--content .single a {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color:#000;
	display:flex;
	max-width:max-content;
}
.footer--content .single:first-child {
	min-height:67px;
}
.footer--content .single.address a {
	max-width:220px;
}
.footer--content .single a:hover {
	color:var(--blue);
}
.socials--list {
	column-gap:8px;
}
.sub-footer {
	color: #000;
	margin-top: 40px;
	align-items: center;
}
.back--top {
	border-bottom: 1px solid var(--blue);
	max-width: max-content;
	padding-bottom: 4px;
}
.back--top:hover {
	color:var(--blue);
}
/* End Footer */

/*! Mobile Menu */
.mobile-menu-wrapper {
	transform: translateX(100%);
	transition: 0.6s ease-in-out;
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	background:var(--blue);
	z-index: 14;
	width: 400px;
	display:none;
	padding: 120px 20px 60px 30px;
}
html.mobile-menu-visible .mobile-menu-wrapper {
	transform: translateX(0);
}
.mobile-menu-wrapper::-webkit-scrollbar {
	display: none;
}
.mobile-menu-wrapper__overlay {
	display: none;
	content: "";
	width: 100vw;
	background: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	z-index: 13;
}
.mobile-nav-bar-menu li {
	display: flex;
	position: relative;
	flex-direction:column;
	row-gap:10px;
}
.mobile-nav-bar-menu {
	display:flex;
	flex-direction:column;
	row-gap:10px;
}
.mobile-nav-bar-menu .sub-menu {
	display:none;
}
.mobile-nav-bar-menu .sub-menu a {
	font-size:15px !important;
}
.mobile-menu-wrapper .mobile-nav-bar-menu a {
	padding: 6px 0;
	border-bottom: 1px solid #fff;
	color:#fff;
	font-size: 18px;
	text-transform: uppercase;
}
.mobile-menu-wrapper .mobile-nav-bar-menu .sub-menu {
	padding-left:20px;
}
.mobile-menu-wrapper .mobile-nav-bar-menu .sub-menu a {
	border:none;
}
.mobile-menu-wrapper .mobile-nav-bar-menu .menu-book-button {
	display: none;
}
.mobile-menu-info__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 10px;
	position: relative;
	margin-top: 50px;
	padding-top: 40px;
}
.mobile-menu-info__wrapper::before {
	content: "";
	width: calc(100% + 60px);
	position: absolute;
	left: -30px;
	top: 0;
	background-color:#fff;
	height: 1px;
}
.mobile-menu-title {
	font-size: 14px;
	color:#fff;
	line-height:1;
}
.mobile-menu-info__item {
	display: flex;
	column-gap: 6px;
	align-items: center;
}
.mobile-menu-content a {
	font-size: 14px;
	color: #fff;
	line-height:1;
} 
.mobile-menu-content .socials--list {
	flex-direction:row;
	column-gap:8px;
	align-items:center;
}
.mobile-menu-wrapper li .image {
	display:none;
}
.mobile-menu-wrapper .socials-list  {
	flex-direction:row;
	column-gap:10px;
	align-items:center;
}
.mobile-menu-wrapper .socials-list a .title {
	display:none;
}
.mobile-menu-wrapper .socials--list li a svg {
	width: 35px;
	height: 35px;
	display: block;
}
.main-menu.mobile-menu li a::after {
	display:none;
}
.mobile-menu {
	row-gap:20px;
}
.mobile-menu-wrapper .socials--list li a svg path {
	fill:#fff;
}
/*! End Mobile Menu */

/* 404 */
.error__page-wrapper {
	min-height: 45vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:40px;
	padding:20px;
}
.error__page-wrapper h1 {
	text-align:center;
}
/* End 404 */