:root {
	--font1: 'Cardo', serif;
	--font2: 'Poppins', sans-serif;
	--c1: #1b232a;
}

::selection {
	background: var(--primary);
	color: var(--light);
}

html,
body {
	min-height: 100vh;
	font: 400 15px/1.4 var(--font2);
	color: var(--dark);
	background: var(--light);
}

a {
	color: inherit;
	transition: all 0.5s ease-out;
}

a:hover {
	text-decoration: none;
	color: var(--primary);
}

button:active,
button:focus,
a:active,
a:focus {
	outline: none;
}

img {
	width: 100%;
}

strong {
	font-weight: 700;
}

h2 {
	font: 400 30px/27px var(--font2);
	letter-spacing: -1px;
	margin: 0 0 20px;
}

h2 span {
	display: block;
	font: 400 66px/80px var(--font1);
	color: var(--primary);
}

h2 strong {
	display: block;
	font: 700 28px/30px var(--font2);
	color: var(--dark);
	text-transform: uppercase;
	margin: -5px 0 0 10px;
}

p {
	font-size: 14px;
	margin: 0 0 15px;
	font-weight: 400;
}

section {
	padding: 60px 0;
}

.dff {
	background: var(--c1);
	display: none;
}

.btn {
	padding: 10px 15px;
	background: transparent;
	border: 0;
	font-size: 15px;
	color: var(--light);
	border: 2px solid var(--primary);
	border-radius: 0;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 5px;
	transition: all 0.3s ease-out;
	background: var(--primary);
}

.btn:hover {
	background: var(--primary);
	color: var(--light);
}

.btn.btn-light {
	background: #ffc107;
	border-color: var(--light);
	color: #000000;
}

.btn.btn-light:hover {
	background: var(--dark);
	color: var(--light);
}

section#home .btn {
	background: var(--light);
	color: var(--primary);
}

#border span {
	position: fixed;
	display: block;
	z-index: 1000;
	background: var(--c1);
}

#border span#top,
#border span#bottom {
	left: 0;
	top: 0;
	width: 100%;
	height: 20px;
}

#border span#bottom {
	top: auto;
	bottom: 0;
}

#border span#left,
#border span#right {
	left: 0;
	top: 0;
	width: 20px;
	height: 100%;
}

#border span#right {
	left: auto;
	right: 0;
}

.g-recaptcha {
	height: 100px;
	margin: 10px 0px 30px;
	overflow: hidden;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1100;
	transition: all 0.5s;
	background: #1b232a;
}

header .add {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	transition: all 2s ease-out;
	height: 20px;
	overflow: hidden;
}

header .add .msg,
header .add a {
	display: inline-block;
	font: 700 12px/20px var(--font2);
	color: var(--light);
	padding: 0 10px;
	position: relative;
}

header .add a:hover {
	color: var(--primary);
}

header .nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.x-mas-main-sec{
	padding: 146px 0 60px 0;
}

header .nav .logo {
	display: block;
	height: auto;
	width: 190px;
	padding: 10px 0;
}

header .nav .logo:hover img {}

header .nav .logo img {
	height: auto;
	width: 100%;
	transition: all 0.5s;
	margin-top: 5px;
}

header .nav nav {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	margin: 0;
}

header .nav nav a {
	display: block;
	padding: 0 25px;
	font: 700 14px/70px var(--font2);
	text-align: center;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 3px;
	position: relative;
}

header .nav nav a.active {
	color: var(--primary);
}

header .nav nav a.cta {
	display: flex;
	align-items: center;
	color: var(--light);
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 3px;
	position: relative;
	background: var(--primary);
}

header .nav nav a.cta small {
	text-align: center;
	display: block;
}

header .nav nav a:not(.cta):after {
	content: "";
	display: block;
	width: 50%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	position: absolute;
	transition: all 0.3s;
}

header .nav nav a.active:after {
	background: var(--primary);
}

