	.nav-link:hover{
		color: #11427d !important; 
	}
	.navbar a:hover{
		color: #11427d !important; 
	}
	/* Smooth scroll behavior */
	:root {
		scroll-behavior: smooth;
	}
		
	/*--------------------------------------------------------------
	# General
	--------------------------------------------------------------*/
	a {
		color: var(--color-primary);
		text-decoration: none;
	}
	a:hover {
		color: #ec2727;
		text-decoration: none;
	}
	/*--------------------------------------------------------------
	# Sections & Section Header
	--------------------------------------------------------------*/
	section {
		overflow: hidden;
		padding: 80px 0;
	}
	.section-bg {
		background-color: #eee;
	}
	.section-header {
		text-align: center;
		padding-bottom: 30px;
	}
	.section-header h2 {
		font-size: 13px;
		letter-spacing: 1px;
		font-weight: 400;
		margin: 0;
		padding: 0;
		color: #7f7f90;
		text-transform: uppercase;
	}
	.section-header p {
		margin: 0;
		font-size: 48px;
		font-weight: 400;
	}
	.section-header p span {
		color: var(--color-primary);
	}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}
.scroll-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}
.scroll-top:hover {
	background: #ec2727;
	color: #fff;
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
	width: 100%;
	height: 100vh;
}
#preloader:before,
#preloader:after {
	content: "";
	position: absolute;
	border: 4px solid var(--color-primary);
	border-radius: 50%;
	-webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}
@-webkit-keyframes animate-preloader {
	0% {
		width: 10px;
		height: 10px;
		top: calc(50% - 5px);
		left: calc(50% - 5px);
		opacity: 1;
	}
	100% {
		width: 72px;
		height: 72px;
		top: calc(50% - 36px);
		left: calc(50% - 36px);
		opacity: 0;
	}
}
@keyframes animate-preloader {
	0% {
		width: 10px;
		height: 10px;
		top: calc(50% - 5px);
		left: calc(50% - 5px);
		opacity: 1;
	}
	100% {
		width: 72px;
		height: 72px;
		top: calc(50% - 36px);
		left: calc(50% - 36px);
		opacity: 0;
	}
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	height: 90px;
	border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
	.header {
		height: 70px;
	}
}
.header.sticked {
	border-color: #fff;
	border-color: #eee;
}
.header .logo img {
	max-height: 40px;
	margin-right: 6px;
}
.header .logo h1 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	margin: 0;
}
.header .logo h1 span {
	color: var(--color-primary);
}
.header .btn-book-a-table,
.header .btn-book-a-table:focus {
	font-size: 14px;
	color: #fff;
	background: var(--color-primary);
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	transition: 0.3s;
}
.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
	color: #fff;
	background: rgba(206, 18, 18, 0.8);
}
section {
	scroll-margin-top: 90px;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.mobile-nav-show,
.mobile-nav-hide {
	display: none;
}
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}

.navbar>ul>li {
	white-space: nowrap;
}
.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	font-weight: 600;
	color: #495057;
	/* white-space: nowrap; */
	transition: 0.3s;
	position: relative;
}
.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -12px;
	left: 0;
	background-color: var(--color-primary);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
	text-decoration:none;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #000;
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	top: calc(100% + 3330px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
	margin-top: 12px;
}

.navbar .dropdown ul a {
	padding: 1330px 20px;
	text-transform: none;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: var(--color-primary);
	background: #e0f3ff;
}
.navbar .dropdown:hover>ul {
	opacity: 1;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	left: calc(100% - 30px);
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	visibility: visible;
}

.btn-home-contact span{
	box-sizing: border-box;
    text-shadow: 0.1px 0.1px rgb(0 0 0);
}
.btn-home-contact img{
	box-shadow: 4px 2px 5px 1px #999;	
	background-color: #fff;
}
.btn-home-contact img:hover{
	background-color: #fff;
}
.image-home { 
	width: 1.5rem !important; 
}
.after-image{
	display: flex;
	align-items: center;
	border-right: 1px solid #eee !important;
}

.after-image-home.pleft-0{
	padding-left: 0;
}

.quebra_linha{
	display: inline-block;
	word-break: break-word;
	white-space: pre-line;
	overflow-wrap: break-word;
	-ms-word-break: break-word;
	word-break: break-word;
}
.after-image-home {
	display: flex;
	align-items: center;
	padding-left: 0;
}
.img-icon {
	margin: 0 15px;
}
.btn-hover-headphone:hover{
	opacity: 0.5;
}
.navbar-nav .nav-item .nav-link >b{

	height: 18px;
    line-height: 18px;
}
.navbar-nav .nav-link:hover,
.navbar-nav a:hover{
text-decoration: none;
}
.col-navbar-menu-2 {
	flex: 0 0 100% !important;
	margin: auto !important;
}
#menu_1{
	border-bottom: solid 1px #cecece;
	background: #efefef;
}

.bordas_rounded{
	border-radius:calc(0.95rem - 1px)
}

.navbar-nav .dropdown-menu{
	margin-top: 5px;
	margin: 0;
    padding: 0;
}

.dropdown-menu:empty{
	display: none !important;
}