/*------------------------------------  Menu ---------------------------------------------*/
#header {
	background: rgba(0 28 38 / 60%);
	border-bottom: 1px solid rgba(12, 11, 9, 0.6);
	transition: all 0.5s;
	z-index: 997;
	width:99.6%;
	position: relative;
	padding-left: 10px;
	padding-right: 20px;
}

#header .logo {
	font-size: 24px;
	padding: 0;
	line-height: 1;
   position: relative;
}
h1.intro:first-letter {
	font-size: 32px;
	display: block;
/*	float: left; */
	line-height: .5;
	margin-top:1px;
}
.logo_container {
	position:relative;
	width: 64px;
	height: 64px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo_container {
	position: absolute;
	top: 6px;
	left: 20px;
}
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {position: relative;}
.navbar a:hover, .navbar li.active>a, .navbar li:hover > a, .navbar a.active {color: #d9ba85;}
.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 15px;
}
.nav-link {
	display: block;
	padding: 0.5rem 1rem;
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.dropdown, .dropend, .dropstart, .dropup {position: relative;}
.navbar a i {
	font-size: 12px;
	margin-left: 5px;
}
.dropdown .title {
    font-size: 14px;
    font-size: 17px;
    color: #ffde3f;
    text-align: left;
    height: 39px;
    text-shadow: 0 1px 1px rgb(23 23 23 / 98%);
}
.bi-chevron-down::before {content: "\f282";}
[class^="bi-"]::before, [class*=" bi-"]::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -0.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 25px);
	margin: 0;
	padding: 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #6c757d;
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
	border-radius: 4px;
}
.navbar .dropdown ul li {min-width: 216px;}
.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.navbar .dropdown ul a {
	padding: 8px 20px;
	color: #e9ecef;
	border-bottom: 1px outset #f0f3f7;
	border-bottom-width: thin;
	text-shadow: 0 1px 1px rgb(23 23 23 / 98%);
}
.navbar .dropdown ul a i {font-size: 12px;}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {color: #cda45e;}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: 100%;
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 1599px) {
	#logo1 {display:none !important;}
	#logo2 {display:inline-block !important;}
}

/**
* ------------------- Mobile Navigation ------------
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {display: block !important;}
  .navbar ul {display: none;}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
	max-width: 300px;
}
.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #1a1814;
	justify-content: start;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {color: #cda45e;}
.navbar-mobile .getstarted {margin: 15px;}
.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {min-width: 200px;}
.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
	color: grey;
   text-shadow: none;
}
.navbar-mobile .dropdown ul a i {font-size: 12px;}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {color: #cda45e;}
.navbar-mobile .dropdown > .dropdown-active {display: block;}

/* ==================================================================================== */

/*------------------------------------ Template Background ---------------------------------------------*/

#hero {
	width: 100%;
	height: 100vh;
	background-size: cover;
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
@media (max-height: 500px) {
	#hero {height: auto;}
	#hero .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}
@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
	}
	#contactHomeRight {width:100%;}
}
@media (max-width: 991px) {
	#hero .container {padding-top: 98px;}
	#hero .play-btn {margin-top: 30px;}
}
@media (min-width: 1024px) {
	#hero {background-attachment: fixed;}
}

