@font-face {
  font-family: Tajawal-Light;
  src: url(../fonts/Tajawal-Light.ttf);
}
@font-face {
  font-family: Tajawal-Regular;
  src: url(../fonts/Tajawal-Regular.ttf);
}
@font-face {
  font-family: Tajawal-Medium;
  src: url(../fonts/Tajawal-Medium.ttf);
}
@font-face {
  font-family: Tajawal-Bold;
  src: url(../fonts/Tajawal-Bold.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins-Bold.ttf);
}
:root {
  --white-color: #ffffff;
  --main-color: #cca967;
  --second-color: #cdd0d9;
  --third-color: #8a8e9c;
  --fourth-color: #1e1f23;
  --fifth-color: #fffaf2;
  --text-color: #bdc0cb;
  --title-color: #e0e2e8;
  --btn-text-color: #1d1f23;
  --btn-hover-text-color: #1d1f23;
  --btn-hover-bg-color: #e7bb66;
  --btn-border-radius: 50px;
  --star-color: #0f1113;
  --star-active-color: #cca967;
  --background: #fdf5e9;
  --background-2: #fceacb;
  --background-3: rgba(235 195 126 / 10%);
  --footer_background: #1d1f23;
  --copyright_background: #0f1113;
  --copyright_font_size: 16px;
  --border-radius: 15px;
  --border-radius-small: 3px;
  --header-title-size: 60px;
  --header-above-title-size: 40px;
  --sec-title-size: 38px;
  --title-size: 18px;
  --text-size: 18px;
  --desc-text-size: 16px;
  --icon-size: 22px;
  --box-shadow: 0px 0px 30px rgb(204 169 103 / 50%);
  --box-shadow-2: 0px 0px 30px rgb(0 0 0 / 30%);
  --box-shadow-3: 0px 5px 16px rgb(235 195 126 / 100%);
  --box-shadow-4: 0px 10px 30px rgb(235 195 126 / 100%);
  --box-shadow-5: 0px 10px 30px rgb(0 0 0 / 30%);
}
body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: start;
  font-size: var(--text-size);
  font-family: Tajawal-Regular;
  color: var(--text-color);
  background-color: #1d1f23;
  line-height: 1.9;
}
:lang(en) {
  font-family: Poppins-Regular !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-size: var(--title-size);
  font-family: Tajawal-Regular;
  color: var(--title-color);
}
* {
  outline: 0 !important;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.img-center {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.full-height {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
a {
  text-decoration: none;
  color: var(--second-color);
  transition: 0.5s all;
}
a:hover {
  color: var(--main-color);
  transition: 0.5s all;
}
.ANA-btn {
  position: relative;
  display: inline-flex;
  gap: 10px;
  min-width: 200px;
  min-height: 50px;
  padding: 15px 30px;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-border-radius);
  font-size: 18px;
  color: var(--btn-text-color);
  background-color: var(--main-color);
  box-shadow: 5px 10px 30px -5px rgb(0 0 0 / 45%);
  line-height: 1;
  border: 0;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.5s all;
}
.ANA-btn-white {
  color: var(--btn-text-color);
  background-color: var(--fifth-color);
  box-shadow: 5px 10px 30px -5px rgb(0 0 0 / 45%);
}

.ANA-btn::before {
  position: absolute;
  left: -100%;
  content: "";
  width: 0%;
  height: 100%;
  background: rgba(255 255 255 / 23%);
  box-shadow: 0 0 58px 30px rgb(255 229 180);
  z-index: 1;
}
.ANA-btn:hover,
.ANA-btn-white:hover {
  color: var(--btn-hover-text-color);
  background-color: var(--btn-hover-bg-color);
  box-shadow: 5px 10px 30px -5px rgb(204 169 103 / 45%);
  transition: 0.5s all;
}
.ANA-btn:hover::before,
.ANA-btn-white:hover::before {
  animation: ANA-btn-shine-animation 0.5s linear;
}
@keyframes ANA-btn-shine-animation {
  100% {
    left: 100%;
  }
}
/* ANA-counter-num */
.ANA-counter .ANA-counter-number {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.ANA-counter .ANA-counter-num {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 10vw;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: Poppins-Bold;
}
.ANA-counter .ANA-counter-heading {
  color: var(--title-color);
  font-size: var(--sec-title-size);
  margin-bottom: 0;
}
.ANA-counter .counter-suffix-1,
.ANA-counter .counter-suffix-2 {
  color: var(--main-color);
  font-size: 5vw;
}
/* stars */
.ANA-stars {
  display: flex;
  gap: 5px;
}
.ANA-stars i {
  font-size: 14px;
  color: var(--star-color);
  margin-bottom: 10px;
}
.ANA-stars i.active {
  color: var(--star-active-color);
}
.phone {
  direction: ltr;
  text-align: right;
  letter-spacing: 5px;
  font-size: 24px !important;
  line-height: 1;
}
/* slick */
.slick-initialized .slick-slide {
  float: right;
  padding: 0 7px;
}
.slick-dots {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
  padding: 0;
}
.slick-dots > li > button {
  border: 0;
  width: 10px;
  height: 10px;
  font-size: 0;
  padding: 0;
  border-radius: var(--border-radius-small);
  background-color: var(--text-color);
  transition: 0.5s all;
}
.slick-dots > li.slick-active > button {
  transform: rotate(45deg) scale(1.5);
  background-color: var(--main-color);
}
/* header */
#header {
  position: absolute;
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  z-index: 9;
  transition: 0.5s all ease-in-out;
}
#header.opacity {
  background-color: transparent;
}
#header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background-color: #1e1f23;
  box-shadow: 0 3px 16px rgb(0 0 0 / 30%);
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo {
  margin: 0;
}
#header .logo a {
  color: var(--main-color);
  font-size: 32px;
}
#header .logo img {
  max-height: 100%;
}
#header .header-menu {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#header .header-menu .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#header .header-menu .nav-link {
  padding: 3px 30px;
  font-size: 16px;
  font-family: Tajawal-Medium;
  color: var(--second-color);
  /* background-color: #0f1113; */
  border-radius: 50px;
  transition: 0.5s all;
}
#header .header-menu .nav-link:hover,
#header .header-menu .nav-link.active {
  color: var(--btn-hover-text-color);
  background-color: var(--btn-hover-bg-color);
  box-shadow: 5px 10px 30px -5px rgb(204 169 103 / 45%);
}