header .nav nav a:hover,
header .nav nav a:hover:after {
	color: var(--primary);
}

header .order.btn {
	display: none;
}

header .nav nav a.cta:hover {
	color: var(--light);
}

header .nav #toggler {
	display: none;
	margin: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 22px;
	color: var(--light);
	border-radius: 2px;
	cursor: pointer;
}

header .nav #toggler svg {
	fill: #fff;
}

header.on {
	background: #1b232a;
	max-width: 100%;
	padding: 0;
}

@media (max-width:992px) {
	.x-mas-main-sec {
    padding: 116px 0 30px 0;
}
	header {
		left: 0;
		width: 100%;
	}

	header .add {
		justify-content: end;
		height: auto;
		flex-wrap: wrap;
		padding: 5px 0;
	}

	header .add .msg,
	header .add div,
	header .add a {
		display: block;
		font-size: 11px;
		line-height: 12px;
		padding: 0;
	}

	header .nav nav a:hover {}

	header .nav {
		padding: 5px;
		box-shadow: none;
	}

	header .nav .logo {
		display: block;
		height: 50px;
		width: auto;
		padding: 0;
	}

	header .nav .logo img {
		height: 100%;
		width: auto;
		margin-top: -3px;
		margin-left: -19px;
	}

	header .nav #toggler {
		display: block;
	}

	header .order.btn {
		display: block;
		padding: 15px 10px;
		font-size: 14px;
		letter-spacing: 0;
		border-radius: 2px;
		background: var(--primary);
		border: 0;
		color: var(--light);
	}

	header .order.btn small {
		display: block;
		font-size: 11px;
	}

	header .nav nav {
		background: var(--c1);
		width: 80%;
		position: fixed;
		top: 0;
		height: 100%;
		right: -200%;
		display: flex;
		flex-flow: column;
		transition: 2s;
	}

	header .nav nav.active {
		right: 0%;

	}

	header .nav nav a.active {
		background: var(--light);
	}

	header .nav nav a.cta {
		display: none;
	}
}

.banner {
	position: relative;
	z-index: 10;
	background: var(--light);
	padding: 0;
}

.banner .item {
	height: calc(110vh - 40px);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.banner .item:after,
.banner-new:after {
	position: absolute;
	content: "";
	background-color: rgba(0, 0, 0, 0.1);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner .item .text {
	background: var(--dark);
	display: table;
	width: auto;
	margin: 0 auto;
	text-align: center;
	z-index: 20;
	padding: 20px 20px 80px;
	border-radius: 30px 30px 0 0;
}

.banner .item .text h1 {
	font-size: 36px;
	font-weight: 300;
	color: var(--light);
	margin: 0 0 15px;
}

.banner .item .text small {
	font-size: 15px;
	color: var(--light);
	display: block;
	margin: 15px 0 0;
}

.banner .owl-banner {
	position: relative;
	z-index: 500;
}

.banner svg {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 510;
	width: 125px;
	height: 48px;
	cursor: pointer;
}

.banner svg .st0 {
	fill: #4b5157;
}

.banner svg .st1 {
	fill: none;
	stroke: var(--dark);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
}

@media (max-width:992px) {
	.ss2 img {
		margin-top: 25px;
	}

	.banner .item {
		height: 70vh;
	}

	.banner .item .text h1 {
		text-align: center;
		font-size: 50px;
	}

	.banner .item .text .btn {
		display: table;
		margin: 0 auto;
	}

	.banner .item .text small {
		text-align: center;
	}
}

.home-0 {
	padding: 150px 30px;
	background: antiquewhite;
	background-size: cover;
}

section.home-0.gss h2 strong {
	color: var(--light);
}

.home-0 .text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 40vw;
	margin: 0 auto;
	flex-flow: column;
}

.home-0 .text h2 {
	color: var(--dark);
}

@media (max-width:992px) {
	.home-0 {
		padding: 80px 30px;
	}

	.home-0 .text {
		max-width: calc(100vw - 30px);
		justify-content: center;
		flex-wrap: wrap;
	}

	.home-0 .text h2 {
		margin: 0 0 30px;
	}
}

.home-1 {
	margin: 0;
	no-repeat 0 0 / contain var(--light);
	background-size: cover;
}

.home-1 .text {
	margin: 0 auto;
}

.home-1 .text .btn {}

@media (max-width:992px) {
	.home-1 {
		padding: 15px 0;
		background-size: cover;
	}

	.home-1 .text {
		margin: 0 auto;
		width: 100%;
	}
}

.home-2 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	background-color: #4b5157;
	padding: 0;
}