/*------------------------------------ Animations ---------------------------------------------*/

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}
@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animate__delay-05s {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
/*------------------------------------ Teemplate related styles ---------------------------------------------*/
:root {
	--gap: .5em;
	--rowHeight: auto;
}

body {
	background: #03202e;
	justify-content: center !important;
	overflow-x: hidden;
}
.background_transparent{background-color: transparent;}
.background_semitransparent{background-color: rgba(0, 0, 0, 0.5);}
.background_black{background-color: black;}
.background_white{background-color: white;}
.background_light{background: rgb(221 221 221);}

h4 {text-shadow: 1px 1px 2px #000;}
.h4 {
	background-color:#c3c3c3;
	color:#002134;
	text-shadow: none;
	padding-left:1rem;
}
.italic {font-style:italic;}
strong {
    font-weight: bold;
    color: #ffd515;
    text-shadow: 1px 1px 0px #000;
}
.about, .border_box {
/*	background: url(../images/about-bg.jpg) center center;
	background-size: cover; */
	position: relative;
	padding: 80px 0;
	width:100%;
	color:white;
	background: rgba(0, 0, 0, 0.7);
}
.about:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
.border_box {padding: 30px 0 !important;}
@media (max-width: 991px) {
	.pt_sm {padding-top: 1.5rem !important;}
	.foto_hotel {width:100%}
}
.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}
.about .content ul {list-style: none;}
.about .content ul li {padding-bottom: 10px;}
.about .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #cda45e;
}
.about .content p:last-child {margin-bottom: 0;}
.about .about-img {
	position: relative;
	transition: .5s;
	width:650px;
}
.about .about-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: '';
	border-left: 5px solid #cda45e;
	border-top: 5px solid #cda45e;
	transition: .5s;
}
.about .about-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}
.about .about-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: '';
	border-right: 5px solid #cda45e;
	border-bottom: 5px solid #cda45e;
	transition: .5s;
}

.btn-select {
	color: #333 !important;
	background: #fff;
	border: 1px inset #ddd;
	padding: 5px 10px;
	border-radius: 4px 4px 4px 4px;
}
.btn-select span {margin: 6px 0 -8px 10px;}
.btn-select.dropdown-toggle {
	color: #fff;
	background-color: #146c43;
	border-color: #13653f;
}
textarea, input, select {
	margin-top:0 !important;
	background:white;
	padding: 5px 15px;
	text-transform:none;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	font-size: 1rem;
	color: #666;
	font-style:normal;
	border: 1px solid #ddd;
	box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 50%);
	border-radius: 3px 3px 3px 3px;  
}

.sp_intest {
	text-shadow: 1px 1px 1px #000;
	color:#ffb801;
	font-weight:bold;
}
.intest {
	padding: 0 15px;
	font-family: 'Roboto', sans-serif;
	line-height: 25px;
	font-size: 1rem;
	font-style:italic;
	color: #c2c2c2;
	font-weight: bold;
	display:inline-block;
}
span .intest {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:400;
}
.link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0);
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
   -webkit-border-radius:3%;
   -moz-border-radius:3%;
}
.link-overlay:before {
	display: block;
	width: 46px;
	height: 46px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -22px 0 0 -25px;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	color: #2c2c2c;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	font-size: 24px;
	padding-top: 11px;
	color: #336699;
}
.work-image:hover .link-overlay {background: rgba(20,22,23,0.6);}
.work-image:hover  .link-overlay:before {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
/** scrollblue */
#scrollblue {max-width: 1900px; flex:nowrap;}
#scrollblue::-webkit-scrollbar {
  width: 10px;
  background-color: #014666;
}
#scrollblue::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #ACC;
}
#scrollblue::-webkit-scrollbar-thumb {
  background-color: #a61414;
  border: 2px outset #9e6d6d;
}

.black_box {
	position: relative;
	margin-top: 4%;
	width: 90%;
	margin: 0 auto;
}
.black_box:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
.boxTitle {
	background: transparent;
	padding: 1rem 2rem;
	margin-bottom: 10px;
	height: 100% !important;
	position: relative;
}
.boxBlue {
	border: 1px solid #979797;
	padding: 1rem 2rem;
	margin-bottom: 10px;
	background: #053b5a;
	height: 100% !important;
	color: #f8f9fa;
	position: relative;
	box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 50%);
}
.boxBlue h1, .boxBlue h2, .boxBlue h3 {
	background: #0e4f6e;
}
.blue_background {background: #0e4f6e;}
.boxTitle h1 {
	box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 50%);
	background: #0e4f6e;
	border: 1px solid #979797;
}
.img_container {
	position:relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.boxBlue_noPad {
	border: 1px solid #979797;
	background: #053b5a;
	height: 100% !important;
	color: #f8f9fa;
	position: relative;
}

.boxBlue a:hover, .boxBlue_noPad a:hover {color: #d9c494;}

.fact-item, .generic-box {
	padding:1rem 3rem 1rem 3rem;
	text-align:center;
	height: 100% !important;
	background: #053b5a;
	color: #f8f9fa;
	text-shadow: 1px 1px 2px #000;
	box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 50%);
   border: 1px solid #979797;
}
.fact-item .fact-icon {
	width: 96px;
	height: 96px;
	padding: 5px;
	float: left;
	margin: -35px 0 10px -10px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #e2e2e2;
}
.fact-item img {
	width: 84px;
	border-radius: 50%;
	border: 1px solid #666;
	height: auto;
	margin: 0;
	margin: 1px 0 0 -1px;
}
.fact-item h3, .generic-box h3 {
	box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 50%);
	background: #0e4f6e;
}