/* section */
section {
  padding: 120px 0;
}
section .container > .row {
  align-items: center;
  justify-content: center;
}
.buttons {
  margin-top: 30px;
}
.buttons > .row {
  align-items: center;
  justify-content: center;
}
/* accordion */
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  position: relative;
  color: var(--bs-accordion-color);
  background-color: var(--fourth-color);
  border: 0;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: var(--box-shadow-2);
}
.accordion-item::before,
.accordion-header .accordion-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  display: block;
  width: 1px;
  background-color: var(--main-color);
  transition: 0.5s all ease-in-out;
}
.accordion-item .accordion-header .accordion-button::before {
  top: 23px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  transform: rotateZ(45deg);
}
.accordion-item::before {
  opacity: 0.3;
}
.accordion-header,
.accordion-item:first-of-type > .accordion-header .accordion-button {
  margin-bottom: 0;
  border-radius: 15px;
  overflow: hidden;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  color: var(--title-color);
  font-size: var(--title-color);
  padding: 15px 30px 15px 15px;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button::after {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 16px;
  height: 16px;
  background-image: url(../images/chevron-down-solid.svg);
  background-size: contain;
  transition: 0.3s all ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg);
  /* transform: none; */
  background-image: url(../images/chevron-down-solid.svg);
}
.accordion-body {
  color: var(--text-color);
  font-size: 16px;
  padding: 0px 30px 15px 15px;
}
.accordion-body p {
  margin-bottom: 0;
}
.accordion-header .accordion-button:not(.collapsed)::before,
.accordion-item:hover .accordion-header .accordion-button::before {
  transform: scale(1.2) rotate(45deg);
}
/* section title */
.ANA-section-title {
  position: relative;
  align-items: center;
  margin-bottom: 30px;
}
.ANA-section-title-center {
  text-align: center;
}
.sec-title-mb {
  margin-bottom: 90px;
}
.ANA-section-title .ANA-title {
  position: relative;
  font-family: Tajawal-Medium;
  color: var(--title-color);
  font-size: var(--sec-title-size);
  margin-bottom: 0;
}
.ANA-section-title .ANA-desc {
  margin: 30px 0 0;
}
.ANA-section-title .ANA-above-title,
.ANA-section-title .ANA-below-title {
  color: var(--third-color);
  font-size: var(--text-size);
  font-family: Tajawal-Medium;
  margin-bottom: 0;
}
.ANA-section-title .ANA-title::before,
.ANA-section-title .ANA-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 2px;
  right: 0;
  bottom: -10px;
  border-radius: var(--border-radius);
  background-color: var(--third-color);
}
.ANA-section-title .ANA-title::after {
  width: 32px;
  height: 6px;
  bottom: -12px;
  background-color: var(--main-color);
}
.ANA-section-title-center .ANA-title::before,
.ANA-section-title-center .ANA-title::after {
  left: 0;
  right: 0;
  margin: auto;
}
/* icon box */
.icon-box-list,
.qr-box {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-bottom: 15px;
}
.icon-box-list .icon,
.qr-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  font-size: 20px;
  color: var(--main-color);
}
.icon-box-list .body,
.qr-box .bodey {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.icon-box-list .title,
.qr-box .icon .title {
  position: relative;
  color: var(--title-color);
  font-size: var(--title-size);
  font-family: Tajawal-Medium;
  margin-bottom: 0;
  line-height: normal;
}
.icon-box-list .desc,
.icon-box-list .desc p {
  margin-bottom: 0;
}
/* qr code box */

.qr-box .icon {
  width: 64px;
  height: 64px;
  font-size: 64px;
}
.qr-box .title {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 10px;
}
.qr-box .tools {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
.qr-box .tools li {
  color: var(--second-color);
  font-size: 22px;
  display: flex;
  line-height: 1;
}
/* list */
.list,
.tags {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}
.list li {
  position: relative;
  border-bottom: 1px solid #45474e;
  margin-bottom: 12px;
  padding-bottom: 12px;
  padding-right: 22px;
}
.list li::before {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: 0;
  top: 10px;
  border-radius: 3px;
  transform: rotateZ(45deg);
  background-color: var(--main-color);
  transition: 0.5s all ease-in-out;
}
.list li:hover::before {
  transform: scale(1.3) rotateZ(45deg);
}
.list .list-title {
  margin: 0;
}
.tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.tags li {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-size);
  color: var(--text-color);
  background-color: var(--fourth-color);
  border-radius: 50px;
  padding: 3px 35px;
  text-transform: capitalize;
}
.label-title {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 10px;
}
/* hero section */
#hero {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #1d1f23;
  overflow: hidden;
}
#hero .row {
  align-items: center;
  justify-content: center;
}
#hero .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 750px;
  border-radius: var(--border-radius);
  background-color: #0f1113;
  overflow: hidden;
}
#hero .img::before {
  position: absolute;
  left: -100%;
  content: "";
  width: 0%;
  height: 500%;
  background: rgba(255 255 255 / 23%);
  box-shadow: 0 0 135px 72px rgba(255 255 255 / 16%);
  transform: rotate(35deg);
  z-index: 1;
  transition: 1s all;
}
#hero .img:hover::before {
  animation: ANA-hero-img-shine-animation 0.5s linear;
}
#hero .img img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  border: 5px solid var(--main-color);
}
#hero .sec-hero-title {
  text-align: center;
  margin-bottom: 30px;
}
#hero .hero-title {
  font-size: 80px;
  color: var(--main-color);
  margin: 0;
  font-family: Tajawal-Medium;
}
#hero .hero-above-title,
#hero .hero-below-title {
  color: var(--title-color);
  font-size: var(--sec-title-size);
  margin: 0;
}
#hero .hero-above-title {
  font-size: var(--text-size);
  margin-bottom: -16px;
}
#hero .hero-desc {
  margin-top: 30px;
  margin-bottom: 0;
}
#hero .buttons {
  margin-top: 60px;
}
@keyframes ANA-hero-img-shine-animation {
  100% {
    left: 200%;
  }
}
/* about section */
#about {
  background-color: #26282d;
}
#about .ANA-counter .ANA-counter-num {
  font-size: 18vw;
  line-height: 1;
}
#about .icon-box-list.address {
  margin-bottom: 30px;
}
/* practices section */
#practices {
  background-color: #2b2c31;
}
/* cases section */
#cases {
  background-color: #2f3035;
}
#media {
  display: flex;
  flex: auto;
  padding: 0;
  background-color: #2d2e33;
}
/* media section */
#intro-video,
#intro-images {
  flex: 1;
}
#intro-images .row {
  margin: 0;
}
#intro-images .ANA-image {
  padding: 0px;
}
/* testimonials section */
#testimonials {
  background-color: #26282d;
}
.testimonial {
  position: relative;
}
.testimonial .text {
  position: relative;
  height: 150px;
  font-size: 16px;
  padding: 15px;
  border-radius: var(--border-radius);
  background-color: var(--fourth-color);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
}
.testimonial .text p {
  margin: 0;
}
.testimonial .info-box {
  display: flex;
  gap: 15px;
}
.testimonial .info-box .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--fourth-color);
  padding: 5px;
  border-radius: 5px;
}
.testimonial .name {
  position: relative;
  font-size: 18px;
  color: var(--title-color);
  margin-bottom: 0px;
}
.testimonial .job {
  font-size: 14px;
  color: var(--third-color);
  margin: 0;
}

