:root {
	--aqua-primary: #03AFED;
	--aqua-dark: #313291;
	--aqua-black: #191962;
	--aqua-title: #2F3496;
	--aqua-tertiar: #F8737C;
	--bs-breadcrumb-font-size: 14px;
	--bs-body-color: #313291;
	--bs-body-font-size: 20px;
	--bs-body-line-height: 1.3;
}

body {
	font-family: "Inter", sans-serif;
	padding-bottom: 1rem;
}

.container-fluid{max-width: 1164px;}
.text-primary {color: var(--aqua-primary) !important;}
.text-dark {color: var(--aqua-dark) !important;}
.bkg-primary {background-color: var(--aqua-primary);}
.bkg-dark {background-color: var(--aqua-dark);}
.bkg-aqua-bot {background-color: var(--aqua-tertiar);}

.color-title {color: var(--aqua-title)!important;}
.color-dark {color: var(--aqua-dark)!important;}
.btn {
	--bs-btn-border-radius: 18px;
}
.btn-primary {
	background-color: var(--aqua-dark);
	border-color: var(--aqua-dark);
	color: white;
}
.btn-primary-light {
	background-color: var(--aqua-primary);
	border-color: var(--aqua-primary);
	color: white;
}
.alert {display: flex; gap: 1rem; font-size: 1rem}
.alert-heading {
	font-weight: bold;
	margin-bottom: 1rem;
}
.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

.rounded-18 {border-radius: 18px;}
.gap-6 {gap: 5rem !important;}
.cursor-pointer {cursor: pointer !important;}

.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-3 {z-index: 3;}
.z-4 {z-index: 4;}
.z-5 {z-index: 5;}
.z-6 {z-index: 6;}
.z-7 {z-index: 7;}
.z-8 {z-index: 8;}
.z-9 {z-index: 9;}
.z-10 {z-index: 10;}

.mw-500 {
	max-width: 500px;
}
.navbar {
	--bs-navbar-nav-link-padding-x: 0.4rem;
}
.select2-container--krajee-bs5 .select2-selection--single,
.select2-container--krajee-bs5 .select2-selection--multiple,
.select2-container--krajee-bs5 li.select2-results__option {
	font-size: 1rem;
}
.select2-container--krajee-bs5 .select2-selection--single .select2-selection__rendered {
	line-height: 1.5;
}
.select2-container--krajee-bs5 .select2-selection--single .select2-selection__arrow {
	height: 100%;
}
.breadcrumb {
	position: absolute;
	margin-bottom: 0;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
	margin-top: 0.25rem;
	z-index: 3;
}
.breadcrumb-item,
.breadcrumb-item >a {
	display: flex;
	justify-content: center;
	align-self: center;
}
.card {
	border-color: var(--aqua-primary);
	border-width: 2px;
	border-radius: 18px;
	overflow: hidden;
}
.card-dark {
	border-color: var(--aqua-dark);
}
.card-header {
	background-color: var(--aqua-primary);
	color: white;
	font-size: 22px;
	line-height: 1;
	border: 1px solid var(--aqua-primary);
	border-bottom: 0;
	padding: 10px 20px;
}
.card-header:first-child {
	border-radius: 16px 16px 0 0;
}
.card-title {
	color: var(--aqua-title);
}
.card-header .card-title {
	color: white;
	font-weight: 900;
	text-transform: uppercase;
	font-family: "Inter", sans-serif;
}
.card-header .btn-primary {
	background-color: var(--aqua-dark);
	font-weight: bold;
	border-radius: 22px;
}
.card-body,
.card .list-group {
	font-size: 15px;
	color: var(--aqua-dark);
}

/*
********* HEADER *********
*/
header {
	z-index: 10;
}
header.sticky-top:after {
	content: " ";
	display: block;
	width: 100%;
	height: 70px;
	background: #ffffff;
}
.scrolled header.sticky-top > .top {
	display: none;
}
.custom-navbar {
	--bs-nav-link-color: white;
	--bs-nav-link-hover-color: lightgray;
}

.top-container {
	max-width: 750px;
}

.navbar-nav .nav-item .home-icon {
	font-size: 1.4rem;
}

.navbar-nav .nav-item .user-icon {
	font-size: 1.6rem;
}

