:root {
	--main-color: #04224e;
	--alt-color: #00a654;
	--third-color: #00adef;
	--forth-color: #0f50a2;
}
* {
	box-sizing: border-box;
}
body {
	font-family: 'Cairo', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
ul {
	list-style: none;
}
.loader {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: sticky;
	left: 0;
	top: 0;
	z-index: 99999;
}
.loader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border-color: var(--main-color);
  border-width: 4px;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  animation: rotate-right 2s infinite linear;
}
.loader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-color: var(--third-color);
  border-width: 4px;
  border-style: solid dotted;
  border-radius: 50%;
  animation: rotate-left 2s infinite linear;
}
@keyframes rotate-right {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes rotate-left {
  to {
    transform: rotate(0);
  }
  from {
    transform: rotate(1turn);
  }
}
.navbar {
	height: 100px;
	margin-bottom: -100px;
}
.nav-shadow {
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.navbar .logo {
	height: 100px;
}
.navbar .nav-link {
	cursor: pointer;
	color: white;
}
.navbar .navbar-toggler {
	background-color: white;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
	border: none;
}
@media (max-width: 991px) {
	.navbar .navbar-nav {
		width: 200px;
		border-radius: 10px;
		background-color: white;
		box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
		padding: 5px 30px;
		}
	.navbar .nav-link {
		color: black;
	}
	.navbar .logo {
		display: none;
	}
}
.landing-page {
	height: 100vh;
	background-size: cover;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.5s;
}
.landing-page .overlay,
.rooms .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}
.landing-page .intro-txt {
	height: calc(100vh - 100px);
	position: relative;
	z-index: 100;
}
.landing-page .intro-txt .info {
	max-width: 500px;
	text-align: center;
}
.landing-page .intro-txt .info .logo {
	transition: 0.5s;
}
.landing-page .intro-txt .info p {
	color: white;
}
.landing-page .go-down {
  color: white;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
	z-index: 100;
	cursor: pointer;
}
.landing-page .go-down:hover {
  color: var(--forth-color);
}
.landing-page .go-down svg {
  font-size: 25px;
  animation: bouncing 1.5s infinite;
}
@keyframes bouncing {
  0%,
  100% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(-15px);
  }
}
.about-us {
	opacity: 0;
	transition: 0.2s;
	transition-timing-function: ease-out;
}
@media (min-width: 767px) {
	.about-us .right {
		border-left: 3px solid var(--alt-color);
	}
}
.about-us .right h2 {
	color: var(--alt-color);
	font-size: 40px;
}
@media (max-width:991px) {
	.about-us .right h2 {
		padding-right: 25px;
	}
}
.about-us li {
	padding: 5px 0;
}
.about-us li svg {
	color: var(--alt-color);
	margin-left: 5px;
}
.rooms {
	height: calc(100vh - 100px);
	background-size: cover;
	position: relative;
	background-attachment: fixed;
	margin: 50px;
	transition: 0.3s;
}
@media (max-width:991px) {
	.rooms {
		background-image: url("../imgs/mob/img-02.jpg");
	}
}
@media (min-width:992px) {
	.rooms {
		background-image: url("../imgs/img-05.jpg");
	}
}
.rooms .container {
	z-index: 100;
	position: relative;
}
.rooms h2 {
	font-size: 70px;
	font-weight: bold;
	margin-bottom: 25px;
}
@media (max-width:991px) {
	.rooms h2 {
	font-size: 50px;
	}
}
.ratings {
	background-color: var(--main-color);
	color: white;
}
.ratings .rate .info {
	margin-bottom: 10px;
}
.ratings .rate:not(:last-child) {
	margin-bottom: 15px;
}
.ratings .rate .prog-container {
	width: 100%;
	height: 7px;
	background-color: #eee;
	position: relative;
	border-radius: 6px;
}
.ratings .rate .prog-container .prog {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background-color: var(--alt-color);
	border-radius: 6px;
	transition: 0.5s;
	width: 0;
}
.comments .card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background-color: var(--main-color);
}
.comments .card {
	height: 300px;
}
@media (min-width: 768px) {
	.comments .card {
		width: 100%;
	}
}
.comments .card-body {
	position: relative;
	z-index: 2;
}
.comments .card-body svg {
	color: white;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 50px 50px;
	gap: 15px;
}
@media (max-width: 767px) {
	.swiper-slide {
		flex-wrap: wrap;
	}
	.comments .card {
		width: 100%;
	}
}
.swiper {
	margin-left: auto;
	margin-right: auto;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: var(--forth-color);
}
.swiper-pagination-bullet-active {
  background-color: var(--forth-color);
}
.footer {
	background-color: var(--main-color);
	color: white;
}
.footer a {
	color: white;
	font-size: 18px;
  -webkit-transition: 0.3s;
	transition: 0.3s;
}
@media (max-width:991px) {
	.footer .logo {
		max-width: 300px;
	}
	.footer a {
	font-size: 16px;
	}
}
.footer a:hover {
	color: var(--alt-color);
}
.footer svg {
	margin-right: 5px;
}
