@font-face {
  font-family: "kaff_regular";
  src: url("../webfonts/29ltkaff-regular.ttf");
}
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: #999999;
  height: 300px;
}

.gradient {
  background: #999999;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: inherit;
}

* {
  margin: 0;
  padding: 0;
  direction: rtl;
  line-height: 32px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  font-family: "kaff_regular", sans-serif;
}

body {
  overflow-x: hidden;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.fancybox__container {
  z-index: 999999999999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

header {
  width: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  height: 100px;
  display: flex;
  background: #fff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
}
header nav {
  height: 100%;
  position: static !important;
}
header nav .logo {
  flex: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 42px;
}
header nav ul {
  display: flex;
  justify-content: center;
  flex: 3;
}
header nav ul li {
  padding: 0 14px;
}
header nav ul li a {
  padding: 0 !important;
  font-weight: 600;
  color: #666666;
  font-size: 14px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #eb7504;
  transition: all 0.4s ease-in-out;
}
header nav ul li a:hover, header nav ul li a.active {
  color: #eb7504;
}
header nav ul li a:hover::after, header nav ul li a.active::after {
  width: 100%;
}
header nav ul li.hide_lg {
  display: none;
}
@media (max-width: 992px) {
  header nav ul li.hide_lg {
    display: block;
  }
}
@media (max-width: 992px) {
  header nav ul {
    position: absolute;
    top: 100px;
    right: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    height: calc(60vh - 108px);
    justify-content: flex-start;
    padding: 32px 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 10px 28px -5px rgba(0, 0, 0, 0.09);
  }
  header nav ul li {
    padding: 8px 24px;
  }
  header nav ul.show {
    right: 0;
  }
}
header nav .btns {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  header nav .btns {
    display: none;
  }
}
header nav .btns a {
  color: #eb7504;
  background: #fff5ec;
  position: relative;
  border-radius: 4px;
  padding: 6px 20px;
  isolation: isolate;
  overflow: hidden;
}
header nav .btns a span {
  z-index: 1;
  position: relative;
}
header nav .btns a::after {
  position: absolute;
  content: "";
  top: -60px;
  left: -60px;
  border-radius: 50%;
  background: #eb7504;
  z-index: 0;
  width: 0;
  height: 0;
  transition: all 0.4s ease-in-out;
}
header nav .btns a:hover {
  color: #fff;
}
header nav .btns a:hover::after {
  width: 200px;
  height: 200px;
}
header nav .menu-btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: none;
  z-index: 2;
  flex: 1;
}
@media (max-width: 992px) {
  header nav .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
  }
}
header nav .menu-btn .menu-bar {
  position: relative;
  height: 2px;
  width: 28px;
  background-color: #666666;
  transition: 0.5s ease;
}
header nav .menu-btn .menu-bar::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #666666;
  transition: 0.5s ease;
}
header nav .menu-btn .menu-bar::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #666666;
  transition: 0.5s ease;
}
header nav .menu-btn .menu-bar.menu-transform {
  background-color: transparent;
  transform: rotate(90deg);
}
header nav .menu-btn .menu-bar.menu-transform::before {
  transform: translate(0px, 9px) rotate(135deg);
}
header nav .menu-btn .menu-bar.menu-transform::after {
  transform: translate(0px, -9px) rotate(-135deg);
}

main {
  margin-top: 100px;
}