.navbar-nav .dropdown-menu {
	--bs-dropdown-link-hover-bg: var(--aqua-primary);
}

.navbar .nav-link {
	font-size: 0.88rem;
	line-height: 1.1;
}

.dropdown-item {
	font-size: 0.88rem;
}

.dropdown-toggle::after {
	font-family: "bootstrap-icons";
	font-size: 0.7rem;
	content: "\F282";
	-webkit-text-stroke: 1px currentColor;
	border: 0;
	vertical-align: middle;
}

.logo {
	top: 130%;
	max-width: 160px;
}
.scrolled .logo {
	max-width: 80px;
	top: 115%;
}

/*
********* CONTENT *********
*/
main {
	padding-top: 70px;
}
.cover-img {
	position: relative;
}
.cover-img:before {
	content: " ";
	position:absolute;
	bottom: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: calc(100vw / 1440 * 135);
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0,
		#ffffff 100%
	);
}
.cover-img:after {
	content: " ";
	position:absolute;
	display: block;
	bottom: 0;
	width: 100%;
	height: calc(100vw / 1440 * 135);
	z-index: 3;
	background: transparent url("/img/bottom-cover-image.png") no-repeat bottom center;
	background-size: contain;
}
.title-over-cover {
	position: absolute;
	top: 35%;
	width: 100%;
	color: white;
}
.title-over-cover h1 {
	font-size: 46px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.33);
}
.title-over-cover p {
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.33);
}

h1 .h1-subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--aqua-primary);
	display: block;
}
.account h1 {
	margin-bottom: 1rem
}
h1.section-title {
	font-size: 40px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.33);
}
h1.over-cover {
	position: absolute;
	width: 100%;
	margin-top: -170px !important;
	z-index: 4;
}
.gradient::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(
			to bottom,
			#ffffff 0%,
			rgba(255, 255, 255, 0) 0,
			#ffffff 100%
	);
}
section.locations a {
	color: var(--aqua-dark);
	text-decoration: none;
}

#locations-tabs > .nav-item {
	font-size: 1rem;
	text-transform: uppercase;
	overflow: hidden;
}
#locations-tabs > .nav-item .nav-link {
	border: 1px solid var(--aqua-dark);
	border-radius: 21px;
	color: var(--aqua-dark);
}
#locations-tabs > .nav-item .nav-link.active {
	color: #ffffff;
	background-color: var(--aqua-dark);
	font-weight: bold;
}
.pack-price > span {
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.location-subcategory.with-separator {
	padding-top: calc(100vw / 1440 * 233);
	background: transparent url("/img/bg-white-white.png") no-repeat top center;
	background-size: contain;
}
.accordion {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-item {
	border: 2px solid var(--aqua-primary) !important;
	border-radius: 18px!important;
	overflow: hidden;
	background-color: var(--aqua-primary);
}
.accordion-item .accordion-header {
	border-bottom: 0;
}
.accordion-item .accordion-header .accordion-button {
	background-color: var(--aqua-primary);
	color: #ffffff;
	box-shadow: none;
	font-size: 19px;
	font-weight: bold;
}
.accordion-item .accordion-body {
	background-color: #ffffff;
	font-size: 18px;
}
.location h3.card-title {
	min-height: 88px
}
/* HERO SECTION */
.hero {
	margin-top: 70px;
}

.over {
	margin-top: -20%;
}

.hero .text {
	font-size: 1.25rem;
	line-height: 1.2;
}

.hero .text p:first-child {
	font-size: 2.8rem;
}

.hero .text {
	font-size: 1.25rem;
	line-height: 1.2;
}

#location-gallery .images {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
#location-gallery .images .img-gallery {
	min-width: 150px;
	max-width: 300px;
	width: calc(100% / 5 - 20px);
	border-radius: 50%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
#location-gallery .images .img-gallery > img {
	height: 100%;
	width: auto;
}

#location-features {
	background: var(--aqua-primary) url('/img/bg-features.jpg') no-repeat bottom right;
	background-size: cover;
	padding-top: calc(100vw / 1440 * 330);
	margin-top: 60px;
	position: relative;
	padding-bottom: 50px;
}
#location-features:after {
	content: ' ';
	position: absolute;
	top: -60px;
	width: 100%;
	height: calc(100vw / 1440 * 330);
	background: transparent url('/img/bg-white-blue.png') no-repeat top center;
	background-size: 100%;
	z-index: 2;
}
#location-features .container {
	z-index: 1;
}
#location-features .col {
	margin-bottom: 30px;
}
#location-features .rounded-box {
	background-color: rgba(255, 255, 255, 0.55);
	border-radius: 18px;
	display: inline-block;
	padding: 60px 30px 30px;
	clear: both;
	margin-top: -50px;
	z-index: 1;
	min-width: 50%;
}
#location-features .col img {
	display: block;
	max-width: 50%;
	clear: both;
	margin: 0 auto;
	z-index: 2;
	position: relative;
}

