body {
  font-size: 15px;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  font-family: "Lateef", cursive;
  font-family: "Scheherazade", serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lateef", cursive;

}
/*logo in header*/

#titr {
  position: relative;
  margin: 0;
  padding: 0;
  transform: translate(+30%);
  text-align: center;
  font-family: "Lateef", cursive;
  font-weight: bolder;
  font-style: inherit;
  font-size: 1.7rem;
  background: linear-gradient(to left, #ffffff, #ccccff, #6666ff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.logo #pic {
  background-repeat: no-repeat;
  margin-top: 20px;
  position: flex;
}
/*navbar*/
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background: url('../img/pattern-1.jpg');
  font-family: "Lalezar", cursive;
  height: 130px;

}

.nav-links {
  transform: translate(+20%);
  display: flex;
  width: 30%;
  justify-content: space-around;
  font-size: 14px;
  direction: rtl;
  text-align: right;
}

.nav-links li {
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.5s;
  font-size: 19px;
  font-weight: bold;
}
.nav-links a:hover {
  font-size:21px;
  text-decoration: none;
  transform: scale(1);
}

.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #eaeaea;
}
/*responsive */

@media screen and (max-width: 1024px) {
  .nav-links {
    width: 60%;
    color: #eaeaea;
  }
  .wrap {
    width: 100%;
    margin: 6px 0;
  }
}
@media screen and (max-width: 700px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0%;
    height: 92vh;
    top: 120px;
    background: #202020;
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    transition: transform 1s ease-in;
    transform: translateX(100%);
  }
  .nav-links li {
    opacity: 1;
  }
  .burger {
    display: block;
  }
  .wrap img {
    width: 50%;
    height: 30%;
    position: relative;
  }
  .card-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .card {
    margin: 1rem;
  }
}
/*Navbar*/
.nav-active {
  transform: translateX(0%);
}
@keyframes navLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

footer  .information  ul  li
{
  font-size:20px;
}


/*Gallary*/
.wrap {
  width: 100%;
  background: url('../img/pattern-2.jpg');
  margin-top: 0;
  height: 600px;
}

.wrap img {
  margin-top: 10%;
  width: 25%;
  margin-left: 5%;
  padding: 12px 16px 20px;
  transition: 0.5s ease;
  box-shadow: 0px 11px 17px 2px rgba(0, 0, 0, 0.75);
}

.wrap img:hover {
  opacity: 0.5;
}

.btn a {
  text-decoration: none;
  color: rgb(252, 0, 0);
}

/*panel*/

.panel-board {
  padding: 10rem 0;
  background-color: #cccc99;
}
.heading {
  text-transform: uppercase;
  font-size: 3.5rem;
  /*margin-right: -3px;*/
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  top: 1rem;
  text-shadow: 2px 2px #808080;
}
.heading::after {
  content: "";
  width: 15rem;
  height: 0.6rem;
  background-color: #404040;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}
.card-wrapper {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  float: left;
  width: 20%;
  margin-left: 2rem;
  padding: 0 10px;
}
.card {
  width: 15rem;
  background-color: rgb(238, 237, 237);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0px 3px 67px 14px rgba(0, 0, 0, 0.75);
}
.card .card-img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 0% 100%);
}
.card .card-img:hover {
  opacity: 0.5;
}

.card h1 {
  font-size: 2rem;
  color: #333;
  margin: 0.7rem 0;
  font-family: "Lateef", cursive;
}

.news-text {
  font-size: 1.2rem;
  direction: rtl;
  text-align: justify;
  margin: 1.5rem 1rem;
  justify-content: center;
  text-justify: inter-word;
  font-style: italic;
  color: #333;
  font-family: "Amiri", serif;
}
.card .btn {
  padding: 1rem 2.5rem;
  background-color: #606060;
  border-radius: 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition-property: all 0.5s;
}
.card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 17px 17px -4px rgba(0, 0, 0, 0.75);
}
.card .btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.card-wrapper:nth-child(1) {
  animation: fadeIn 0.5s 0.5s backwards;
}
.card-wrapper:nth-child(2) {
  animation: fadeIn 0.5s 1s backwards;
}
.card-wrapper:nth-child(3) {
  animation: fadeIn 0.5s 1.5s backwards;
}
.card-wrapper:nth-child(4) {
  animation: fadeIn 0.5s 2s backwards;
}
.information {
  justify-content: space-around;
  min-height: 8vh;

  font-family: "Lalezar", cursive;
  height: 20%;
  margin-top: 60%;
  position: relative;
}
.info {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-left: 60%;
  width: 30%;
  justify-content: space-around;
  margin-top: 2%;
}
.info li {
  font-size: 1rem;
  direction: rtl;
  text-align: right;
  font-weight: bold;
  padding: 10px 0px;
}



