@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); } }
@keyframes bounce-in-left {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  50% {
    opacity: 1;
    transform: translateX(20px); }
  100% {
    transform: translateX(0); } }
::selection {
  background-color: #cb9539;
  color: white; }

.owl-loaded .owl-stage-outer {
  overflow: hidden; }
  .owl-loaded .owl-stage-outer .owl-stage {
    display: flex; }
.owl-loaded .owl-nav.disabled {
  display: none; }
.owl-loaded .owl-dots {
  text-align: center; }
  .owl-loaded .owl-dots .owl-dot {
    border: 1px solid rgba(245, 235, 219, 0.1);
    background-color: rgba(245, 235, 219, 0.1);
    margin: 0 2px;
    height: 6px;
    width: 20px;
    border-radius: 2px;
    transition-duration: .25s; }
    .owl-loaded .owl-dots .owl-dot.active {
      background-color: #f5ebdb; }
    .owl-loaded .owl-dots .owl-dot span {
      display: none; }

.breadcrumb {
  --bs-breadcrumb-divider-color: #cbdbff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0; }
  html[dir=rtl] .breadcrumb li.breadcrumb-item + .breadcrumb-item {
    padding-right: var(--bs-breadcrumb-item-padding-x);
    padding-left: 0; }
    html[dir=rtl] .breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
      float: right;
      padding-right: 0;
      padding-left: var(--bs-breadcrumb-item-padding-x); }
  .breadcrumb a {
    color: #cbdbff; }

.lg-outer {
  direction: ltr; }

html[dir=rtl] .form-floating > label {
  left: auto;
  right: 0;
  transform-origin: right; }
html[dir=rtl] .form-floating > .form-control-plaintext ~ label,
html[dir=rtl] .form-floating > .form-control:focus ~ label,
html[dir=rtl] .form-floating > .form-control:not(:placeholder-shown) ~ label,
html[dir=rtl] .form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-1rem) translateX(0.15rem); }

html[dir=rtl] body, html[dir=rtl] body :not(:is([class*=fa-])) {
  font-family: 'Noto Sans Arabic', sans-serif; }

html[dir=ltr] body, html[dir=ltr] body :not(:is([class*=fa-])) {
  font-family: 'Rubik', sans-serif; }

html {
  scroll-padding-top: 90px; }
  html body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden; }

.has-underline {
  position: relative; }
  .has-underline::after {
    content: '';
    background-color: #cb9539;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 150px;
    height: 3px;
    border-radius: 3px; }
  html[dir=ltr] .has-underline.has-underline-follow-dir::after {
    left: 0;
    transform: translateX(0); }
  html[dir=rtl] .has-underline.has-underline-follow-dir::after {
    right: 0;
    transform: translateX(0); }

.loading-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition-duration: 0.35s;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10; }
  .loading-layer.done {
    transform: scale(2);
    opacity: 0;
    visibility: hidden; }