.home-2 .bg {
	width: 33%;
	padding: 10px 10px 0 0;
}

.home-2 .bg:nth-child(2) {
	width: 66%;
}

.home-2 .bg div {
	display: block;
	background: #c5964f;
	padding: 100px;
}

.home-2 .bg h2 span,
.home-2 .bg h2 strong,
.home-2 .bg p {
	color: var(--light);
}

@media (max-width:992px) {
	.home-2 {
		margin: 0;
	}

	.home-2 .bg {
		width: 50%;
		padding: 0;
	}

	.home-2 .bg:nth-child(1) {
		height: 1px;
		overflow: hidden;
	}

	.home-2 .bg:nth-child(2) {
		width: 100%;
	}
}

section.home-3 h2 strong {
	color: var(--light);
}

.home-3 {
	padding: 60px 50px 100px 20px;
	position: relative;
	background: url(img/balti_palace_customer_feedback.jpg);
	background-size: cover;
}

.home-3 h2 {
	text-align: center;
}

.home-3 .test {
	width: 100%;
	margin: 50px 0 0;
}

.home-3 .test .item {
	background: #2e2e2e7a;
	padding: 50px;
}

.home-3 .test h5 {
	color: var(--light);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}

.home-3 .test p {
	color: var(--light);
	font: 400 18px/25px var(--font2);
	text-align: center;
	font-style: italic;
	margin: 0;
}

.home-3 .test img {
	display: table;
	margin: 15px auto;
	max-width: 100px;
}

.home-3 .test .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: var(--primary);
	box-shadow: 0 0 0 2px var(--primary);
	transition: all 0.5s;
}

.home-3 .test .owl-nav button:hover {
	color: var(--light);
	background: var(--primary);
}

.home-3 .test .owl-nav button.owl-prev {
	left: 5px;
}

.home-3 .test .owl-nav button.owl-next {
	right: 5px;
}

.home-3 .test .owl-dots {
	display: table;
	margin: 20px auto 0;
}

.home-3 .test .owl-dots .owl-dot {
	width: 25px;
	height: 8px;
	border: 2px solid var(--primary);
	margin: 0 3px;
	transition: all 0.5s;
}

.home-3 .test .owl-dots .owl-dot.active {
	background: var(--primary);
}

.home-3 .separator {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 20;
	width: 100%;
}

@media (max-width:992px) {
	.home-3 .test p {
		font-size: 15px;
	}

	.home-3 img {
		max-width: 200px;
		display: table;
		margin: 0 auto 30px;
	}
}

footer {}

footer .content {
	background: #1b232a;
	padding: 30px 0;
}

footer .content p {
	margin: 0 0 10px;
	color: var(--light);
	font-weight: 400;
}

footer .content a {
	display: block;
	margin: 0 0 10px;
	color: var(--light);
	font-weight: 400;
	font-size: 14px;
}

footer .content a:hover {
	color: var(--primary);
}

footer .content a:last-child {
	margin: 0;
}

footer .content .contact {
	margin-bottom: 10px;
}

footer .content .contact img {
	width: 100%;
	max-width: 280px;
	margin: 0 -40PX 15px;
}

footer .content .link {
	display: flex;
	justify-content: space-around;
}