#location-map {
	position: relative;
	overflow: hidden;
}
#location-map:after {
	content: ' ';
	position: absolute;
	top: calc(100vw / 1478 * -110);
	left: 0;
	width: 100%;
	height: calc(100vw / 1478 * 201);
	z-index: 2;
	background: transparent url('/img/wave2.svg') no-repeat top center;
	background-size: 110%;
}
#location-map.with-features:after {
	background: transparent url('/img/bg-features-bottom.png') no-repeat top right;
	background-size: 100%;
	height: calc(100vw / 1440 * 160);
	top: -8px;
}
#location-map iframe {
	height: 600px !important;
}

.anunt-job h3,
.anunt-job h4 {
	border-bottom: 2px solid var(--aqua-primary);
	font-size: 23px;
}
.anunt-job h3 > span {
	color: white;
	background-color: var(--aqua-primary);
	padding: 5px 15px 3px;
	border-radius: 18px 18px 0 0;
	font-weight: normal;
	line-height: 34px;
}

.article figure {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #efefef;
}
.article figure img {
	min-width: 100%;
	height: auto;
	max-height: 100%;
}

#article-gallery .gallery-image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #efefef;
	display: block;
}
#article-gallery .gallery-image img {
	min-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
}

/* LOCATIONS SECTION */
.locations .wave {
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

.locations .wave img {
	margin-top: -1px;
	margin-left: -2%;
	width: 104%;
	height: auto;
}

.locations .header {
	margin-top: 40px;
	margin-bottom: 50px;
	padding-top: 30px;
	line-height: 1.1;
	/*align-items: flex-end;*/
}

.locations .header .pin {
	top: -70px;
	font-size: 3.75rem;
	-webkit-text-stroke: 2px var(--aqua-primary);
}

.locations .container-fluid{
	margin-top: -60px;
}

.locations-title {
	padding: 0 2rem;
	font-size: 2.9rem;
	flex: 1;
}

.locations-text {
	padding: 0 2rem;
	font-size: 1.15rem;
	flex: 2;
	line-height: 1.3;
}

.card-image {
	height: 320px;
	border-radius: 18px 0 0 18px;
}

.card-title {
	padding-top: 15px;
	font-size: 1.25rem;
}

.card-lead {
	font-size: 1rem;
}

.card-services {
	font-size: 1rem;
}

.program {
	position: absolute;
	padding: 0.7rem 0.2rem;
	flex-direction: column;
	top: 50%;
	left: 33%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
	font-size: 1rem;
	gap: .5rem;
}

.story .wave img {
	margin-top: -15px;
	margin-left: -2%;
	width: 104%;
	height: auto;
}

.story .container-fluid{
	margin-top: -10vw;
}

.story-card {
	padding-bottom: 1.5rem;
	border: 2px solid #03AFED;
	border-radius: 18px;
	min-height: 985px;
}

.slider {
	max-width: 546px;
}


/* FOOTER */
#mce-EMAIL {
	border: 0;
	outline: none;
	border-bottom: 1px solid var(--aqua-dark);
	width: 540px;
	max-width: calc(100% - 300px);
}

footer {
	margin-top: 2rem;
}

footer .wave img {
	margin-top: -2px;
	margin-left: -2%;
	width: 104%;
	height: auto;
}

footer .content {
	margin-top: -3rem;
}

.footer-logo {
	max-width: 170px;
}

.footer-links a {
	font-size: 0.83rem;
}

