  @import url("https://use.typekit.net/kef2cpp.css");

  * {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: effra-cc, sans-serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-family: effra-cc ,sans-serif;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  /* background: var(--color-background); */
  /* background: linear-gradient(-180deg, rgba(254,187,163,1) 22%, rgba(199,209,222,1) 27%, rgba(207,237,235,1) 31%, rgba(254,187,163,1) 71%, rgba(199,209,222,1) 80%, rgba(207,237,235,1) 93%); */
  /* background: linear-gradient(270deg, #febba3, #c7d1de, #cfedeb, #febba3); */
  /* background: linear-gradient(-180deg, rgba(254,187,163,1) 22%, rgba(199,209,222,1) 27%, rgba(207,237,235,1) 31%, rgba(254,187,163,1) 45%, rgba(199,209,222,1) 49%, rgba(207,237,235,1) 52%, rgba(254,187,163,1) 100%); */

}


img {
  width: 100%;
}

body {
  padding: var(--padding);
   max-width: 100%;
  margin: 0 auto;
  background-color: #c7d1de;
  background: linear-gradient(-90deg, #febba3, #c7d1de, #edcfcf);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
	height: 100vh;
  overflow-x: hidden;
  /* overflow-y: hidden; */
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
  display: flex;
  flex-wrap: wrap;
    column-gap: 1rem;
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: var(--padding);
  padding-left: var(--padding);
  font-size: 1.5rem;
  align-items: center;
  flex-wrap: inherit;
}

.underline{
  font-size: 1.2rem;
  line-height: 1.2;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 3px 40px #ffffff;
  background-color: #ffffff;
  color: #343434;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* .fixed-header{
  position: fixed;
  top: 0;
  align-content: center;
  background-color: #ffffff;
  z-index: 99;
  margin: 1.5rem;
  width: 70%;
  color: #343434;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
} */

.fixed-header{
  position: fixed;
    top: 0;
    align-content: center;
    background-color: #ffffff;
    z-index: 99;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    margin-right: calc(22% + 2.8rem);
    /* width: 68%; */
    color: #343434;
    border-radius: 2rem;
    box-shadow: inset 0px 0px 7px #636363;
}

.ltr .fixed-header{
  margin-right: 2rem !important;
  margin-left: calc(22% + 2.8rem) !important;
}


.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: effra-cc ,sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: capitalize;
  /* color: #000000; */
  font-size: 1.2rem;
}

.menu {
  display: flex;
}
.menu a {
  padding: 0.5rem;
  padding-right: 0;
  display: block;
}
.menu a[aria-current] {
  text-decoration: none;
}

.social {
  display: none;
  padding: 0;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin-right: calc(22% + 2rem) !important;
  margin-left: 0 !important;
}

.ltr .grid{
  margin-left: calc(22% + 2rem) !important;
  margin-right: 0 !important;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 4rem !important;
  line-height: 4rem;
  margin-bottom: 0rem;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 400;
  font-size: 2rem;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  /* background: #000; */
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: .5rem;
}

/* .footer {
  /* padding: 9rem 0 6rem; */
    /* padding: 9rem 0 6rem; */
    /* line-height: 1.5em; */
    /* background-color: #fff; */
    /* border-radius: 2rem;
    padding: 2rem; */
    /* background-color: #ffffff; */
    /* z-index: 99; */
    /* margin-top: 5rem; */
        /* color: #343434; */
    /* border-radius: 2rem; */
    /* box-shadow: inset 0px 0px 7px #636363; */
    /* margin-bottom: 0; */
    /* background: #ffffff30; */
    /* padding: 2rem; */
    /* border-radius: 2rem; */
    /* box-shadow: 0 3px 40px #ffffff;
/* } */
/* } */ 
/* .footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
} */

.footer h2 {
  font-weight: 600;
  /* margin-bottom: .75rem; */
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
}