footer .content .time p {
	margin: 0 0 10px;
	font-size: 20px;
}

footer .content .time table tr td {
	padding: 2px 10px;
	color: var(--light);
}

footer .content .time table tr td:first-child {
	font-weight: 700;
	text-align: right;
}

footer .content .time table tr.active td {
	background: var(--light);
	color: var(--dark);
}

footer .copy {
	background: #1f2f3e;
	padding: 10px;
	font-size: 12px;
	text-align: center;
	color: var(--light);
}

@media (max-width:992px) {
	footer {
		margin: 0;
		/*margin-top: 160px;*/
	}

	footer .content a,
	footer .content p {
		display: block;
		text-align: center;
	}

	footer .content .contact img {
		max-width: 300px;
		margin: 0 auto 30px;
		display: table;
	}

	table {
		margin: 0 auto;
	}
}

.textas {
	text-align: center;
}

.textas h2 {
	color: #5f0d22;
	font-weight: 600;
}

.pic img {
	margin-top: 24px;
	box-shadow: 0 0px 14px #464646;
}

.c .booking {
	padding: 50px 0 0;
}

.booking .text {
	background: var(--light);
	margin-bottom: 30px;
}

.booking .text h2 {
	text-align: left;
}

.booking .text h2 span {
	color: var(--primary);
}

.booking .text .btn {
	display: table;
}

@media (max-width:992px) {
	.texts span {
		margin-bottom: -12px;
	}

	.imgs1 img {
		margin-top: 15px !important;
	}

	ontact-details p,
	.contact-details h3 {
		margin-left: 10px;
		margin-right: 10px;
		text-align: center;
	}

	.contact-details .social {
		text-align: center;
	}
}

.menu a {
	pointer-events: none;
	cursor: default;
}

.menu ul {
	list-style: none;
	padding: 0;
}

.menu .menu-active {
	width: 33%;
	padding: 0 10px 20px;
}

.menu .menu-active>a {
	font-size: 20px;
	font-weight: 700;
	background: var(--c1);
	color: var(--light);
	display: block;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--primary);
	text-transform: capitalize;
}

.menu .menu-active>ul {
	padding: 20px 15px 10px;
	background: var(--darky);
	border: 1px solid var(--c1);
	border-top: 0;
}

.menu .menu-active .meal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 15px;
}

.menu .menu-active .meal h5 {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	text-transform: capitalize;
	font-family: var(--font2);
}

.menu .menu-active .meal h5.sub-item {
	margin: 0 0 0 20px;
	color: var(--dark8);
}

.menu .menu-active .meal h5.sub-item:before {
	content: "";
	color: var(--primary);
}

.menu .menu-active .meal h4 {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	text-transform: capitalize;
	font-family: var(--font2);
}

.menu .menu-active .meal .dots {
	flex-grow: 1;
	border-bottom: 2px dashed var(--c1);
	height: 15px;
	margin: 0 10px;
}

.menu .menu-active .meal .price {
	font-size: 14px;
	font-weight: 700;
	color: var(--dark);
}

.menu .menu-active .productdescription,
.menu .menu-active .subproductdescription,
.menu .menu-active .sub-menu>.menucatdescription {
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
	margin: -15px 0 15px;
	color: var(--dark5);
	text-align: justify;
	text-transform: capitalize;
}

.menu .menu-active .subproductdescription {
	margin-left: 40px;
}

.menu .btn {
	margin: 30px auto;
}

@media (max-width:992px) {
	.menu .menu-active {
		width: 100%;
		padding: 0 0 10px;
	}
}

.gallery {
	padding: 0 0 60px;
}

.gallery #gallery {
	display: flex;
	flex-wrap: wrap;
}

.gallery #gallery a {
	display: block;
	background: var(--dark);
	margin: 10px;
	position: relative;
	width: calc(33% - 20px);
	box-shadow: 0 0 0 10px #000 inset;
}

.gallery #gallery a img {
	width: 100%;
	transition: all 0.4s;
	opacity: 0.8;
}

