: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 1s 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;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.navbar .navbar-brand {
	max-width: 150px;
	height: 100px;
}
.content .box {
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  transition: 0.3s;
}
.content .box:hover {
  margin-left: -30px;
}
.content .box:not(:last-child) {
  margin-bottom: 30px;
}
.content .box .image img {
  border-radius: 0 6px 6px 0;
}
@media (max-width: 767px) {
  .content .box .image img {
    border-radius: 6px 6px 0 0;
  }
}
.content .box .info .btn,
.content .popup-box .popup-info a.btn {
  background-color: var(--main-color);
  transition: 0.3s;
}
.content .box .info .btn:hover,
.content .popup-box .popup-info a.btn:hover {
  background-color: var(--forth-color);
}
/* start popup */
.overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 9000;
}
.content .popup-box {
  display: none;
  opacity: 0;
  transition: 0.3s;
}
.content.active .popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 99999;
  width: 75%;
  pointer-events: auto;
  opacity: 1;
}
@media (min-width: 992px) {
  .content.active .popup-box {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .content.active .popup-box {
    width: 40%;
  }
}
.content.active .popup-box .popup-image img {
  max-height: 300px;
  object-fit: cover;
}
/* end popup */
.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;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: var(--forth-color);
}
.swiper-pagination-bullet-active {
  background-color: var(--forth-color);
}