/*DynamicPage*/
.DynamicPage {
  text-align: center;
  direction: rtl;
  float: right;
  padding: 30px 20px;
  width: 100%;
}

.DynamicPage .page-title {
  font-size: 24px;
  font-weight: 900;
  padding: 15px 16px;
  margin-bottom:10px;
  text-decoration: underline;
  text-underline-position: under;
}
.DynamicPage .text {
  font-size: 20px;
  text-justify: auto;
  padding: 15px 16px;
}


/*Newss*/
.News {
  text-align: center;
  direction: rtl;
  float: right;
  padding: 30px 20px;
}

.News .page-title {
  font-size: 24px;
  font-weight: 900;
  padding: 15px 16px;
}
.News .text {
  font-size: 20px;
  text-justify: auto;
  padding: 15px 16px;
}

.News .footer-info li {
  font-size: 17px;
  padding: 15px 20px;
  text-align: right;
  list-style: none;
  font-family: byekan !important;
}



/* Gallery */
.card-Gallery {
  width: 20%;
  display: inline-block;
  box-shadow: 2px 2px 20px #e0e0e0;
  border-radius: 5px;
  margin: 2%;
  transition: 1s;
}
.card-Gallery:hover {
  transform: scale(1.3);
}
.image-Gallery img {
  width: 100%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.title-Gallery h1 {
  font-size: 20px;
}


.title-Gallery {
  text-align: center;
  padding: 10px;
  color: #e0e0e0;
}


.des-Gallery {
  padding: 3px;
  text-align: center;
  color: #e0e0e0;
  padding-top: 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/*Contact Us*/
.WrapContactUs {
  position: relative;
  top: 300px;
  margin-bottom: 20%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
 
}

.WrapContactUs .contact-form {
  max-width: 550px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  position: relative;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #eaeaea;
  
}
.WrapContactUs .contact-form::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: -1;
}
.WrapContactUs .contact-form::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: -2;
  filter: blur(10px);
}
.WrapContactUs .contact-form::before,
.WrapContactUs .contact-form::after {
  background: linear-gradient(235deg, #89ff00, #060c21, #00bcd4);
}
.WrapContactUs .input-fields {
  display: flex;
  flex-direction: column;
  margin-right: 4%;
  
}
.WrapContactUs .input-fields,
.WrapContactUs .msg {
  width: 48%;
}
.WrapContactUs .input-fields .input,
.WrapContactUs .msg textarea {
  margin: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #202020;
  padding: 10px;
  color: #202020;
  text-align: right;
  direction: rtl;
  width: 100%;
  font-size: 19px;
  font-weight: bold;
}
.WrapContactUs .msg textarea {
  height: 212px;
}
::-webkit-input-placeholder {
  color: #202020;
}
::-moz-input-placeholder {
  color: #202020;
}
::-ms-input-placeholder {
  color: #202020;
}

.WrapContactUs .btn {
  background: none;
  text-align: center;
  padding: 15px 60px;
  border-radius: 5px;
  color: #202020;
  text-transform: uppercase;
  border: 1px solid #202020;
  font-size: 20px;
  cursor: pointer;
  margin: 10px 50px;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  font-weight: bold;
}

.WrapContactUs .btn::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  color: #202020;
  z-index: -1;
  transition: 0.8s;
}
.WrapContactUs .btn::before {
  top: 0;
  border-radius: 0 0 50% 50%;
}
.WrapContactUs .btn:hover::before {
  height: 180%;
}
@media screen and (max-width: 600px) {
  .WrapContactUs .contact-form {
    flex-direction: column;
  }
  .WrapContactUs .msg textarea {
    height: 80px;
  }
  .WrapContactUs .input-fields,
  .WrapContactUs .msg {
    width: 100%;
  }
}