.welcome {
	position:relative;
	top:70px;
	width:100%;
	text-align: center;
	margin-bottom: 8rem;
	text-shadow: 1px 1px 2px #000;
}

.main_back {
	position: fixed !important;
	top:0;
	left:0;
	width:100%;
	z-index:0;
}

.fd_round_cell {
	height: auto;
	background: #e2e2e2;
	float: left;
	padding: 5px 5px 0 5px;
	border: 1px solid #666;
	-webkit-border-radius: 3%;
	-moz-border-radius: 3%;
	border-radius: 3%;
	margin: 20px 0 0 5%;
	position: relative;
}
.fd_round_cell img {
    -webkit-border-radius: 3%;
    -moz-border-radius: 3%;
    border-radius: 3%;
    border: 1px solid #666;
    max-width: 100%;
    height: auto;
}
#cartellonistica {margin:0 auto;}
@media (min-width:1190px) {
	#cartellonistica {max-width:80%;}
	.tableRiserve {padding-left:8rem !important;}
}
@media (min-width:769px) and (max-width:1199px) {
	#img_articolo, #abstract_articolo {width:100%;}
	.articolo {width:100%;}
	.adv-1 {width:100%;}
}

@media (max-width:1199px) {
	.tableRiserve {padding-left:1rem !important;}
}
	
/* ******************************************************************** */
/*			Footer																			*/
/* ******************************************************************** */
.footer {
	border-top: 1px solid #e2e2e2;
	background:#222;
	color:#ccc;
	padding: 0 20px 10px 20px;
	margin-top: 20px;
	-webkit-box-shadow: 0 -1px 12px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 -1px 12px rgba(0,0,0,0.4);
	box-shadow: 0 -1px 12px rgba(0,0,0,0.4);
	position: relative;
}
.footer h3 {
	color: #E4E4E4;
	border-bottom: 1px dotted #7C7C7C;
	padding-top: 20px;
}
.footer-copyright {
	text-align: center;
	color: #7C7C7C;
	border-top: 1px dotted #7C7C7C;
	padding-top: 10px;
	font-size: 0.9em;
}

.portfolio-item {
	position: relative;
	background: #FFF;
	margin-bottom: 20px;
	border: 8px solid #FFF;
	-webkit-border-radius: 5px;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 5px;
	-moz-background-clip: padding;
	border-radius: 5px;
	background-clip: padding-box;
	-webkit-box-shadow: inset 0 1px #fff, 0 0 8px #c8cfe6;
	-moz-box-shadow: inset 0 1px #fff,0 0 8px #c8cfe6;
	box-shadow: inset 0 1px #fff, 0 0 8px #c8cfe6;
	color: inset 0 1px #fff,0 0 8px #c8cfe6;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}
.footer p {
	font-size: 14px;
	line-height: 22px;
}
.footer p i {font-size:16px;}
.footer p a {
	text-decoration:none;
	color:#7bd5d3;
}
.footer p>img {background:lightgrey;}
@media (min-width:1190px) {
	.col_footer_1 {min-width:640px; max-width:44%;}
	.col_footer_2 {min-width:200px; max-width:25%;}
	.col_footer_3 {min-width:350px; max-width:30%;}
}
@media (max-width 1189px) {
	.col_footer_1 {width:100%;}
	.col_footer_2 {width:100%;}
	.col_footer_3 {width:100%;}
}
#contactHomeRight {
	max-width:940px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}