header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 5px -3px silver; }
  header .container .row {
    justify-content: center;
    gap: 5px;
    align-items: center; }
    header .container .row > div {
      padding: 0; }
    header .container .row .justify-content-start + .upper-aside-toggler {
      display: none; }
    header .container .row .upper-aside-toggler {
      background-color: #fbf6ef;
      border: 1px solid #e6cb9e;
      width: 35px;
      height: 35px;
      border-radius: 3px; }
    @media (max-width: 424px) {
      header .container .row {
        justify-content: space-between; }
        header .container .row > div:nth-child(1) {
          display: none; }
        header .container .row > div:nth-child(2) {
          padding: 0 12px;
          order: 1; }
        header .container .row > div:nth-child(3) {
          padding: 0 12px;
          order: 2;
          width: auto;
          flex: 0 0 auto; }
          header .container .row > div:nth-child(3) .justify-content-start {
            display: none; }
          header .container .row > div:nth-child(3) .upper-aside-toggler {
            display: block; }
        header .container .row .container ul {
          display: none; } }
    header .container .row ul {
      padding: 0;
      margin: 0;
      list-style-type: none;
      display: flex;
      gap: 10px; }
      header .container .row ul a {
        text-decoration: none;
        color: #201708;
        font-size: 14px;
        display: block; }
    header .container .row .nav-logo {
      display: block;
      margin: 0 0 5px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: -ms-fit-content;
      width: -o-fit-content;
      width: fit-content; }
      header .container .row .nav-logo img {
        display: block;
        height: 44px; }
  header .upper-aside {
    position: absolute;
    top: -151px;
    width: 100%;
    background-color: #fff8ee;
    list-style-type: none;
    margin: 0;
    padding: 20px 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    transition-duration: .25s; }
    header .upper-aside.active {
      top: 0; }
  .backward-layer {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.75);
    transition-duration: .25s;
    visibility: hidden;
    opacity: 0; }
    .backward-layer.active {
      visibility: visible;
      opacity: 1; }
  header .edge-tool {
    position: fixed;
    left: 10px;
    top: 100px;
    width: 45px;
    height: 45px;
    font-size: 21px;
    padding: 8px;
    text-align: center;
    background-color: #3673cb;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px -1px rgba(51, 51, 51, 0.5);
    cursor: pointer;
    user-select: none;
    animation: bounce-in-left 1s ease forwards; }
    header .edge-tool.edge-tools-languages ul.languages {
      padding: 5px 0;
      margin: 0;
      list-style: none;
      position: absolute;
      width: 125px;
      left: 65px;
      top: 3px;
      background-color: #fbf6ef;
      border: 1px solid #ebd6b2;
      box-shadow: 0 3px 4px -2px rgba(51, 51, 51, 0.5);
      color: #000;
      transition-duration: .25s;
      display: none;
      user-select: none; }
      header .edge-tool.edge-tools-languages ul.languages.active {
        display: block; }
      header .edge-tool.edge-tools-languages ul.languages::before {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        left: -8px;
        top: 12px;
        transform: rotate(45deg);
        background-color: #fbf6ef;
        border: 1px solid #ebd6b2;
        border-top: 0 none;
        border-right: 0 none;
        transition-duration: .25s; }
      header .edge-tool.edge-tools-languages ul.languages li {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 8px;
        font-size: 12px;
        align-items: center;
        padding: 8px 10px;
        transition-duration: .25s;
        position: relative;
        z-index: 0; }
        header .edge-tool.edge-tools-languages ul.languages li:hover {
          background-color: #eedcbe; }
        header .edge-tool.edge-tools-languages ul.languages li img {
          display: block;
          width: 36px; }

footer {
  background-color: #201708;
  box-shadow: 0 -2px 5px 0 #201708;
  color: #fff;
  padding: 15px 0; }
  footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
    footer ul li a {
      display: block; }
  footer a {
    color: #cb9539; }
    footer a img {
      display: block;
      width: 100%;
      max-width: 150px;
      margin: 0 auto; }
  footer .footer-gallery-thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px; }
    footer .footer-gallery-thumbs img {
      height: 60px;
      padding: 3px;
      background-color: #f5ebdb;
      border-radius: 4px; }
  footer .footer-card {
    display: flex;
    gap: 15px;
    padding: 5px 10px; }
    footer .footer-card .footer-card-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      flex-basis: 48px;
      height: 48px;
      border: 1px solid gold;
      border-radius: 50%;
      background-color: transparent;
      transition-duration: .25s; }
    footer .footer-card .footer-card-text {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      flex-grow: 1; }
    footer .footer-card:hover .footer-card-icon {
      background-color: gold;
      color: #201708; }

main {
  min-height: calc(100vh - 475px); }
  main .parallax {
    position: relative;
    height: 250px; }
    main .parallax img {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
      object-fit: cover; }
    main .parallax .parallax-title {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      background-color: rgba(0, 0, 0, 0.55); }
  main .section {
    --section-width: 250px;
    position: relative;
    display: block;
    text-decoration: none;
    color: #201708;
    max-width: var(--section-width);
    margin: 0 auto 15px; }
    main .section img {
      display: block;
      max-width: 100%;
      height: calc(var(--section-width) - 75px);
      margin: 0 auto 15px;
      object-fit: cover; }
    main .section .section-title {
      position: absolute;
      bottom: 0;
      width: 100%;
      background-color: rgba(245, 235, 219, 0.9);
      padding: 6px; }
  main.home section.slides {
    position: relative; }
    main.home section.slides .owl-dots {
      display: none; }
    main.home section.slides img {
      height: 575px;
      object-fit: cover; }
    main.home section.slides .slide-title {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 25px; }
  main.home blockquote {
    margin: 0;
    padding: 50px 0;
    background-color: gold; }
    main.home blockquote a {
      display: block;
      text-align: center;
      padding: 12px;
      font-size: 24px;
      text-decoration: none;
      color: #f5ebdc;
      background-color: #3673cb;
      box-shadow: 0 3px 4px -1px #3673cb;
      border-radius: 3px;
      max-width: 225px;
      margin: 0 auto; }
    main.home blockquote p {
      margin: 0;
      font-size: 24px;
      text-align: center; }
  main.contact-us .box {
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.18);
    background-color: #fbf6ef;
    display: flex;
    overflow: hidden;
    gap: 15px;
    margin-bottom: 15px; }
    main.contact-us .box .box-icon {
      --bg-color: #5f8fd5;
      width: 50px;
      height: 50px;
      display: flex;
      position: relative;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      border-radius: 50%;
      color: white;
      border: 2px solid var(--bg-color);
      background-color: var(--bg-color);
      font-size: 22px; }
      main.contact-us .box .box-icon::before {
        content: '';
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: var(--bg-color);
        transform: scale(1);
        transition-duration: .5s;
        position: absolute;
        z-index: 0; }
      main.contact-us .box .box-icon i {
        position: relative;
        z-index: 1; }
    main.contact-us .box .box-details {
      position: relative;
      z-index: 1;
      flex-grow: 1; }
      main.contact-us .box .box-details, main.contact-us .box .box-details a {
        transition-duration: .5s; }
      main.contact-us .box .box-details .instant-messaging-links {
        list-style-type: none;
        margin: 10px 0 0;
        padding: 0;
        display: flex;
        gap: 5px; }
        main.contact-us .box .box-details .instant-messaging-links a {
          width: 30px;
          height: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
          text-decoration: none;
          font-size: 16px;
          border: 1px solid #0483f9;
          border-radius: 50%; }
    main.contact-us .box:hover .box-icon::before {
      content: '';
      transform: scale(25); }
    main.contact-us .box:hover .box-details {
      color: #fff; }
      main.contact-us .box:hover .box-details .instant-messaging-links a {
        color: #fff;
        border: 1px solid #e0c08a; }
      main.contact-us .box:hover .box-details a {
        color: #e0c08a; }
  main.about-us .images {
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: auto;
    padding: 15px 10px 10px;
    gap: 15px;
    margin-bottom: 25px; }
    main.about-us .images img {
      height: 100px;
      box-shadow: 0 0 8px 2px silver; }
  main.gallery .list-group {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.14); }
    main.gallery .list-group .list-group-item {
      background-color: #fcf8f3; }
  main.sections .section-image {
    display: block;
    max-width: 100%;
    max-height: 450px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); }
  main.sections .section-images {
    display: flex;
    overflow: auto;
    gap: 10px;
    padding: 8px 5px; }
    main.sections .section-images img {
      height: 60px;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25); }

/*# sourceMappingURL=main.css.map */