.footer{
  display: none !important;
  overflow: hidden;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
  margin-top: -5rem;  
}
.margin-xxl {
  margin-bottom: 6rem;
}

.about{
  margin-top: 5rem;
}


@media screen and (min-width: 60rem) {
  body {
    --padding: 2rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: 1rem;
  text-align: center;
  border: 0px solid currentColor;
  margin-right: 0rem;
  font-family: system-ui !important;
  background-color: white;
  box-shadow: inset 0px 0px 7px #636363;
  border-radius: 2rem;
  font-size: 1rem !important;
}

.pagination > a:hover {
  background: #ffffff30;
  box-shadow: 0 3px 40px #ffffff;
}

.pagination-top{
padding: 0 !important;
/* padding-bottom: 3rem !important; */
margin: 0 !important;
width: calc(100% - 2.8rem);
position: fixed;
}

.project-pagination{
  width: 100%
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}


/* .projects{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  list-style: none;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  width: 75%;
  height: fit-content;
} */

.projects{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  list-style: none;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  width: 75%;
  height: fit-content;
  margin-right: calc(22% + 2rem);
  margin-top: 4rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
  padding-left: 0;
  /* margin-left: 2rem; */
}


.ltr .projects{
  margin-right: 2rem !important;
  margin-left: calc(22% + 2rem) !important;
  padding-left: 2rem !important;
  padding-left: 0 !important;
}

.projects li{
  margin-bottom: 0;
  background: #ffffff30;
  padding: 1rem;
  border-radius: 2rem;
  /* box-shadow: inset 0 3px 40px #ffffff; */
}

/* .projects li{
  margin-bottom: 0;
  padding: 2rem;
  border-radius: 2rem;
  opacity: 100%;
  background-color: #ffffff;
  color: #343434;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
} */

.projects img{
    width: 100%;
    border-radius: 1rem;
    background-color: none !important;
}

.projects li:hover{
  opacity: 100%;
  box-shadow: 0 3px 40px #ffffff;
  background-color: #ffffff;
  color: #343434;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
}


body.rtl {
    direction: rtl;
  }


div {
    top: 0;
    left: 0;
    right: 0;
  }
  
  /* right to left */
  body.rtl div {
    top: 0;
    right: 0;
  }
  
  .pagination{
    display: flex;
    justify-content: space-between;
    padding-top: 0.5rem;
    font-family: system-ui !important;
    font-size: 1rem !important;
    align-items: flex-start;
    margin-right: calc(25% - 2.8rem);
    color: #343434;
    padding: 2rem 2rem 2rem 0rem;
    }

  .ltr .pagination{
    margin-left: calc(25% - 2.8rem);
    margin-right: 0%;
    padding: 2rem 0rem 2rem 2rem;
  }


  .pagination span{
    color: #999;
    background-color: #ffffff;
    /* margin: 1rem; */
    /* color: #343434; */
    border-radius: 2rem;
    box-shadow: inset 0px 0px 7px #636363;
  }


  /* .filter{
    transition: 0.6s all;
    width: 25%;
    padding-left: 2rem;
  } */

  .filter{
    transition: 0.6s all;
    width: 22%;
    padding-left: 2rem;
    top: 0%;
    /* margin-top: -2rem; */
    /* padding-top: 1.5rem; */
    padding-right: 2rem;
    position: fixed;
    height: 100vh;
    overflow: auto;
    margin-right: -2rem;
    /* padding-bottom: 2rem; */
    display: block;
    /* --padding: 0 !important; */
    /* margin-top: -2rem !important; */
    /* padding-bottom: 1.5rem; */
    /* background: white; */
    /* margin-bottom: 1rem; */
  }
  
  .filter::-webkit-scrollbar {
    z-index: 99999 !important;
    -webkit-appearance: none;
}

  /* :root .filter {
padding: 0 !important;
} */


  /* .inner{
    overflow: auto;
  } */

  .ltr .filter{
    padding-left: 0rem;
    padding-right: 2rem;
  }


input[type="checkbox" i]{
  accent-color: #000!important;
  appearance: none;
  align-items: center;

}

form{
  display: flow-root !important;
  flex-direction: row;
}



.filter-labels{
  font-size: 1.1rem;
  font-weight: 400;
  background-color: none;
  color: rgb(29, 29, 29);
  box-shadow: inset 0 0 0.5em 0 rgb(0 0 0 / 30%);
  border-radius: 40px;
  border-width: 2px;
  padding-top: 0.4rem;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 0.4rem;
  /* margin: 0.2rem; */
  /* margin-bottom: 0.8rem; */
  line-height: 1rem;
  width: fit-content;
  display: inline-block;
  color: #343434;
}



.rtl .filter-labels{
    margin-left: 0.5rem;
    margin-right: 0;
}

.ltr .filter-labels {
  margin-right: 0.5rem;
  margin-left: 0;
}

.ltr{
  font-family: effra-cc ,sans-serif;
  font-weight: 400 !important;
  font-style: normal;
}

.rtl{
  font-family: effra-cc-arabic ,sans-serif;
  font-style: normal;
}

:checked + .filter-labels {
  background-color: #343434 !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0.5em 0 rgb(188 237 197);
}


.filter-labels:hover {
  box-shadow: inset 0 0 0.5em 0 #343434;
  cursor: pointer;
  background-color: #ffffff !important;
  color: #343434 !important;

}

figure:hover{
  opacity: 0.8;
  transition: .5s ease;
}

.projects figure{
  padding: 0rem;
  background-color: none;
  height: 100%;
}



.span-tags{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: end;
  width: 100%;
}

.label{
  margin: 0 !important;
  padding: 0 !important;
  align-items: center!important;
  line-height: 0 !important;
}

a.filter-labels{
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  top: 0;
}


.student-name{
  font-size: 1.3rem;
  font-family: effra-cc-arabic ,sans-serif;
  font-weight: 900;
  text-transform: capitalize;
}

.project-title{
  font-size: 1.1rem;
  font-weight: 400 !important;
  line-height: 1;
  margin-top: 0.5rem;
  text-transform: capitalize;
  /* font-style: italic; */
}

dd{
  color: rgb(108, 108, 108);
  display: contents;
  line-height: 1;
}

li.active{
  display: none;
}

.project-text{
  margin-top: 2rem;
  font-weight: 400;
  /* font-size: 2rem;
  line-height: 1.1; */
  width: 100%;
  /* background-color: white;
  padding: 2rem;
  border-radius: 2rem; */
}

/* .main{
  margin-top: 5rem;
} */

.flexwidth{
  display: flex;
}

.text{
  max-width: 70rem;
}



.project figure{
  transition: 0.6s all;

}

.active{
  transition: 0.6s all;
}

a{
  cursor: pointer;
}

.next{
  width: fit-content;
  margin-right: 0 !important;
  /* font-family: 'skolar sans arabic'; */
  /* font-size: 1.4rem !important; */
  font-weight: 400 !important;
  /* color: #999; */
  /* background-color: #ffffff; */
  margin: 1rem;
  color: #343434;
  border-radius: 2rem;
  /* box-shadow: inset 0px 0px 7px #636363; */
  box-shadow: 0 3px 40px #ffffff;
  background-color: #ffffff;
  color: #343434;
  box-shadow: inset 0px 0px 7px #636363;
}

.next:hover{
  color: #fff;
}

.search{
  margin-top: 3rem !important;
}

.search-input{
  height: 4rem;
  /* margin-left: 0.1rem; */
  /* margin-bottom: 2rem; */
  /* appearance: none; */
  border: none;
  border-radius: 0rem 2rem 2rem 0rem;
  background-color: #ffffff;
  color: #343434;
  /* border-radius: 2rem; */
  box-shadow: inset 0px 0px 7px #636363;
}

.ltr .search-input{
  border-radius: 2rem 0rem 0rem 2rem;
}


.search-input-button{
  background-color: #0d0d0d;
  color: #ffffff;
  border-radius: 2rem 0rem 0rem 2rem;
  /* width: 100%; */
  font-family: effra-cc-arabic ,sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
}

.search-input-button:hover{
  cursor: pointer;
  filter: invert(1);
}

.search-input-search::after{
  background-color: #ffffff;
  color: #0d0d0d;
}


.ltr .search-input-button{
  border-radius: 0rem 2rem 2rem 0rem;
}

@media only screen and (min-width: 1500px) {
  .projects {
    grid-template-columns: repeat(4,1fr);
  }
  .h1{
    font-size: 4rem;
  }

  }
  
  @media only screen and (max-width: 1320px) {
    .projects {
      grid-template-columns: repeat(2,1fr);
    }
    .h1{
      font-size: 4rem;
    }  
    .project-layout{
      grid-template-columns: 1fr 1fr !important;
    }
    }

    @media only screen and (max-width: 900px) {
      .projects {
        grid-template-columns: repeat(2,1fr);
        padding-right: 0 !important;
        padding-left: 0 !important;
      }

      .ltr .projects{
        padding-right: 0 !important;
        padding-left: 0 !important;
      }

      .h1{
        font-size: 4rem;
      }  
  
      .flexwidth{
        display: block;
      }
  
      .fixed-header-main{
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
      }
      
      .ltr .fixed-header-main{
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
      }

      .projectfilter{
        grid-template-columns: 1fr !important;
      }

      .project-layout{
        padding: 0.4rem !important;
      }

      .projectxt{
        margin-top: 0 !important;
        width: 70% !important;
      }
      
      .project-div{
        margin-top: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .ltr .project-div{
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .filter{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1rem;
        width: 100%;
        position: relative;
        margin-top: 2rem;
        height: auto;
        padding-top: 0 !important;
        overflow: visible;
        justify-items: stretch;
        padding-right: 2rem !important;
      }
  
      .projects{
        width: 100%;
        margin-top: 1rem;
        margin-right: 0;
        height: auto;
        overflow: initial; 
      }

      .languages{
        font-size: 1rem;
      }


      .ltr .projects{
        width: 100%;
        margin-top: 1rem;
        margin-right: 0;
        height: auto;
        overflow: initial; 
        margin-right: 0 !important;
        margin-left: 0 !important;   
      }

      /* .main{
      margin-top: 6rem;
      } */

      .pagination{
        margin: 0%; 
        width: 100%; 
        padding: 0;
        margin-top: 2rem;
        padding-bottom: 0.5rem !important;
      }

      .pagination-top{
        position: fixed;
        z-index: 9999;
        bottom: 0;
        /* right: 0; */
        left: 0;
        /* align-items: center; */
        /* justify-content: space-between; */
        /* text-align: center; */
        align-content: center;
        width: 98%;
        /* margin: 2rem !important; */
        /* padding: 2rem !important; */
        padding: 0;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        }
      /* .fixed-header{
        margin-right: 0;
        margin: 1.5rem;
        width: 100%;
      }

      .ltr .fixed-header{
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin: 1.5rem !important;
        width: 100%;
      } */

      .next{
        font-size: 1rem !important;
      }

      .project-layout{
        height: fit-content !important;
        overflow: visible !important;
        position: relative;
        grid-template-columns: 1fr !important;
      }

      .allprojects{
        display: none;
      }

      .fixed-header{
        margin-right: 1.5rem;
        margin-left: 1.5rem;
      }

      .ltr .fixed-header{
        margin-left: 1.5rem !important;
      }

      .about{
        grid-template-columns: 1fr !important;
        grid-column-gap: 0rem !important;
      }
    
      }
  
    
  

@media only screen and (max-width: 650px) {
  .projects {
    grid-template-columns: repeat(1, 1fr);
  }

  .filter{
    display: inline-block;
    width: 100%;
  }

  .project-layout{
    grid-template-columns: 1fr !important;
  }

  .h1{
    font-size: 2rem !important;
    margin-bottom: 0 !important;
    line-height: 1;
  }

  .projectitlepage{
    font-size: 2rem !important;
    margin-top: 0 !important;
  }

  .logo{
    font-size: 1rem;
  }

  .projects{
    margin-top: 1rem;
  }

  .projectxt{
    width: 100% !important;
  }

  
}

.fullwidth{
  width: 100%;
  display: block;
}

.h1{
  font-family: effra-cc-arabic ,sans-serif;
  font-weight: 900;
  text-transform: capitalize;
}


.fiilters {
  width: 100%;
  /* box-shadow: 0 0 0.5em 0 rgb(0 0 0 / 30%); */
  padding: 1.5em;
  background: #ffffff;
  border-radius: 2rem;
  position: relative;
  margin-top: 0.5rem;
}

.fiilters__list li {
  display: flex;
  align-items: center;
  user-select: none;
  padding-bottom: 1em;
  line-height: 0;
}

.fiilters__list li:last-child {
  padding-bottom: 0;
}

input[type="checkbox"] {
  margin-right: 0.5em;
}

.fiilters:not(.fiilters--active) {
  display: none;
}

.fiilters:checked(.fiilters--active) {
  display: contents;
}

.button {
  padding: 0.3em 0.3em;
  border: 0;
  outline: 0;
  border-radius: 20rem;
  text-align: center;
  min-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #000000;
  cursor: pointer;
  height: auto;
  /* margin-bottom: 0.5rem; */
  font-size: 2rem;
  box-shadow: inset 0 3px 40px #ffffff
}

.buttonnotactive{
  /* background: rgb(0 0 0); */
  padding: 0.5em 0.5em;
  border: 0;
  outline: 0;
  /* border-width: 1rem; */
  /* border-color: white; */
  border-radius: 2rem;
  text-align: center;
  /* min-width: 100%; */
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #000000;
  height: auto;
  /* margin-bottom: 0.5rem; */
  /* margin-top: 0.5rem; */
  font-size: 1.1rem;
  /* box-shadow: 0 3px 40px #ffffff;
  background-color: #ffffff; */
  color: #343434;
  border-radius: 2rem;
  /* box-shadow: inset 0px 0px 7px #636363; */
}

.button::after {
  font-family: sans-serif;
  /* content: "▼"; */
  padding-left: 0.5em;
}

.button:checked(.fiilters--active){
  box-shadow: inset 0 3px 40px #BCEDC5;
}

.button:hover{
  box-shadow: 0 3px 40px #ffffff;
  background-color: #ffffff;
  color: #343434;
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
}

.button::active {
  box-shadow: inset 0 3px 40px #BCEDC5;
}

.button--highlight::after {
  content: "✓";
  display: contents !important;
}

.reset::after{
  content: "";

}

/* .filter-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.2rem;
  margin-bottom: 2rem;
} */



@media only screen and (max-width: 1320px) {
  .filter-wrap{
    grid-template-columns: auto;

  }
  }



  @media only screen and (max-width: 700px) {
    .filter-wrap{
      grid-template-columns: auto;

  
    }
    }
  
    .filters-checkboxes{
      margin-top: 2rem;
    }

    .almarkaz-logo{
      width: 9rem;
      margin-top: 2rem;
    }

    .reset {
      box-shadow: 0 3px 40px #ffffff;
      background-color: #ffffff;
      color: #343434;
      border-radius: 2rem;
      box-shadow: inset 0px 0px 7px #636363;
      }

  .projectfilter{
    width: 100% !important;
  }

  .projectbutton{
    color: #9a9a9a;
  }

  .projectxt{
    margin-top: 3rem;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.2;
    width: 100%;
    text-align: justify;
    }

  .projectitlepage{
    font-size: 4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    }

  .project-gallery img{
    border-radius: 2rem;
    box-shadow: 0 3px 40px #ffffff;
  }    

.search-input-search{
  width: 70%;
  font-family: effra-cc-arabic ,sans-serif;
  font-size: 1.3rem;
  padding-right: 2rem;
  padding-left: 0rem;
  overflow: hidden;
}

.ltr .search-input-search{
  padding-left: 2rem !important;
  padding-right: 0rem !important;

}

.search-input #img{
  padding: 0.5rem;
  width: 30px !important;
  height: auto;
}

.search-input-button{
  width: 30px;
  padding-right: calc(15% - 15px);
  padding-left: calc(15% - 15px) !important;
  border: none !important;
}

:focus-visible{
  border: none !important;
  outline: -webkit-focus-ring-color auto 0px;
}

input[type="search" i] {
  appearance: none;
}

.search-input-search::active{
  border: none !important;
}

.search-input-search::after{
  border: none !important;
}

.search-input-search::checked{
  border: none !important;
}

/* .filter-tags{
  width: 100%;
  display: inline-flex;
  margin-top: 0.5rem;
} */

.filter-tags{
  width: 100%;
  display: inline-flex;
  margin-bottom: 0.5rem;
  /* margin-top: 0.5rem; */
  position: inherit;
  height: initial;
  overflow: hidden;
  /* margin-right: 0 !important; */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  height: 1.5rem;
}


.projectfilter{
  position: inherit;
  height: initial;
  overflow: initial;
  margin-top: 0 !important;
}

.dd{
  font-size: 0.8rem;
  margin-right: 3px;
}

.pagebutton{
  display: block;
  margin-top: 1rem;
  font-weight: 900;
  /* font-size: 2rem; */
  background: #ffffff;
  /* box-shadow: none; */
  color: black;
  padding: 0;
  /* width: fit-content; */
  /* padding: 1rem; */
}


.mail{
  width: 2rem;
  color: #9a9a9a;
  padding: 0.5rem;
}

.mail-div{
display: inline-flex;
align-items: center;
font-size: 1.1rem;
}

/* .projectbutton:hover{
  color: #000;
} */

.projectbutton a:hover{
  color: #000;
}

::-webkit-scrollbar-track {
  background: none !important;
  z-index: 9999!important;
}

.project-div{
  margin-top: 2rem;
  margin-right: 2rem;
  margin-left: 0;
}

.rtl .project-div{
  margin-right: 0 !important;
  margin-left: 2rem ;
}

.allprojects{
  top: 0;
  align-content: center;
  background-color: #ffffff;
  z-index: 99;
  margin-bottom: 1.5rem;
  color: #343434;
  /* padding: 1rem; */
  border-radius: 2rem;
  box-shadow: inset 0px 0px 7px #636363;
  position: fixed;
  width: 20%;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  margin-left: 0;
  background: linear-gradient(-90deg, #febba3, #c7d1de, #edcfcf);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    cursor: pointer;
    padding: 0.8rem;
    /* line-height: 1 !important; */
    flex-wrap: inherit;
    text-align: center;
}

.allprojects:hover{
  box-shadow: inset 0px 0px 7px #ffffff;
  color: white;

}

.ltr .allprojects{
  margin-right: 0 !important;
  margin-left: 1.5rem !important;
}

.open-filter{
  width: 22%;
}

.filter-block-wrap{
  display: block;
}

.about{
  display: grid;
  list-style: none;
  grid-row-gap: 1rem;
  height: fit-content;
  margin-right: calc(22% + 2rem);
  margin-top: 3rem;
  grid-template-columns: 1fr 1fr;
  padding: 2rem;
  width: auto;
  grid-column-gap: 2rem;  
}

.ltr .about{
  margin-right: 0 !important;
  margin-left: calc(22% + 2rem) !important;
}

p{
  margin-bottom: 0.5rem;
}

.contact{
  margin-right: 0 !important;
}

.h3{
  font-size: 1.1rem !important;
}