.copyright {
	font-size: 0.81rem;
}

.ue-omfp {
	font-size: 0.7rem;
}

.pnrr {
	font-size: 1.25rem;
}

.pnrr-links {
	font-size: .87rem;
}

.flag {
	height: 6px;
}

.flag-red {
	background-color: #ce1226;
}

.flag-yellow {
	background-color: #fcd116;
}

.flag-blue {
	background-color: #0047ab;
}

.bot {
	position: fixed;
	right: 2rem;
	bottom: 15%;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.bot .dolph {
	margin-left: -2.5rem;
	width: 185px;
}

.bot p {
	max-width: 280px;
}

.bot span {
	width: 30px;
	height: 30px;
	line-height: 1.7;
	border-radius: 50%;
}

.bottom-info {
	padding: 0;
	height: 62px;
}

.bottom-info a:first-child {
	padding: 1.3rem 0 1.3rem 50px;
	display: block;
}

.bottom-info a:first-child::before {
	content: "\F5B4";
	font-family: "bootstrap-icons";
	font-size: 2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -40px;
}
#mobile-contact-locations {
	position: fixed;
	display: flex;
	z-index: 9999;
	bottom: 62px;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #03AFED;
	background: linear-gradient(to bottom, #03AFED, #005776);
}
#mobile-contact-locations.show {
	height: calc(100% - 62px);
}
#mobile-contact-locations .list-group,
#mobile-contact-locations .list-group-item {
	background: transparent;
}
#mobile-contact-locations .list-group-item {
	width: 100%;
	text-align: center;
	color: #ffffff;

}
#mobile-contact-locations .list-group-item h4 {
	font-weight: 900;
	color: #ffffff;
}
#mobile-contact-locations .list-group-item a {
	color: #ffffff!important;
	text-decoration: none;
}

/*
* account
 */
#master-menu > li > a {
	border: 1px solid var(--aqua-dark);
	border-radius: 21px;
	color: var(--aqua-dark);
	margin-bottom: 5px;
}
#master-menu > li > a.active {
	background-color: var(--aqua-dark);
	color: #ffffff;
}
#master-menu > li > a:hover,
#master-menu > li > a.active:hover {
	border-color: var(--aqua-primary);
	background-color: var(--aqua-primary);
	color: #ffffff;
}

/*
* competitii
*/
#cover-image{
	position: relative;
}

#cover-image:after {
	content: " ";
	position:absolute;
	bottom: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: calc(100vw / 1440 * 100);
	background: transparent url("/img/bottom-cover-image.png") no-repeat bottom center;
	background-size: cover;
}
.competition h1 {
	color: #2F3496;
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 50px;
}

#accordionDescriptions .accordion-item {
	border: 0 !important;
	margin-bottom: 30px;
	background-color: #ffffff;
}
#accordionDescriptions .accordion-item .accordion-button {
	border-radius: 18px!important;
}
#accordionDescriptions .accordion-item .accordion-body {
	color: #313291;
	font-size: 24px;
}
.competition #galleries {
	position: relative;
	background-color: #03AFED;
	padding-top: calc(100vw / 1440 * 260);
	margin-top: calc(100vw / 1440 * 60);
}
.competition #galleries:before {
	content: " ";
	position:absolute;
	top: calc(100vw / 1440 * -60);
	display: block;
	width: 100%;
	height: calc(100vw / 1440 * 360);
	background: transparent url("/img/bg-white-blue.png") no-repeat top center;
	background-size: cover;
}
.competition #galleries:after {
	content: " ";
	position: relative;
	bottom: 0;
	display: block;
	width: 100%;
	height: calc(100vw / 1436 * 170);
	background: #ffffff url("/img/bg-blue-white.png") no-repeat top center;
	background-size: cover;
}
.competition #galleries .gallery-title {
	float: right;
	color: #ffffff;
	font-size: 46px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: -100px;
}
.competition #video-gallery {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
.competition #video-gallery .col {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #ffffff;
	font-size: 24px;
}
.competition #video-gallery .col h4 {
	font-size: 24px;
	font-weight: bold;
	color: #313291;
}
.competition #video-gallery .col iframe {
	border-radius: 18px;
}
.competition #video-gallery.with-separator {
	padding-bottom: 100px;
}
.competition #foto-galleries {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
.competition #foto-galleries.with-separator {
	padding-top: 150px;
}
.competition #foto-galleries.with-separator:before {
	content: " ";
	position:absolute;
	top: calc(100vw / 1440 * -60);
	display: block;
	width: 100%;
	height: calc(100vw / 1440 * 190);
	background: transparent url("/img/bg-blue-blue.png") no-repeat top center;
	background-size: cover;
}
.competition #foto-galleries .gallery {
	padding-top: 50px;
	padding-bottom: 50px;
}
.competition #foto-galleries .gallery h4 {
	color: #313291;
	text-align: center;
	margin-bottom: 30px;
}
.competition #foto-galleries .gallery-image {
	max-width: calc(100% / 9);
}
.competition #volunteers-sponsors h2 {
	font-size: 46px;
	font-weight: bold;
	text-transform: uppercase;
	color: #313291;
	margin-top: -100px;
	z-index: 3;
	position: relative;
	margin-bottom: 50px;
}