.gallery #gallery a:hover img {
	opacity: 1;
}

@media (max-width:992px) {
	.gallery #gallery a {
		width: calc(50% - 10px);
		margin: 0 5px 10px;
	}
}

.contact {
	position: relative;
}

.contact-details {
	padding: 50px 0 60px;
}

.contact-details iframe {
	width: 100%;
	margin-top: 20px;
	border: 0;
	height: 350px;
	position: relative;
	z-index: 10;
}

.contact-details>p {
	text-align: center;
}

.contact-details form input,
.contact-details form textarea {
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	color: var(--dark);
	border: 1px solid var(--dark);
	border-bottom: 0;
	margin: 0;
	background: transparent;
}

.contact-details form textarea {
	height: 150px;
	min-height: 150px;
	resize: vertical;
	border-bottom: 1px solid var(--c1);
}

.contact-details form input:focus,
.contact-details form textarea:focus {
	box-shadow: none;
	outline: none;
	background: #ddd;
}

.contact-details form button {
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
	border: 1px solid var(--dark);
	margin-top: -4px;
	border-radius: 0;
}

.contact-details .social a {
	font-size: 30px;
	color: var(--primary);
	margin-right: 5px;
}

.contact-details a:hover {
	color: var(--dark);
}

.contact-details .msg {
	margin-top: 20px;
}

.contact-details .msg.success {
	color: green;
}

.contact-details .msg.error {
	color: red;
}

@media (max-width:992px) {
	section.home-0.gss {
		padding: 80px 10px;
	}

	section.home-0.gss .text {
		justify-content: space-between;
		text-align: center;
	}

	h2 strong {
		margin: 0;
	}

	h2 span {
		font: 400 40px/40px var(--font1);
	}

	.home-0.gss h2 strong {
		display: block;
		font: 700 26px/30px var(--font2);
		color: var(--dark);
		text-transform: uppercase;
		margin: -5px 0 0 10px;
	}

	.home-0.gss h2 {
		margin-bottom: 20px;
	}

	.home-1 .text {
		width: 100%;
		padding: 50px 20px;
	}

	.home-2 .bg div {
		padding: 60px 20px;
	}

	.home-3 {
		padding: 60px 0px;
	}

	.contact-details>p {
		padding: 0 10px;
	}
}

.tos {
	padding: 150px 0 0;
}

.tos p {
	font-size: 14px;
	line-height: 15px;
	margin: 0 0 10px;
	font-weight: 600;
	text-align: justify;
	letter-spacing: 0;
}

.tos p strong {
	font-weight: 700;
}

#menu .item {
	width: 33%;
	padding: 0 10px 20px;
}

#menu .item .title {
	background: var(--c1);
	color: var(--light);
	padding: 10px;
	border: 1px solid var(--c1);
}

#menu .item .title p {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	text-transform: capitalize;
}

#menu .item .title small {
	font-size: 12px;
	display: block;
	margin: 0;
	font-weight: 700;
	font-style: italic;
	color: #ffc107;
}

#menu .content {
	padding: 20px 15px 10px;
	border: 1px solid var(--c1);
	border-top: 0;
}

#menu .content .meal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 15px;
}

#menu .content .meal .name {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
}

#menu .content .meal .dots {
	flex-grow: 1;
	border-bottom: 2px dashed var(--c1);
	height: 15px;
	margin: 0 10px;
}

#menu .content .meal .price {
	font-size: 14px;
	font-weight: 700;
	color: var(--c1);
}

#menu .content .detail {
	font-size: 13px;
	font-weight: 400;
	font-style: italic;
	margin: -15px 0 15px;
	color: #f10000;
}

#menu .content .meal.sub {
	padding-left: 15px;
}

#menu .content .meal.sub .name {
	opacity: 0.9;
}

#menu .content .meal.sub .name:before {
	content: "> ";
	color: var(--c1);
}

