@import url("https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400..700&display=swap");
.anchor-underline {
  text-decoration-line: underline !important;
  text-decoration-color: #f53e4c !important;
  text-decoration-thickness: 3px;
}

@view-transition {
  navigation: auto;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

:target {
  scroll-margin-block: 5ex;
}

ul[role=list], ol[role=list], li {
  list-style: none;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  background: none;
  border: none;
}

a {
  text-decoration-line: none;
  text-decoration-color: transparent;
  transition: text-decoration-color 200ms;
}
a:hover, a:active, a:focus, a:focus-within {
  text-decoration-line: underline;
  text-decoration-color: #f53e4c;
  text-decoration-thickness: 2px;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

html {
  text-size-adjust: none;
  color: #222222;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: rgb(249.6, 243.6, 236.4);
}

h2 {
  font-size: clamp(1.5rem, 5vw + 1rem, 1.8rem);
}

p {
  font-size: clamp(1rem, 2vw + 1rem, 1.125rem);
}

article > h2 + p {
  margin-block: 0.5em 2em;
}

.site-logo {
  height: 90px;
}

.site-logo-wrapper {
  position: relative;
  background-color: #f6ece0;
  padding: 0.3em;
  height: 90px;
  width: 80px;
  object-fit: contain;
  object-position: bottom;
  border: 0 solid #f53e4c;
  border-block-end-width: 4px;
}

.site-logo-wrapper::after {
  content: "";
  position: absolute;
}

#main-container {
  flex: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: rgb(37, 211, 102);
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 3.5em;
  width: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hithere 4s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

@keyframes hithere {
  30% {
    transform: scale(1.1);
  }
  40%, 60% {
    transform: rotate(-5deg) scale(1.1);
  }
  50% {
    transform: rotate(5deg) scale(1.1);
  }
  70% {
    transform: rotate(0deg) scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
body {
  font-family: "Scheherazade New", serif;
  font-style: normal;
  font-weight: 400;
}

.content-grid {
  --padding-inline: 1rem;
  --content-width: 900px;
  --breakout-width: minmax(0, calc((1100px - var(--content-width)) / 2));
  --header-width: minmax(0, calc((1440px - 1100px) / 2));
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [header-width-start] var(--header-width) [breakout-width-start] var(--breakout-width) [content-width-start] min(100% - var(--padding-inline) * 2, 900px) [content-width-end] var(--breakout-width) [breakout-width-end] var(--header-width) [header-width-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > .footer-width {
  grid-column: footer-width;
}
.content-grid > .header-width, .content-grid .header-width > * {
  grid-column: header-width;
}
.content-grid > .breakout-width, .content-grid .breakout-width > * {
  grid-column: breakout-width;
}
.content-grid > .content-width, .content-grid > * {
  grid-column: content-width;
}
.content-grid > .full-width, .content-grid .full-width > * {
  grid-column: full-width;
}

.aside-grid {
  display: grid;
  grid-template-columns: 16em 1fr;
}

.header {
  border-block-end: 1px solid rgb(9, 39.6, 40.2);
  color: #ffffff;
  transition: top 0.3s ease-in-out;
  position: sticky;
  width: 100%;
  z-index: 9;
  top: 0;
  background: linear-gradient(to top, rgba(15, 66, 67, 0.102) 0%, rgba(15, 66, 67, 0.6) 99%);
  background-color: rgb(4.5, 19.8, 20.1);
}
.header--hide {
  top: -100%;
}
.header__container {
  display: flex;
  align-items: center;
  padding-inline: 20px;
}
.header__sidebar-close, .header__sidebar-open {
  fill: #ffffff;
  display: none;
}
.header__sidebar-open {
  margin-inline-start: auto;
}
.header__sidebar-open svg {
  width: 32px;
  height: 32px;
  stroke-width: 10px;
  fill: #f53e4c;
  stroke: #ffffff;
}

.header__navigation {
  width: 100%;
}
.header__navigation ul {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__navigation li a {
  font-size: clamp(16px, 1.125rem, 25px);
  font-weight: 600;
  padding-inline: 1.25em;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 200ms;
}
.header__navigation li:last-child {
  margin-inline-start: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transform: skew(10deg);
  min-height: 2.5rem;
  padding-inline: 0.9em 0.5em;
  background-color: #f53e4c;
  border: 0 solid rgb(159.25, 40.3, 49.4);
  border-block-width: 2px;
  border-inline-width: 2px;
  box-shadow: 2px 2px 10px rgb(246.5, 90.95, 102.85);
  transition: box-shadow 200ms, background-color 300ms;
}
.header__navigation li:last-child:hover {
  box-shadow: 2px 2px 20px rgb(246.5, 90.95, 102.85);
  background-color: rgb(122.5, 31, 38);
}
.header__navigation li:last-child::before {
  content: "";
  position: absolute;
  width: 10px;
  right: 0px;
  height: 100%;
  background-color: rgb(220.5, 55.8, 68.4);
  border: 0 solid rgb(208.25, 52.7, 64.6);
  border-inline-end-width: 2px;
}
.header__navigation li:last-child a, .header__navigation li:last-child span, .header__navigation li:last-child p, .header__navigation li:last-child svg {
  transform: skew(-10deg);
}

@media screen and (max-width: 800px) {
  .header__navigation {
    position: absolute;
    background-color: rgb(9, 39.6, 40.2);
    border: 0px solid rgb(4.5, 19.8, 20.1);
    border-inline-start-width: 1px;
    border-block-end-width: 1px;
    width: min(15em, 100%);
    max-width: none;
    height: 100vh;
    height: 100dvb;
    overflow-y: auto;
    top: 0;
    right: -100%;
    padding-block-start: 1.5em;
    transition: right 300ms, opacity 100ms 100ms;
    z-index: 10;
    opacity: 0;
  }
  .header__navigation--visible {
    right: -1em;
    opacity: 1;
  }
  .header__navigation ul {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }
  .header__navigation ul li {
    padding: 0.4em 2.5em;
  }
  .header__navigation ul li a {
    padding: 0;
  }
  .header__navigation ul li:last-child {
    align-self: center;
    margin: 1em;
    width: 80%;
  }
  .header__sidebar-close, .header__sidebar-open {
    display: block;
  }
  .header__sidebar-close svg {
    fill: #ffffff;
    width: 32px;
    height: 32px;
  }
  .header__container {
    direction: ltr;
  }
}
#footer {
  background-color: rgb(4.5, 19.8, 20.1);
  border-block-start: 1px solid rgb(9, 39.6, 40.2);
  color: #ffffff;
  width: 100%;
  z-index: 3;
}
#footer-container {
  padding: 0 1em 1.5em 0;
}
#footer-logo {
  margin-block: 1em 1.5em;
}

#footer-sitemap-container {
  display: flex;
  width: 100%;
}

.footer-sitemap-group {
  flex: 1;
}
.footer-sitemap-group h3 {
  color: #f53e4c;
  margin-block-end: 0.4em;
}
.footer-sitemap-group li {
  margin-block: 0.3em;
}

#footer-social-media-container {
  padding-block-start: 1.5em;
}
#footer-social-media-container a {
  text-decoration: none;
}
#footer-social-media-container svg {
  fill: #666666;
  width: 24px;
  height: 24px;
}
#footer-social-media-container svg:hover, #footer-social-media-container svg:active, #footer-social-media-container svg:focus, #footer-social-media-container svg:focus-within {
  fill: #f53e4c;
}

#footer-copyright-container {
  color: #666666;
  font-family: monospace;
  font-weight: bold;
}

@media screen and (max-width: 650px) {
  #footer-sitemap-container {
    flex-direction: column;
  }
  #footer-sitemap-container h3 {
    margin-block-end: 0em;
  }
  .footer-sitemap-group {
    margin-block-end: 1em;
  }
  .footer-sitemap-list {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-sitemap-list li {
    padding-inline-end: 1.5em;
  }
}
@media screen and (max-width: 1050px) {
  #footer {
    padding-block-end: 3.5em;
  }
}