/**
 * contact form
 */
.field-contactrequest-check_terms label {
	font-size: 1rem;
}


/* -------------------------------- */
/*          MEDIA QUERY             */
/* -------------------------------- */


/* xl: <1400px) */
@media (max-width: 1399.98px) {
	.locations-title {
		font-size: 2rem;
	}

}

/* lg: <1200px */
@media (max-width: 1199.98px) {
	.locations-title {
		font-size: 2rem;
	}
}

/* md: <992px */
@media (max-width: 991.98px) {
	header.sticky-top:after {
		content: "";
		display: none;
		width: 100%;
		height: 0;
		background: unset;
	}
	.navbar, .navbar .container-fluid{
		padding: 0;
	}

	.mobile-menu {
		padding: 0 1.25rem;
	}

	.navbar-collapse {
		position: absolute;
		top: 48px;
		left: 0;
		width: 100%;
		padding: 4rem 1.25rem 1.25rem 1.25rem;
		height: calc(100vh - 177px);
		background-color: white;
		overflow-y: scroll;
		box-sizing: border-box;
	}

	.navbar-nav .nav-item {
		border-left: 0 !important;
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.navbar .nav-item:first-child {
		display: none;
	}

	.navbar .nav-item:last-child {
		display: none;
	}

	.navbar .nav-link {
		font-size: 1.2rem;
		font-weight: 700;
		color: var(--aqua-dark);
	}

	.logo {
		top: 10px;
	}

	.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
		color: var(--aqua-dark);
	}

	.navbar-nav .dropdown-menu {
		background-color: white;
	}

	.mobile-menu .user-icon, .mobile-menu .menu-icon {
		color: var(--aqua-primary) !important;
		font-size: 2rem !important;
	}

	.dropdown-item {
		position: relative;
		font-size: 1.2rem;
		font-weight: 500;
		color: var(--aqua-dark);
	}

	.dropdown-item::before {
		font-family: "bootstrap-icons";
		content: "\F287";
		font-size: 0.5rem;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}

	.dropdown-toggle.show::after {
		content: "\F286";
	}

	.dropdown-toggle::after {
		-webkit-text-stroke: 2px currentColor;
	}

	.dropdown-menu.show {
		padding-left: 2rem;
		border-bottom: 1px solid var(--aqua-primary);
		border-radius: 0;
	}

	.top {
		position: sticky;
		top: 0;
		z-index: 1;
	}

	.over {
		padding-bottom: .5rem;
	}

	.hero {
		margin-top: 0;
	}

	.hero .text {
		margin: 0 auto 1.5rem auto;
		width: calc(100% - 2rem);
	}

	.hero .text p:first-child {
		/* font-size: 1.7rem; */
		font-size: 2rem;
	}

	.hero .text p:last-child {
		font-size: 1.15rem;
	}

	.hero .text p:first-child {
		font-size: 2.5rem;
	}

	/*.group */
	.item-container .text {
		font-size: 1rem;
	}

	.bg-body-dark {
		background-color: var(--aqua-black);
	}

	.locations .header {
		margin-top: 70px;
	}

	.locations-title {
		padding: 0;
		font-size: 2rem;
	}

	.locations-text {
		padding: 0 2rem;
		flex: 1;
	}

	.story .container-fluid{
		margin-top: 0;
	}

	.story-card {
		min-height: 910px;
	}

	footer .content {
		margin-top: -2rem;
	}

	.card-services {
		font-size: 0.8rem;
	}
}