@media (max-width:992px) {
	section.menu {
		margin-top: -120px;
	}

	.potrait img {
		display: none;
	}

	.texttt {
		margin-top: -48px !important;
	}

	/*.texttt {
		display: none;
	}*/

	#menu .item {
		width: 100%;
		padding: 0 0 10px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	section {
		padding: 20px 0;
	}

	.banner .item {
		height: calc(60vh - 40px);

	}

	h2 strong {
		font: 700 30px/30px var(--font2);
	}
}

.slider-content {
	text-align: center;
	width: 50%;
	position: relative;
	z-index: 3;
}

.slider-content h2,
.slider-content p {
	color: var(--light);
	font-size: 45px;
	text-shadow: 0 2px 2px black;
}

.slider-content span {
	text-shadow: 0 2px 2px black;
	font-size: 60px;
	margin-top: 5px;
}

.ss1 span {
	font-size: 43px;
	line-height: 1;
}

.slider-content p {
	font-size: 18px;
}

.home-menu .content {
	display: none;
	padding: 10px;
}

.home-menu .title {
	padding: 10px;
	border-bottom: 1px solid var(--dark);
	position: relative;
}

.home-menu .title:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	content: "\f107";
	font-weight: 900;
	font-family: 'Line Awesome Free';
	transition: 1s;
}

.home-menu .title p {
	margin: 0;
	padding: 0;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 0px;
}

.home-menu .title small {
	display: none;
}

.home-menu .meal.sub {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed #676363;
	font-size: 19px;
	padding: 20px 0;
	align-items: center;
}

.home-menu .meal .name {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 700;
}

.home-menu .sub .name {
	font-weight: normal;
}

.home-menu .title.active:after {
	transform: rotate(180deg);
	margin-right: 5px;
}

.home-menu .meal {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}

.div .btn {
	margin-top: 20px;
}

section.home-1.home-4 .text {
	padding: 50px 0 0 0;
}

header.in {}

section.home-5 {
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	height: 100vh;
	background: antiquewhite;
}

.text.wow.animate__.animate__backInDown.animated {
	text-align: center;
}

.texts {
	text-align: initial;
}

.texts p {
	color: white;
	font-size: 15px;
}

.banner-new {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-size: cover !important;
	background-position: 50% 50% !important;
}

.banner-new h2 {
	position: relative;
	z-index: 10;

}

