* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	scroll-behavior: smooth;
	image-rendering: optimizeSpeed;
	/*user-select: none;*/
}

.navbar .toggle-btn {
	padding: 4px 12px;
	border: none;
	background: transparent;
	font-size: 1.6em;
}

.navbar .navbar-brand img {
	margin-top: -10px;
}

.navbar .navbar-brand img.tourism-img {
	display: none;
}

.navbar .navbar-brand .brand-name {
	font-family: Impact;
	font-size: 1.4rem;
}

.navbar .navbar-nav .nav-item .nav-link {
	font-weight: 500;
	margin-right: 0.3em;
}

.navbar .navbar-nav .nav-item.call-btn-div {
	display: none;
}

.navbar.navbar-light {
	background: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.navbar.navbar-dark {
	background: rgba( 0, 0, 0, 0.15 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.navbar.navbar-light .toggle-btn {
	color: #444;
}

.navbar.navbar-dark .toggle-btn {
	color: white;
}

.navbar.navbar-light .navbar-brand .brand-name {
	color: #454545;
}

.navbar.navbar-dark .navbar-brand .brand-name {
	color: #FFFFFF;
}

.navbar.navbar-light .navbar-nav .nav-item .nav-link {
	color: #444444;
}
.navbar.navbar-dark .navbar-nav .nav-item .nav-link {
	color: #FFFFFF;
	text-shadow: black;
}

.navbar.navbar-dark .navbar-nav .nav-item .call-btn {
	background: transparent;
	color: white;
	border: 1px solid white;
}

.navbar.navbar-light .navbar-nav .nav-item .call-btn {
	background: transparent;
	color: #333;
	border: 1px solid #333;
}

.navbar.navbar-dark .navbar-nav .nav-item .call-btn:hover,
.navbar.navbar-dark .navbar-nav .nav-item .call-btn:focus {
	background: white;
	color: #333;
	border: 1px solid white;
}

.navbar.navbar-light .navbar-nav .nav-item .call-btn:hover,
.navbar.navbar-light .navbar-nav .nav-item .call-btn:focus {
	background: #666	;
	color: white;
	border: 1px solid #333;
}

footer.container-fluid {
	background: linear-gradient(90deg, #00093c, #2d0b00);
	color: white;
}

footer .brand img {
	margin-top: -15px;
	margin-right: 0.5em;
	width: 37px;
	height: 30px;
}

footer .brand .brand-name {
	font-family: Impact;
	font-size: 0.3rem;
}

footer .info {
	font-size: 0.85em;
}

footer .contact a {
	color: white;
	text-decoration: none;
}

footer .socials a {
	color: white;
	text-decoration: none;
	font-size: 2em;
	margin-right: 5px;
}

footer .section-title {
	width: fit-content;
	font-family: sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 1.4em;
}

footer .underline {
	width: 70%;
	height: 2px;
	border-radius: 1px;
	background: #767676;
	position: absolute;
	top: 35px;
	left: 10px;
	overflow: hidden;
}

footer .underline span {
	width: 25px;
	height: 100%;
	border-radius: 1px;
	background: white;
	position: absolute;
	top: 0;
	left: 0;
	animation: moving 2s linear infinite;
}

.navbar-overlay {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 10;
	width: 100%;
	height: 100vh;
	display: flex;
	overflow: hidden;
	transition: 0.5s ease;
}

.navbar-overlay.open {
	left: 0;
}

.navbar-overlay .nav-menu {
	width: 75%;
	height: 100vh;
	background: linear-gradient(45deg, #2d0b00, #00093c);
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 1.8em 1em;
	color: white;
}

.navbar-overlay .nav-menu .menu-header {
	padding-bottom: 1em;
	/*border-bottom: 1px solid #BCBCBC;*/
	margin-bottom: 1em;
}


.navbar-overlay .nav-menu .menu-header .underline {
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background: #767676;
	margin-top: 1em;
	overflow: hidden;
	position: relative;
}

.navbar-overlay .nav-menu .menu-header .underline span {
	width: 25px;
	height: 100%;
	border-radius: 1px;
	background: white;
	position: absolute;
	top: 0;
	left: 0;
	animation: moving 2s linear infinite;
}

.navbar-overlay .nav-menu .menu-header a {
	float: right;
	margin-top: -5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 1px );
	-webkit-backdrop-filter: blur( 1px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.navbar-overlay .nav-menu ul li a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 1px );
	-webkit-backdrop-filter: blur( 1px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
	border-radius: 4px;
	color: white;
	text-decoration: none;
	margin-bottom: 12px;
}

.navbar-overlay .nav-menu ul li a #left-icon {
	width: 30px;
}

.navbar-overlay .nav-menu ul li a #right-icon,
.navbar-overlay .nav-menu ul div a #right-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	margin-left: auto;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur( 1px );
	-webkit-backdrop-filter: blur( 1px );
	font-size: 0.8em;
	padding-left: 2px;
	transition: 0.2s;
}

.navbar-overlay .nav-menu ul li a #right-icon.fa-angle-down {
	padding-left: 0;
}

.navbar-overlay .nav-menu ul div a {
	display: flex;
	align-items: center;
	color: white;
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 4px;
	margin: 6px 0;
	background: rgba(0, 0, 0, 0.3);
}

.navbar-overlay .nav-close {
	width: 25%;
	height: 100vh;
	background: transparent;
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 1px );
	-webkit-backdrop-filter: blur( 1px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.spacer {
	height: 6em;
}

@keyframes moving {
	0% {
		left: -20px;
	}
	100% {
		left: 100%;
	}
}

footer .links {
	list-style-type: none;
}

footer .links li {
	display: block;
	margin-bottom: 0.6em;
}

footer .links a {
	color: white;
	text-decoration: none;
	font-size: 1em;
}

footer hr {
	margin-top: 2em;
	margin-left: -15px;
	margin-right: -15px;
	background: white;
}

footer .copyright {
	text-align: center;
	margin-bottom: -1.5em;
}

.chat-btn {
	position: fixed;
	bottom: 2em;
	right: 0;
	min-width: 80px;
	padding: 10px;
	padding-left: 15px;
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3), 0 8px 24px 0 rgba(0, 0, 0, 0.24);
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	color: white;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 1px );
	-webkit-backdrop-filter: blur( 1px );
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.chat-btn div {
	display: none;
}

.chat-btn:hover div,
.chat-btn:focus div {
	display: inline;
}

.chat-btn:hover, .chat-btn:focus {
	background: none;
	background-color: #2FBE3D;
	color: white;
	text-decoration: none;
}

@media (min-width: 768px) {
	.navbar .navbar-brand .brand-name {
		font-size: 1.6em;
	}
	.navbar .navbar-brand img {
		height: 35px;
		width: auto;
		margin-top: -15px;
	}
	.navbar-overlay .nav-menu {
		width: 40%;
	}
	.navbar-overlay .nav-close {
		width: 60%;
	}
}

@media (min-width: 992px) {
	footer .brand img {
		margin-top: -10px;
	}
	footer .brand .brand-name {
		font-size: 1.4rem;
	}
	.dropdown-menu .dropdown-toggle:after{
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		top:-7px;
		right: 100%;
		left: auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
	.spacer {
		height: 6.5em;
	}
}

@media (min-width: 1200px) {
	.navbar .navbar-brand .brand-name {
		font-size: 1.8em;
	}
	.navbar .navbar-brand img {
		height: 45px;
		width: auto;
		margin-top: -22px;
	}
	.navbar .navbar-nav .nav-item .nav-link {
		font-weight: 700;
	}
	footer .brand img {
		margin-top: -15px;
		width: 50px;
		height: 40px;
	}
	footer .brand .brand-name {
		font-size: 1.3rem;
	}
	.spacer {
		height: 7em;
	}
}

@media (min-width: 1400px) {
	.navbar .navbar-brand img.tourism-img {
		display: inline;
	}
	.navbar .navbar-nav .nav-item.call-btn-div {
		display: inline;
	}
}

@media(min-width: 1600px) {
	.navbar .navbar-brand .brand-name {
		font-size: 2em;
	}
}
/*------call-------*/
.call-back-1 {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: +9999;
    animation-name: mover1;
    -webkit-animation: mover1 1s infinite alternate;
    animation: mover1 1s infinite alternate;
}

.call-back-1 img {
    width: 60px;
    margin-bottom: 37px;
    display: block;
}

@-webkit-keyframes mover1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*------end call-------*/