@import url(//fonts.googleapis.com/earlyaccess/notonaskharabicui.css);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Naskh Arabic UI', serif;
  background: #202020;
  overflow-x: hidden !important;
 text-align: right;
}
body::-webkit-scrollbar {
  display: none;}
a {
  text-decoration: none;
}
.sl{
  overflow: hidden !important;
}
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ul,
  li,
  p,
  a,
  button {
    color: whitesmoke;
  }
  
  h2 {
    font-family: 'Noto Naskh Arabic UI', serif;
    font-weight: 300;
  }
  


/*header*/
.c-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
  }
  
  .c-header__title {
    text-transform: uppercase;
    font-size: 1.5em;
    margin: 0 3rem;
    text-align: center;
  }
  
  .c-navigation {
    flex-basis: 70%;
  }
  
  .c-navigation__list {
    padding: 0;
    text-align: center;
  }
  
  
.c-navigation__list-item { 
  display: inline-block;
  margin: 0 2rem;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 700;
}
.c-navigation__list-item:hover{
  opacity: 100%;
}
  
  
  .c-navigation__list-item:after {
    content: "";
    width: 2px;
    height: 100%;
    background: white;
    position: absolute;
    display: inline-block;
    right: -2rem;
  }
  
  .c-navigation__list-item:last-of-type:after {
    background: transparent;
  }
  
  .c-navigation__list-item--active {
    opacity: 1;
  }
  .c-navigation__list-item--active > a {
    position: relative;
  }
  .c-navigation__list-item--active > a:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ff4c42;
    position: absolute;
    bottom: -0.4rem;
    left: 0;
  }
  
  .c-cta {
    display: flex;
    align-items: center;
  }
  .c-cta > a {
    font-size: 0.9em;
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 2rem;
  }
  
  .c-cta__button {
    border: 0;
    background-color: transparent;
    display: inline-block;
  }
  
  .c-cta__button__search {
    width: 15px;
    height: 15px;
    margin-right: 3rem;
  }
  .c-cta__button__search svg {
    width: inherit;
    height: inherit;
    fill: white;
  }
  .menu{
    display:none;
  }
  
  .menu-toggle{
  display: none;
  }
  .imgback{
display: block;
position: absolute;
top:0;
opacity: 25%;
width: 100%;
height: fit-content;
z-index:-1;
  }
.imgback1{
    display: none;
  }
