/* #region CSS RESET */

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* #endregion */

/* #region Setup style */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    background: #222;
    text-align: right;

    font-family: "Inter",  "Tajawal", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}
a {
  color: #fff;
  padding: 0 1em;
  text-decoration: none;
}
.ltr {
    text-align: left;
}

.flow-row {
    display: flex;
    flex-direction: row;
}
.flow-column {
    display: flex;
    flex-direction: column;
}

.card {
    background: #444;
    width: 360px;
    min-height: 300px;
    margin: 1em;
    padding: 1em;
    border-radius: .8em;
}
.card h3 {
    padding: 1em .7em;
}
.card p {
    padding: 0.5em;
}
.card img {
    width: 100%;
}

.card-alt {
    background: #222;
    /* height: 100%; */
}
.card-full {
    height: 100%;
}
.btn {
  border: 1px solid #fff;
  padding: 1em;
  border-radius: 1em;
}
.btn-prime {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
/* #endregion */


header {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 320px;

    /* width: 1280px; */
    height: 103px;


    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;

    border: 2px solid orangered;
}

#menu {
    /* Menu */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 8px 8px 8px 16px;
gap: 120px;

width: 640px;
height: 55px;

background: #000000;
backdrop-filter: blur(35px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 16px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;


/* Menu */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 8px 8px 8px 16px;
gap: 28px;

width: 327px;
height: 55px;

background: #000000;
backdrop-filter: blur(35px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 16px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;

}

section {
    border: 2px solid orangered;
    margin-top: 10px;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: center;

    overflow: hidden;
}