.heroSection {
  background-image: linear-gradient(#fff5ec, #fff);
}
@media (max-width: 576px) {
  .heroSection {
    padding-top: 24px;
  }
}
.heroSection .img {
  padding-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroSection .img img {
  width: 90%;
}
@media (max-width: 576px) {
  .heroSection .img {
    padding-top: 32px;
  }
}
.heroSection .text {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.heroSection .text span {
  font-size: 12px;
  font-weight: 700;
  color: #eb7504;
}
.heroSection .text span i {
  font-size: 12px;
  font-weight: 700;
  color: #eb7504;
}
.heroSection .text h1 {
  font-size: 48px;
  color: #666666;
  line-height: 70px;
  font-weight: 700;
}
.heroSection .text h1 span {
  font-size: 48px;
  font-weight: 700;
  line-height: inherit;
  color: #eb7504;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .heroSection .text h1 {
    font-size: 32px;
    line-height: 68px;
  }
}
.heroSection .text p {
  margin-bottom: 24px;
  color: #777;
}
@media (max-width: 576px) {
  .heroSection .text p {
    font-size: 14px;
    line-height: 26px;
  }
}
.heroSection .text .download_btns {
  display: flex;
  gap: 16px;
}
.heroSection .text .download_btns img {
  height: 44px;
}

.about_section {
  padding: 40px 0;
}
@media (max-width: 576px) {
  .about_section {
    padding-top: 0;
  }
}
.about_section .content {
  padding-top: 40px;
}
@media (max-width: 576px) {
  .about_section .content {
    padding-top: 30px;
  }
}
.about_section .content h2 {
  color: #eb7504;
  font-size: 28px;
  margin-bottom: 24px;
}
.about_section .content p {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.about_section .circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .about_section .circle {
    width: 330px;
    height: 330px;
    margin: 20px auto 30px;
  }
}
.about_section .circle span {
  height: 134px;
  z-index: -1;
  width: 120%;
  background: #eb7504;
  position: absolute;
}
.about_section .circle span:nth-child(1) {
  top: 0;
}
.about_section .circle span:nth-child(3) {
  bottom: 0;
}
.about_section .circle img {
  height: 50%;
}
@media (max-width: 576px) {
  .about_section .circle img {
    height: 40%;
  }
}
.about_section .about_card {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about_section .about_card img {
  height: 60px;
}
.about_section .about_card h4 {
  font-size: 16px;
  color: #666666;
}

.famousClubs {
  padding: 40px 0;
}
.famousClubs .filedsSwiper {
  margin-top: 30px;
}
.famousClubs .filedsSwiper .field_card {
  border: 1px solid #eee;
  border-radius: 8px;
  width: 100%;
}
.famousClubs .filedsSwiper .field_card .img {
  width: 100%;
  position: relative;
}
.famousClubs .filedsSwiper .field_card .img img {
  border-radius: 8px 8px 0 0;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.famousClubs .filedsSwiper .field_card .img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(14, 121, 103, 0) 23.76%, #20c46c 90.19%);
}
.famousClubs .filedsSwiper .field_card .content {
  padding: 24px 16px;
}
.famousClubs .filedsSwiper .field_card .content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  margin: 0;
}
.famousClubs .filedsSwiper .field_card .content .price {
  background: #fff5ec;
  color: #eb7504;
  border-radius: 4px;
  font-size: 12px;
  padding: 4px 8px;
  line-height: 20px;
}

.small_title {
  font-size: 12px;
  font-weight: 700;
  color: #eb7504;
}

.download-app {
  width: 100%;
  padding: 30px 0;
  height: 400px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.753), rgba(0, 0, 0, 0.7607843137)), url(../images/contact.jpg);
  background-size: contain;
  overflow: hidden;
}
@media (max-width: 768px) {
  .download-app {
    height: 650px;
  }
  .download-app .app-imgs {
    margin-top: 60px;
  }
}
.download-app .container {
  height: 100%;
}
.download-app .container .row {
  height: 100%;
}
.download-app .container .row .img {
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.download-app .container .row .img img {
  width: 52%;
}
@media (max-width: 576px) {
  .download-app .container .row .img img {
    width: 62%;
  }
}
.download-app .container .row h3 {
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  line-height: 72px;
  margin-bottom: 12px;
}
@media (max-width: 450px) {
  .download-app .container .row h3 {
    font-size: 42px;
    line-height: 62px;
  }
}
.download-app .container .row p {
  color: #fff;
}
.download-app .container .row .btns {
  margin-top: 16px;
  display: flex;
  gap: 24px;
}
.download-app .container .row .btns img {
  max-height: 48px;
}

.title {
  font-size: 24px;
  color: #666666;
  font-weight: 600;
}

#mapLocation {
  height: 350px !important;
}