/*cards*/
.cards-title{
display: flex;
justify-content: center;
margin-top: 10rem;
}
.page{
display: flex;
justify-content: center;
}
  .main-container{
    width: 960px;
    margin: 3rem 20px;
    display:grid;
    grid-template-columns: 300px 300px 300px;
    grid-template-rows:300px 300px 300px ;
    place-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 50px;
  }
  .card-container {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 5px;
  }
  
  .card-container::before {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
    
  }
  
  .card {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
  }

  .card .img-content {
    width: 100%;
    height: 100%;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.6s, rotate 0.6s, filter 1s;
  }
  
  .card .img-content svg {
    width: 50px;
    height: 50px;
    fill: #212121;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    color: #e8e8e8;
    padding: 20px;
    line-height: 1.5;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card .content .heading {
    font-size: 32px;
    font-weight: 700;
  }
  
  .card:hover .content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card:hover .img-content {
    scale: 2.5;
    rotate: 30deg;
    filter: blur(7px);
  }
  
  .card:hover .img-content svg {
    fill: transparent;
  }
  .cardsn{
    display: flex;
    justify-content: center;
    color: white;
  }


  /*loader*/
  .loader-con{
    overflow: hidden !important;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left:0;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .loader{
    width:100px;
    height: 100px;
    background-image: url('logol.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: colorchange cubic-bezier(0.39, 0, 1, 1) 1s infinite alternate;
  }
  @keyframes colorchange{
    100%{
   filter: grayscale(0%);
    }
  }
  #loader-1:before, #loader-1:after{
    content: "";
    position: absolute;
    top: -4.5px;
    left: -4.5px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 5px solid transparent;
    border-top-color: #d24912;
  }
  
  #loader-1:before{
    z-index: 100;
    animation: spin 1s infinite;
  }
  
  #loader-1:after{
    border: 5px solid #ccc;
  }
  
  @keyframes spin{
    0%{
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100%{
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
/*footer*/
.footer {
  width: 100%;
  position: relative;
  height: auto;
  background-color: #303031;
  text-align: center; 
}
.contain{
  direction: rtl;
  display: grid;
  grid-template-columns: 25vw 25vw 25vw 25vw;
}
.footer .col {
  width: 190px;
  height: auto;
  padding: 0px 20px 20px 20px;
}
#socials{
  direction: ltr;
}
#socials i{
  width:50px;
  height: 50px;
}
.col iframe{
  margin-right: -25px;
}
.footer .col h1 {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  line-height: 17px;
  padding: 20px 0px 5px 0px;
  color: rgba(255,255,255,0.2);
  font-weight: normal;
}
.footer .col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer .col ul li {
  color: #999999;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  padding: 5px 0px 5px 0px;
  cursor: pointer;
  transition: .2s;
}
.social ul li {
  display: inline-block;
  padding-right: 5px !important;
}

.footer .col ul li:hover {
  color: #ffffff;
  transition: .1s;
  -webkit-transition: .1s;
  -moz-transition: .1s;
}
.clearfix {
  clear: both;
}
.col #logo{
  padding-top:50px;
  width: 150px;
  height: 200px;
}




  /*phone visualize*/
  @media only screen and (max-width: 1300px) {
    .c-slide__title {
      font-size: 3em;
    }
  
    .c-slide__title--large {
      font-size: 2em;
    }
  
    .c-wrap--small {
      max-width: 50%;
    }
  }
  @media only screen and (max-width: 1100px) {
    .c-header {
        justify-content: space-between;
    }
    }
    
    @media screen and (max-width:956px){
      .c-navigation{
        display: none;
      }
  .c-cta__button__search{
    display:none;
  }
  #a1{
    display: none;
  }
a{
  color:#202020;
}
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu > li {
    margin: 1rem 1rem;
    overflow: hidden;
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: whitesmoke;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 70px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
#menu-toggle:checked ~ .menu li {
  border: 1px solid #c2c2c2;
  height: 2.5em;
  padding: 0.5em;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu > li {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0.5em 0;
  width: 100%;
  color: white;
  background-color: #e5e1e1;
}
.menu > li:not(:last-child) {
  border-bottom: 1px solid #c2c2c2;
}

#loader-1:before, #loader-1:after{
  content: "";
  position: absolute;
  top: -4.6px;
  left: -4.6px;
}
   .c-header__title{
    position: relative;
    right:60px;
   }
   .imgback{
display: none;
   }
  .imgback1{
display: flex;
position: absolute;
top:0;
opacity:25%;
width: 100%;
height: fit-content;
z-index:-1;
  } 
  }
  
  @media only screen and (max-width: 1139px) {
    .contain .social {
      width: 1000px;
      display: block;
    }
    .social h1 {
      margin: 0px;
    }
  }
  @media only screen and (max-width: 950px) {
    .footer{
      height: 35rem;
    }
  .contain{
    grid-template-columns: 50vw 50vw;
    grid-template-rows: 50vh 50vh;
    place-items: center;
  }
    .main-container{
      margin-left: 8%;
      display:grid;
      grid-template-columns: repeat(2,1fr);
      grid-template-rows:repeat(4,320px) ;
    }
  }
  @media only screen and (max-width: 635px){
.main-container{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows:repeat(7,320px) ;
}
  }
  @media only screen and (max-width: 500px) {
    .footer{
      height:72rem;
    }
  .contain{
    grid-template-columns: 100vw;
  grid-template-rows: 200px 300px 300px 350px;
  }
  .col #logo{
    height: 150px;
    padding-top: 0;
  }
  }
  @media only screen and (max-width: 964px) {
    .menu{
      margin-top:92px;
    }
  }
  @media only screen and (max-width: 300px){
    .card-container{
      width: 200px;
      height: 200px;
    }
    .main-container{
      grid-template-rows:repeat(7,220px) ;
    }
  }