.ion-bar {
	display: block;
	height: 2px;
	width: 25px;
	background: #ffffff;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.icon-bar:before,
.icon-bar:after {
	background: #ffffff;
	content: "";
	height: 100%;
	left: 4px;
	position: absolute;
	bottom: -6px;
	right: 0;
}

.icon-bar:after {
	bottom: -12px;
	left: 8px;
	top: auto;
}

.la-times {
	display: none;
}

@media (max-width:900px) {
	.slider-content {
		width: 90%;
		margin-top: 200px;
	}

	.banner-new {
		height: 70vh;
	}

	.la-times {
		display: block;
		color: #fff;
		font-size: 30px;
		margin-left: 25px;
		margin-top: 30px;
	}

	header .nav nav a.active:after {
		display: none;
	}

	header .nav nav a.active {
		background: transparent;
	}

	header .nav nav {
		justify-content: unset;
	}

}

.img2 img {
	margin-top: 12px;
	border: 2px solid #5f0d22;
	padding: 6px;
}

.img1 img {
	margin-top: 12px;
	border: 2px solid #5f0d22;
	padding: 6px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.img5 img {
	margin-top: 12px;
	border: 2px solid #5f0d22;
	padding: 6px;
}

.img3 img {
	margin-top: 12px;
	border: 2px solid #5f0d22;
	padding: 6px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.img4 img {
	margin-top: 12px;
	border: 2px solid #5f0d22;
	padding: 6px;
	border-bottom-right-radius: 30px;
}

.ss img {
	box-shadow: 0 2px 7px #00000073;
}

.ss2 img {
	box-shadow: 0 2px 7px #00000073;
}

section.home-4 {
	background: antiquewhite;
}

.imgs1 img {
	padding: 0;
	border: 8px solid #ffbc00;
	border-radius: 190px;
	box-shadow: 1px 1px 20px #0000007d;
	width: 80%;
	margin-left: 34px;
}

.textt h2 span {
	margin-top: 30px;
	font-size: 40px;
	font-weight: 600;
	color: #5f0d22;
	margin-bottom: -22px;
}

.textt {
	text-align: center;
}

.textt p {
	font-size: 15px;
	color: black;
}

.text {
	text-align: center !important;
}

.text p {
	text-align: initial;
}

.text {
	margin-bottom: -33px;
	margin-top: -17px;
}

.texts span {
	margin-bottom: -27px;
}

.textts {
	text-align: center;
	margin-top: 70px;
}

.textts span {
	margin-bottom: -25px !important;
	margin-top: -9px;
}

.textsa.wow.animate__.animate__fadeInLeft.animated {
	text-align: center;
}

.potrait img {
	width: 60%;
	border: 2px solid #1b232ac7;
	padding: 7px;
}

.textsa.wow.animate__.animate__fadeInLeft.animated p {
	margin-top: -16px;
}

.texttt {
	font-size: 48px;
	color: black;
}

.texttt {
	margin-top: 38px;
}

.ss1 {
	text-align: center;
	margin-top: 40px;
}

.img1 {
	text-align: center;
}

.img1 p {
	margin-top: 77px;
}

.img1 h2 {
	margin-bottom: -60px;
	margin-top: 56px;
}

.img1 h2 {
	color: #ffc107;
	font-weight: 600;
}

section.contact-details {
	text-align: left;
}

@media (max-width:900px) {
	section.contact-details {
		text-align: center;
	}

	.img3 img {
		display: none;
	}

	.img2 img {
		display: none;
	}

	.textts {
		text-align: center;
		margin-top: 20px;
	}

	.slider-content span {
		text-shadow: 0 2px 2px black;
		font-size: 40px;
		margin-top: 10px;
		line-height: 40px;
	}

	section.contact-details.wow.animate__.animate__backInLeft.animated {
		text-align: center;
	}

	.textts span {
		margin-bottom: -10px !important;
		margin-top: 5px;
	}

	section.home-5 {
		background-size: cover;
		background-attachment: fixed;
		text-align: center;
		height: 80vh;
		background-repeat: no-repeat;
		background-position: 50%;
	}

	section.home-5 {
		height: 65vh;
	}

	.col-lg-6.M {
		DISPLAY: NONE;
	}

	section.home-5 .btn {
		margin-bottom: 30px;
	}

	.slider-content h2,
	.slider-content p {
		color: var(--light);
		font-size: 20px !important;
		text-shadow: 0 2px 2px black;
		line-height: 1;
		text-transform: uppercase !important;
	}
}

.show {
	display: block;
}

.modal-content {
	margin-top: 40px;
}










.upper-part-nav {
	position: relative;
	z-index: 99;
	font-weight: 700;
	padding: 15px;
	color: #fff;
	background: #002984;
	text-align: center;
	background-image: url('./top-banner.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.upper-part-nav-close {
	position: absolute;
	top: 4px;
	right: 15px;
	cursor: pointer;
	font-size: 20px;
	color: #000;
	border: 2px solid #fff;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.upper-part-nav .text-div p {
	margin: 0;
}

.upper-part-nav .img-div img {
    height: auto;
    width: 80%;
}

.mdb {
	display: inline-block;
	padding: 8px 15px;
	margin-top: 7px;
	margin-bottom: 0;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: inherit;
	color: rgba(255, 255, 255, .87);
	text-decoration: none;
}

.font-italic {
	font-style: italic !important;
	font-size: 22px;
	font-weight: 700;
}