/*Global Rules*/
@font-face{
   
  
  src: url(../webfonts/aljazi.ttf);
  font-family: aljazi;

}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
     -moz-box-sizing: border-box;
     font-family: aljazi;
}
:root {
  --main-color:#cc9933;
  --secondary-color:#808080;
}
body{
    font-family: 'aljazi';
    direction: rtl;
}
html{
  scroll-behavior: smooth;
}
.section-title{
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: "";
    display: block;
    width: 75%;
    background-color: #ffc527;
    height: 4px;
}
/*Header*/

.navbar {
    box-shadow: 1px 2px 5px #ebebeb; 
    padding: 15px;
}
.navbar ul li {
    padding: 10px 0px;
}

.navbar .container button {
  font-size: 20px;
  font-weight: 600;
}
/* End Header*/

/*About*/
.container {
  padding-left: 15px; padding-right: 15px;  /* suitable for version mobile */
  margin-right: auto; margin-left: auto;  /*لتوسيط العناصر فى النص */
  margin: auto;
}

@media (min-width:768px){
  .container{
      width: 750px;
  }
}

@media (min-width:992px){
  .container{
      width: 970px;
  }
}
@media (min-width:1200px){
  .container{
      width: 1170px;
  }
}

.specialHeading{
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}
.specialHeading + p {
  margin: -20px 0 0 0;
  text-align: center;
  font-size: 20px;
  color: #797979;
}
@media (min-width:768px){
  .specialHeading{
      font-size: 60px;
  }
}

/* ----*/ 
/*Start About*/
.about{
  padding-top: 60px;
  padding-bottom: 60px;
}
.about .about-content {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width:991px) {
  .about .about-content  {
      flex-direction: column;
      text-align: center;
  }
}
.about .about-content .image{
 width: 250px;
 height: 375px;
}
@media (max-width:991px) {
  .about .about-content .image {
      margin: 0 auto 50px auto;
  }
}

.about .about-content .image::before{
  content: "";
  position: absolute;
  background-color: #ebeced;
  width: 100px;
  height: calc(100% + 80px);
  top: -40px;
  left: -20px;
  z-index: -1;
}
.about .about-content .image::after{
  top: -40px;
  content: "";
  position: absolute;
  width: 120px;
  height: 300px;
  border-left: 80px solid var(--main-color);
  border-bottom: 80px solid var(--main-color);
  z-index: -1;
  left: 200px;
}
@media (max-width:991px) {
  .about .about-content .image::before ,
  .about .about-content .image::after {
      display: none;
  }
}
.about .about-content .image img {
  max-width: 100%;
  
}
.about .about-content .text {
  flex: 1;
  padding-left: 200px;
}
@media (max-width:991px) {
  .about .about-content .text  {
      padding-left: 0;
  }
}
.about .about-content .text p:first-of-type{
font-weight: 500;
line-height: 2;
font-size: 24px;
padding-bottom: 50px;
text-align: justify;
}
.about .about-content .text hr{
  width: 75%;
  border-color: var(--main-color);
  display: inline-block;
}
.about .about-content .text p:last-of-type{
  line-height: 2;
  text-align: justify;
  font-size: 20px;
}


/* ----*/
.boxitem {
 padding-bottom: 50px;
}

.boxitem img {
  width: 100%;
  height: 100;
}

.boxitem h2 {
  text-align: center; 
  color: #808080;
  font-weight:500;
  font-size:20px;
}
/*********************/

/*Start Footer And End */

/*contact*/
.contact{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.contact .info {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.contact .info .label {
  font-size:  30px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -2px;
  
}
.contact .info .link {
  display: block;
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  color: var(--main-color);
}

.contact .info .social {
display: flex;
justify-content: center;
margin-top: 20px;
font-size: 16px;
}

.contact .info .social i {
  margin-left: 10px;
  font-size: 30px;
  color: var(--secondary-color);
}
/*end contact*/

/*Start Footer*/
.footer{
  background-color: var(--secondary-color);
  color: white;
  padding: 30px 10px;
  text-align: center;
  font-size: 18px;
}

.footer span {
  font-weight: bold;
  color: var(--main-color);
}


