/*------------------------------------  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;
}
/*.google-auto-placed {display:none !important;}*/
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) {#slideshow {display: none;}}

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

.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;}

/* ==================================================================================== */
/*------------------------------ 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);}
.background_form {
	background-color: #465158;
	box-shadow: inset 0 1px #fff, 0 1px 2px #c8cfe6;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 20px;
}

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;
}

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

.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;
}

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;
	font-style:italic;
}
.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;
}

.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;
}

.fd_round_cell {
	height: auto;
	background: #e2e2e2;
	float: left;
	padding: 5px;
	border: 1px solid #666;
	-webkit-border-radius: 3%;
	-moz-border-radius: 3%;
	border-radius: 3%;
	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;
}
@media (min-width:769px) and (max-width:1199px) {
	#img_articolo, #abstract_articolo {width:100%;}
	.articolo {width:100%;}
	.adv-1 {width:100%;}
}

.cover-img {
	position: relative;
	background-image: url(../images/cover-img-3.jpg);
	z-index: 0;
	border-top: 1px solid #777777;
	border-bottom: 1px solid #777777;
	background-repeat: no-repeat;
}
.cover-img .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
.rp_box, .rp_box2 {
    clear: both;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed gray;
}
.rp_box {height:122px;}
.rp_box2 {height:163px;}
.rp_box a, .rp_box2 a {
    text-decoration: none;
    color: #DAD7D7;
    font-size: 13px;
}
.rp_box img, .rp_box2 img {
    float: left;
    margin-right: 20px;
}
.star span i {
	color: #FFDD00;
	font-size: 12px;
}

.div80 {width:80%;}
.div90 {width:90%;}
/* -------- SlideShow ---------- */
#slideshow { 
	position: relative; 
	top:0;
	left:0;			
	width: 100%; 
	height: 650px; 
}
#slidebox { 
	position: relative; 
	top:0;
	left:0;			
	width: 100%; 
	height: 400px; 
}

#slideshow > slide, #slidebox > slide { 
	position: absolute; 
	top: 0; 
	left: 0; 
}
.slider-text h1, .slider-text h2 {
	position: relative;
	margin-top: 200px;
	line-height: 1.3;
	font-weight: 300;
	color:#FFF;
}
.slider-text h1 {font-size: 50px;}
.slider-text h2 {font-size: 36px;}
slide div.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
	}
.slide_bullets {
	color:lightgrey;
	text-align:center;
	font-size:14px;
}
#slideshow .slide_bullets .overlay {
	position: absolute;
	height:100px;
	bottom:0;
	display:block;
	padding-bottom:50px;
	background: rgba(0, 0, 0, 0.3);
}

/* ******************************************************************** */
/*			Footer																			*/
/* ******************************************************************** */
.footer {
	background: #2C2E3E;
   color: rgba(255, 255, 255, 0.5) !important;
	border-top: 1px solid #777777;
	border-bottom: 1px solid #777777;
	padding: 3rem 0 0 0;
	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;
}

.title_footer {
    display: block;
    font-size: 0.8em;
    font-weight: bold;
    margin: 0 0 10px 0;
    font-family: inherit;
    font-weight: bold;
    font-style: italic;
    line-height: 20px;
    color: inherit;
    text-rendering: optimizelegibility;
}
.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%;}
	._ms1, ._ms2 {width:100%;}
	.col80, .col90 {width:100%;}
}
#contactHomeRight {
	max-width:940px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}