/* partner section */
#partners {
  background-color: #2a2c31;
}
.partner {
  display: flex !important;
  height: 80px;
  align-items: center;
  justify-content: center;
}
/* video */
#video {
  padding: 0;
}
.lg-container.lg-show {
  direction: ltr;
}
.lg-sub-html h4 {
  color: #fff;
  font-size: 18px;
}
.lg-sub-html p {
  font-size: 16px;
  margin: 5px 0;
}
.video {
  width: 100%;
  position: relative;
}
.video .video-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}
.video-icon {
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.video-icon .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-color: var(--fourth-color);
  border-radius: 100%;
  color: var(--second-color);
  font-size: 64px;
  box-shadow: var(--box-shadow-2);
  z-index: 1;
  transition: 0.5s;
}
.video-icon:after,
.video-icon:before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background-color: var(--fourth-color);
  opacity: 0;
  animation: video-icon-animation 5s linear infinite;
}
.video-icon:after {
  animation: video-icon-animation 5s linear infinite;
  animation-delay: 2s;
}
.video:hover .video-icon {
  transform: translateY(-15px);
}
.video-icon:hover .icon,
.ANA-image .icon:hover {
  color: var(--fifth-color);
  background-color: var(--main-color);
}
.video .video-content .video-title {
  color: var(--title-color);
  font-size: 32px;
  font-family: Tajawal-Bold;
  margin-top: 60px;
}
.video .video-content .video-desc {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.5;
}
.video .video-content .video-desc p {
  margin-bottom: 0;
}
.video-display {
  width: 100%;
  height: 750px;
  filter: brightness(0.5);
  transition: 0.5s ease-in-out;
}
.video:hover .video-display {
  filter: brightness(0.7);
}
@keyframes video-icon-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
/* ana image */
.ANA-image {
  position: relative;
  height: 250px;
  transition: 0.5s all;
  overflow: hidden;
}
.ANA-image .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 15px;
  bottom: 15px;
  width: 64px;
  height: 64px;
  font-size: 26px;
  color: var(--second-color);
  background-color: rgba(30 31 35 / 50%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: 1;
  cursor: pointer;
}
.ANA-image > img {
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  transition: 0.5s;
}
.ANA-image:hover > img {
  filter: brightness(0.7);
}
.ANA-image:hover .icon {
  bottom: 30px;
}
.ANA-image:hover .img-content .info .img-desc,
.ANA-image:hover .img-content .info .img-title {
  transform: translateY(0);
}
/* ANA-social */
.ANA-social {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  list-style: none;
}
.ANA-social li {
  display: flex;
  line-height: 1;
}
.ANA-social li a {
  color: var(--second-color);
  font-size: var(--icon-size);
  transition: 0.5s all;
}
.ANA-social li a:hover {
  color: var(--main-color);
}
/* footer */
footer {
  position: relative;
  color: var(--second-color);
  padding: 60px 0 0;
  background: var(--footer_background);
}
footer .container > .row {
  align-items: center;
  justify-content: center;
}
footer .ANA-section-title .ANA-above-title {
  margin-bottom: -10px;
}
footer .ANA-section-title {
  text-align: center;
  margin-bottom: 0px;
}
footer .ANA-section-title .ANA-title {
  color: var(--main-color);
  font-size: 60px;
}
footer .ANA-section-title .ANA-title::before,
footer .ANA-section-title .ANA-title::after {
  display: none;
}
footer .address {
  margin-top: 15px;
}
/* copyright */
#copyright {
  position: relative;
  margin-top: 30px;
  padding: 10px;
  color: var(--third-color);
  font-size: var(--copyright_font_size);
  background-color: var(--copyright_background);
}
#copyright .row > *:last-of-type {
  text-align: end;
}
#copyright p {
  margin: 0;
}
#copyright a {
  color: var(--third-color);
}
#copyright a:hover {
  color: var(--main-color);
}
#totop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--second-color);
  left: 15px;
  bottom: 100px;
  cursor: pointer;
  z-index: 10;
  transition: 0.5s all ease-in-out;
}
#totop:hover {
  transform: scale(1.2) translateY(-10px);
  color: var(--main-color);
  -webkit-filter: drop-shadow(0px 10px 6px rgba(245, 150, 30, 60%));
  filter: drop-shadow(0px 10px 6px rgba(245, 150, 30, 60%));
}
#contact-widget {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  right: 15px;
  bottom: 60px;
  z-index: 16000160;
}
#contact-widget .contact-whatsapp,
#contact-widget .contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  visibility: visible;
  background-color: var(--second-color);
  box-shadow: 0px 5px 16px rgb(0 0 0/ 50%);
  font-size: 22px;
  color: var(--fourth-color);
  cursor: pointer;
  transition: 0.5s all;
}

#contact-widget .contact-whatsapp:hover,
#contact-widget .contact-phone:hover {
  color: var(--fifth-color);
  background-color: var(--main-color);
  transform: scale(1.2);
  box-shadow: 5px 2px 16px 0px rgb(204 169 103 / 45%);
}
#footer-menu {
  display: none;
}