/* sm: <768px */
@media (max-width: 767.98px) {
	.scrolled .logo {
		top: 10px;
		width: 90px;
	}
	main {
		padding: 0;
	}
	h1.over-cover {
		position: relative;
		margin-top: 0!important;
	}


	.title-over-cover:before {
		content: " ";
		position:absolute;
		display: block;
		top: calc(100vw / 1440 * -135);
		width: 100%;
		height: calc(100vw / 1440 * 135);
		z-index: 3;
		background: transparent url("/img/bottom-cover-image.png") no-repeat bottom center;
		background-size: contain;
	}
	.title-over-cover {
		position: relative;
		top: unset;
		width: 100%;
		color: var(--aqua-tertiar);
		padding: 20px 0;
	}
	.title-over-cover h1 {
		font-size: 18px;
		text-shadow: none;
	}
	.title-over-cover p {
		text-shadow: none;
		font-size: 14px
	}
	.title-over-cover #taguri-despre-noi {
		position: absolute;
		width: calc(100% - var(--bs-gutter-x));
		top: -90px;
		color: white;
		font-size: 16px !important;
		font-weight: bold !important;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
		text-align: center;
	}

	.hero .text p:first-child {
		font-size: 2rem;
	}

	.locations .header {
		margin-top: 40px;
		padding-top: 50px;
	}

	.locations .header .pin {
		top: -80px;
	}

	.locations .container-fluid{
		margin-top: 0;
	}

	.locations-text {
		padding: 0.5rem 0 0 0;
	}

	.card-image {
		border-radius: 18px 18px 0 0;
	}

	.program {
		position: relative;
		transform: none;
		left: auto;
		top: auto;
		filter: none;
		flex-direction: row;
		gap: 0;
		background-color: transparent;
	}

	/*.card {*/
	/*  padding-bottom: 1rem;*/
	/*}*/

	.card-services {
		font-size: 1rem;
	}

	.card-title {
		padding: 1rem 1rem 0 1rem;
		line-height: 1.2;
	}

	.story .wave img {
		width: 150%;
		margin-left: -5%;
	}

	.story .container-fluid{
		margin-top: 2rem;
	}

	.story-card {
		min-height: auto;
		gap: 2rem;
	}

	footer .content {
		margin-top: 0;
	}

	#location-features .rounded-box {
		padding: 60px 20px 20px;
		min-width: unset;
		font-size: 14px!important;
	}
	#location-features .rounded-box .fs-3 {
		font-size: 18px!important;
	}
	#location-features .rounded-box .fs-4 {
		font-size: 16px!important;
	}
}



/* xs: <576px */
@media (max-width: 575.98px) {
	body {
		font-size: 16px
	}
	.logo {
		width: 90px;
	}
	.hero .text p:first-child {
		font-size: 1.7rem;
	}
	.locations .header .pin {
		top: -80px;
	}
	.locations-title {
		padding: 0;
		font-size: 2rem;
	}
	.locations-text {
		padding: .5rem 0 0 0;
	}
	.locations .container-fluid{
		margin-top: 0;
	}
	.card-services {
		font-size: 1rem;
	}
	.program {
		background-color: transparent;
		font-size: 0.85rem;
	}
	.copyright {
		font-size: 0.75rem;
	}
	.pnrr {
		font-size: 1rem;
	}
	.bot {
		right: 0.9rem;
		max-width: 100%;
		text-align: right;
	}
	.bot p {
		vertical-align: top;
		max-width: calc(100% - 116px);
		text-align: left;
	}
	.bot .dolph {
		width: 140px;
		vertical-align: top;
	}
	#mce-EMAIL {
		border: 0;
		outline: none;
		border-bottom: 1px solid var(--aqua-dark);
		width: 540px;
		max-width: calc(100% - 60px);
	}
	.pack-card .card-header {
		padding: 5px 10px !important;
	}
	.pack-card .card-header .pack-name {
		font-size: 18px!important;
	}
}