.gallery {
  padding: 40px 0;
}
.gallery .appImgs {
  padding: 40px 0;
  position: relative;
}
.gallery .appImgs h2 {
  color: #666666;
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px !important;
}
.gallery .appImgs p {
  color: #777;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px !important;
}
.gallery .appImgs .swiper {
  width: 100%;
  padding: 30px 0;
  position: relative;
  display: flex;
}
.gallery .appImgs .swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 234px;
  height: 507px;
  position: relative;
}
@media (max-width: 768px) {
  .gallery .appImgs .swiper .swiper-slide {
    width: 175.5px;
    height: 380px;
  }
}
.gallery .appImgs .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.gallery .appImgs .swiper .frame {
  width: 267px;
  height: 532px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .gallery .appImgs .swiper .frame {
    width: 202.5px;
    height: 401px;
  }
}
.gallery .appImgs .swiper-wrapper {
  height: auto;
}
.gallery .appImgs .swiper-3d .swiper-slide-shadow,
.gallery .appImgs .swiper-3d .swiper-slide-shadow-bottom,
.gallery .appImgs .swiper-3d .swiper-slide-shadow-left,
.gallery .appImgs .swiper-3d .swiper-slide-shadow-right,
.gallery .appImgs .swiper-3d .swiper-slide-shadow-top {
  border-radius: 16px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.062745098);
  border: 4px solid #fff;
}
.gallery .appImgs .swiper-3d .swiper-slide-shadow-left {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.gallery .appImgs .swiper-3d .swiper-slide-shadow-right {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.contact {
  padding: 60px 8px;
  -o-object-position: center;
     object-position: center;
  position: relative;
  background-image: url(../images/contact.jpg);
  isolation: isolate;
  background-size: cover;
}
.contact form {
  padding: 48px 32px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(21, 21, 22, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 576px) {
  .contact form {
    padding: 32px 0;
  }
}
.contact form .form-group {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .contact form .form-group {
    flex-direction: column;
    gap: 48px;
  }
}
.contact form .form-group .inputfield {
  width: 100%;
  padding: 0 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact form .form-group .inputfield label {
  position: absolute;
  font-size: 14px;
  color: #fff;
  right: 32px;
  transform: translateY(-50%);
  top: 50%;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  cursor: auto;
}
.contact form .form-group .inputfield label.message-label {
  top: 20%;
}
.contact form .form-group .inputfield label.h {
  top: -4px;
  color: #fff;
}
.contact form .form-group .inputfield input,
.contact form .form-group .inputfield textarea {
  width: 100%;
  height: 45px;
  border: none;
  background: none;
  outline: none;
}
.contact form .form-group .inputfield input:focus + span::after,
.contact form .form-group .inputfield textarea:focus + span::after {
  width: calc(100% - 64px);
}
.contact form .form-group .inputfield textarea {
  padding: 16px 0;
  height: 130px;
}
.contact form .form-group .inputfield .highlight {
  width: 100%;
  height: 2px;
  background: #eeeeee;
}
.contact form .form-group .inputfield .highlight::after {
  content: "";
  width: 0;
  transition: all 0.4s ease-in-out;
  left: 50%;
  height: 2px;
  background: #eb7504;
  position: absolute;
  transform: translate(-50%);
}
.contact form button {
  border: none;
  background: none;
  outline: none;
  align-self: flex-end;
  margin-left: 32px;
  isolation: isolate;
  padding: 0 16px;
  width: 140px;
  height: 50px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.contact form button::after {
  position: absolute;
  content: "";
  height: 150px;
  width: 0;
  right: 10px;
  transition: all 0.4s ease-in-out;
  background: #eb7504;
  transform: rotate(-25deg);
  z-index: -1;
}
.contact form button:hover {
  color: #fff;
  border-color: #eb7504;
}
.contact form button:hover::after {
  width: 110%;
  right: -10px;
}

footer {
  padding: 20px 0;
}
footer .follow {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
footer .follow ul {
  display: flex;
  gap: 8px;
}
footer .follow ul a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
  background: #fff5ec;
}
footer .follow ul a:hover {
  background: #eb7504;
  color: #fff;
}
footer .copy p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.services {
  padding: 40px 0;
}
.services .title {
  margin-bottom: 24px;
}
.services .img {
  width: 100%;
  height: 100%;
}
.services .img:nth-child(1) {
  border-radius: 8px 8px 8px 0;
}
.services .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.services .content h2 {
  font-size: 24px;
  color: #eb7504;
  font-weight: 600;
}
.services .content p {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.services .content h6 {
  font-size: 16px;
  color: #eb7504;
  font-weight: 600;
}
.services .row {
  align-items: center;
}
.services .row:nth-child(even) {
  flex-direction: row-reverse;
}

.features {
  position: relative;
  padding: 60px 0;
}
.features .toop {
  position: absolute;
  right: 40px;
  top: 100px;
  animation: swing-right 5s linear infinite;
}
@media (max-width: 450px) {
  .features .toop {
    top: 20px;
  }
}
.features .bottom {
  position: absolute;
  left: 40px;
  bottom: 0;
  animation: swing-left 5s linear infinite;
}
@keyframes swing-left {
  0% {
    left: 40px;
  }
  25% {
    left: 60px;
  }
  50% {
    left: 80px;
  }
  75% {
    left: 60px;
  }
  100% {
    left: 40px;
  }
}
@keyframes swing-right {
  0% {
    right: 40px;
  }
  25% {
    right: 60px;
  }
  50% {
    right: 80px;
  }
  75% {
    right: 60px;
  }
  100% {
    right: 40px;
  }
}
.features .title {
  color: #666666;
  font-weight: 600;
  margin-bottom: 48px;
}
.features .feature-card {
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background: #fff;
  height: 100%;
  padding: 24px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
.features .feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eb7504;
  border-radius: 16px;
  height: 78px;
  width: 78px;
  margin-bottom: 28px;
}
.features .feature-card .icon img {
  max-height: 40px;
}
.features .feature-card h4 {
  color: #666666;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
.features .feature-card p {
  margin: 0;
  text-align: center;
  color: #666666;
  line-height: 24px;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */