/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
  }
  :root {
    --main-color: #71318f;
    --main-color-alt: #1787e0;
    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --section-background: #ececec;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Cairo", sans-serif;
  }
  a {
    text-decoration: none;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .container-me {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  /* Small */
  @media (min-width: 768px) {
    .container-me {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container-me {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container-me {
      width: 1170px;
    }
  }

  .header {
    position: relative;
    min-height: 100%;
    padding-bottom: 100px;
    background: #ebeaea;
  }

  .header .container-me {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    align-items: center;
    flex-wrap: wrap;
  }
  .header .const-nav{
    display: inline-flex;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 5px 40px;
    z-index: 10;
    width: 100%;
    color: white;
    background: #ebeaea;
  }
  .header .logo {
    height: 20px;
    display: flex;
    z-index: 50;
  }
  .header .const-nav .menu{
    width: 30px;
    height: 50px;
    position: relative;
    justify-content: center;
    margin-top: 25px;
    color: white;
  }
  .header .main-nav {
    display: flex;
    border: 1px solid #191919;
    background: #71318f;
    color: white;
  }
  .header .main-nav > li > a {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 72px;
    padding: 50px;
    color: white;
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
    letter-spacing: 2px;
    transition: var(--main-transition);
    text-decoration: none;
}

.header .main-nav > li > a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: -100%;
    transition: var(--main-transition);
  }
  .header .main-nav > li > a:hover {
    color: var(--main-color);
    background-color: #fafafa;
  }
  .header .main-nav > li > a:hover::before {
    left: 0;
  }

  .header .container-me img{
    display:flex ;
    width: 110px;
    height: 110px;
    padding-top: 0;
  }
  .header .language {
    display: flex;
    justify-content: right;
    align-items: flex-end;
    height: 72px;
    position: relative;
    color: #191919;
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
    transition: var(--main-transition);
}
  .header .language::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: -100%;
    transition: var(--main-transition);
  }
  .header .language{
    position: relative;
    float: right;
    margin-left: auto;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 20px;
    color: #191919;
  }
  .header .language:hover {
    color: var(--main-color);
    background-color: #fafafa;
  }
  .header .language:hover::before {
    left: 0;
  }
  .header video
  {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 90vh;
    object-fit: cover;
    opacity: 0.8;
    z-index: -2;
  }
  .header h1{
    padding: 80px;
    padding-bottom: 10px;
  }
  .header p{
    padding: 80px;
    padding-top: 0;
    font-size: 22px;
  }
  .main-title {
    text-transform: uppercase;
    margin: auto;
    margin-top: 0;
    border: 2px solid #71318f;
    color:rgb(0, 0, 0) ;
    padding: 10px 20px;
    margin-bottom: 40px;
    font-size: 30px;
    width: fit-content;
    position: relative;
    z-index: 10000;
    transition: var(--main-transition);
  }
  .main-title-si {
    text-transform: uppercase;
    margin: auto;
    margin-top: 820px;
    border: 2px solid #71318f;
    color:rgb(0, 0, 0) ;
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    position: relative;
    z-index: 10000;
    transition: var(--main-transition);
  }
  .main-title::before,
  .main-title::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #71318f;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-title-si::before,
  .main-title-si::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #71318f;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-title::before {
    left: -30px;
  }
  .main-title-si::before {
    left: -30px;
  }
  .main-title::after {
    right: -30px;
  }
  .main-title-si::after {
    right: -30px;
  }

  .header .ourw{
    color: rgb(0, 0, 0);
    border: 2px solid rgb(0, 0, 0);
    transition-delay: 0.5s;
    padding-bottom: 80px;
    margin-bottom: 50px;
  }


  /* End Header */

  /* Start OurWork */
  .OurWork {
    padding-top: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    position: relative;
    background-color: #ebeaea;
    z-index: 2;
  }
  .OurWork .container-me {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
  }
  .OurWork video{
    padding: 0;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    background: #ebeaea;
  }
  .OurWork iframe{
    width: 550px;
     height: 315px;
  }
  .OurWork h1{
    margin-top: 0;
    padding-top: 0;
  }

  .OurWork .videocli{
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .OurWork  a {

    font-size: 25px;
    color: #191919;
    text-align: center;
    margin: 0; 
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
  }
  .OurWork  a:hover {
    color: #71318f;
    
    font-size: 30px;

    transition: 0.5s;
  }

  .OurWork a h3{
    border-bottom: 1px solid #39393f;
    padding: 20px;
  }
  .OurWork .box {
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--main-transition), box-shadow var(--main-transition);
    margin-bottom: 50px;
  }
  .OurWork .box:hover {
    transform: translateY(-10px);
    border: 1px solid #1787e0;
  }

  .OurWork .box .content {
    padding: 20px;
  }
  h1{
    font-size: 35px;
  }
  h3{
    font-size: 25px;
  }
  .OurWork .box .content h3 {
    margin: 0;
  }
  .OurWork .box .content p {
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
  }
  .OurWork .box .info {
    padding: 20px;
    border-top: 1px solid #e6e6e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  video{
    width: 100%;
    max-width: 100%;
  }
  @media (max-width: 1200px)  {
    .OurWork{
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
    .OurWork iframe{
      width: 100%;
      height: 100%;
    }
    .OurWork .box{
      width: 100%;
      height: 100%;
      margin: 12px;
    }
  }
  @media (max-width: 992px) {
    .OurWork{
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
    .OurWork .container-me {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 20px;
    }
    .OurWork iframe{
      width: 100%;
      height: 100%;
    }
    .OurWork .box{
      width: 100%;
      height: 100%;
      margin: 12px;
    }
    .header .container-me img{
      display:flex ;
      width: 80px;
      height: 80px;
      padding-top: 0;
    }
    .header .const-nav .menu{
      width: 30px;
      height: 50px;
      position: relative;
      justify-content: center;
      margin-top: 25px;
      color: white;
    }
  }
  @media (max-width: 768px) {
    .OurWork{
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
    .OurWork .container-me {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
    }
    .OurWork iframe{
      width: 100%;
      height: 100%;
    }
    .OurWork .box{
      width: 100%;
      height: 100%;
      margin: 12px;
    }
    .header .container-me img{
      display:flex ;
      width: 70px;
      height: 70px;
      padding-top: 0;
    }
    .header .const-nav .menu{
      width: 30px;
      height: 40px;
      position: relative;
      justify-content: center;
      margin-top: 25px;
      color: white;
    }
    .header .const-nav{
      display: inline-flex;
      position: fixed;
      top: 0;
      left: 0;
      margin: 0;
      padding: 5px 40px;
      padding-right: 30px;
      z-index: 10;
      width: 100%;
      color: white;
      background: #ebeaea;
    }
  }
  @media (max-width: 576px) {
    .OurWork{
      width: 100%;
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
    .OurWork .container-me {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
      gap: 20px;
      overflow: hidden;
    }
    .OurWork .box{
      width: 100%;
      height: 100%;
      margin: 12px;
    }
    .OurWork iframe{
      width: 100%;
      height: 100%;
    }
    .header .container-me img{
      display:flex ;
      width: 60px;
      height: 60px;
      padding-top: 0;
    }
    .header .const-nav .menu{
      width: 30px;
      height: 30px;
      position: relative;
      justify-content: center;
      margin-top: 25px;
      color: white;
    }
    .header .const-nav{
      display: inline-flex;
      position: fixed;
      top: 0;
      left: 0;
      margin: 0;
      padding: 10px 40px;
      z-index: 10;
      width: 100%;
      color: white;
      background: #ebeaea;
    }
  }






  /* End OurWork */

  /* Start About Us */
.AboutUs {
    padding-top: 100px;
    margin-top: 0;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-background);
    overflow: hidden;
  }
  .AboutUs .container-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .AboutUs .info .box {
    background-color: #f6f5f5;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    border: 2px solid white;
    position: relative;
    z-index: 1;
  }

  .AboutUs .info .box h3 {
    font-size: 22px;
    color: #71318f;
    text-align: center;
    padding: 0;
    margin: auto;

  }
  .AboutUs .info .box p {
    color: #000000;
    line-height: 1.7;
    font-size: 18px;
  }

  @media (max-width: 550px) {
    .AboutUs{
      width: 100%;
      overflow: hidden;
    }
    .AboutUs .container-me {
      flex-direction: column;
    }
    .AboutUs .box{
      margin: 0;
      padding: 0;
    }
    .AboutUs .info .box {
      flex-direction: column;
      text-align: center;
      margin-left: 0;
    }
    .AboutUs .text {
      padding: 0;
      margin: 0;
      display: block;
      text-align: center;
    }
  }

  /* End About Us */
  /* Start Clients */
.Clients {
    padding-top: 100px;
    margin-top: 0;
    padding-bottom: 200px;
    position: relative;
    background-color: white;
  }
  .Clients .container-me {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
  }
  .Clients .box {
    padding: 50px;
  }
  .Clients .box img {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }

  .Clients .B:hover{
    display: none;
  }

  @media (max-width: 550px) {
    .Clients{
      width: 100%;
      overflow: hidden;
    }
    .Clients .container-me {
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
      gap: 40px;
      overflow: hidden;
    }
    .Clients .box img {
      position: absolute;
      width: 70px;
      height: 70px;
      border-radius: 50%;
    }
    .Clients .box {
      padding: 20px;
    }
  }

  /* End Clients */
  
  /* Start footer */
.footer {
    background-color: #191919;
    padding: 70px 0 0;
    margin-bottom: 0;
  }
  .footer .container-me {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .footer img{
    width: 300px;
    margin: 0;
    margin-bottom: 30px;
  }
  .footer .box h3 {
    color: #71318f;
    font-size: 50px;
    margin: 0 0 20px;
  }
  .footer .box .social {
    display: flex;
    width: 20px;
    color: #d3d3d3;
    margin-left: 30px;
    margin-top: auto;
  }
  .footer .box .social li {
    margin-right: 10px;
  }
  .footer .box .social li a {
    background-color: #313131;
    color: #b9b9b9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    transition: var(--main-transition);
  }
  .footer .social img{
    width: 40px;
    margin: 0;
    padding: 0;
  }
  .footer .social .fa{
    border: solid 1px black;
    border-radius: 90px;
    background-color: white;
    width: 30px;
    z-index: -1;
  }
  .footer .box .text {
    line-height: 2;
    color: #000000;
  }
  .footer .like-icon{
    margin: auto;
    position: relative;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }
  .footer .like-icon a:hover{
    color: white;
    border: 1px solid white;
    width: 60px;
  }
  .footer .like-icon a {
    border: 1px solid #dddddd;
    border-radius: 100%;
    color: #ddd;
    display: inline-block;
    font-size: 22px;
    height: 54px;
    line-height: 54px;
    margin: 5px 5px 5px 0;
    text-align: center;
    transition: all .3s ease 0s;
    width: 54px;
    text-decoration: none;
    
}
  .footer .box .links li {
    padding: 15px 0;
    transition: var(--main-transition);
  }
  .footer .box .links li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .footer .box .links li:hover {
    padding-left: 10px;
  }
  .footer .box .links li:hover a {
    color: white;
  }
  .footer .box .links li a {
    color: #b9b9b9;
    transition: var(--main-transition);
    text-decoration: none;
  }
  .footer .box .links li a::before {
    font-family: "Font Awesome 5 Free";
    content: "\F101";
    font-weight: 900;
    margin-right: 10px;
    color: var(--main-color);
  }
  .footer .box .line {
    display: flex;
    align-items: center;
    color: #b9b9b9;
  }
  .footer .box .line i {
    font-size: 25px;
    color: var(--main-color);
    margin-right: 10px;
  }
  .footer .box .line .info {
    line-height: 1.7;
    flex: 1;
  }
  .footer .box .line .info span {
    display: block;
  }

  .copyright {
    text-align: center;
    color: #b9b9b9;
    background-color: black;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid #444;
  }
  .footer .box .chat{

    margin: auto;
    color: white;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .footer .box .chat:hover{
    font-size: larger;
    color: #71318f;
  }
  @media (max-width: 550px) {
    .footer{
      width: 100%;
      overflow: hidden;
    }
    .footer .box .social {
      justify-content: center;
    }
    .copyright {
      margin: 0;
      width: 100vh;
    }
    .footer img{
      margin: auto;
    }
    .footer .box{
      margin: 0;
      padding: 0;
    }
    .footer .box .line i {
      margin-right: 0;
      margin-bottom: 15px;
    }
    .footer .box .line {
      flex-direction: column;
    }
  }
  @media (max-width: 1200px) {
    .footer .container-me {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 10px;
      overflow: hidden;
    }
    .footer img{
      width: 200px;
      margin: 0;
      margin-left: 55px;
      margin-bottom: 10px;
      
    }
    .copyright {
      margin: 0;
      width: 100%;
    }
  }
  /* End footer */





  /* Start Animation */
@keyframes up-and-down {
    0%,
    100% {
      top: 0;
    }
    50% {
      top: -50px;
    }
  }
  @keyframes bouncing {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40%,
    60% {
      transform: translateY(-15px);
    }
  }
  @keyframes left-move {
    50% {
      left: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      left: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  @keyframes right-move {
    50% {
      right: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      right: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  @keyframes moving-arrow {
    100% {
      transform: translateX(10px);
    }
  }
  @keyframes flashing {
    0%,
    40% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      width: 200%;
      height: 200%;
    }
  }
  @keyframes change-background {
    0%,
    100% {
      background-image: url("../imgs/discount-background1.jpg");
    }
    50% {
      background-image: url("../imgs/discount-background2.jpg");
    }
  }
  /* End Animation */
  .h {
    position: relative;
  }
  .h .container-me {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .h .logo {
    color: var(--main-color);
    font-size: 26px;
    font-weight: bold;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
  }
  @media (max-width: 767px) {
    .h .logo {
      width: 100%;
      height: 50px;
    }
  }
  @media (max-width: 767px) {
    .h .fab {
      display: none;
    }
  }
  .h .main-nav {
    display: flex;
  }
  .h .main-nav .language{
    display: none;
  }
  @media (max-width: 767px) {
    .h .main-nav {
      margin: 0;
      padding: 0;
    }
  }
  @media (max-width: 767px) {
    .h .main-nav .language {
      display: flex;
    }
  }
  @media (max-width: 767px) {
    .h{
      margin: 0;
      padding: 0;
      width: 150%;
    }
  }

  .h .main-nav > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    position: relative;
    color: black;
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
    transition: var(--main-transition);
}

.h .main-nav > li > a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: -100%;
    transition: var(--main-transition);
  }
  .h .main-nav > li > a:hover {
    color: var(--main-color);
    background-color: #fafafa;
  }
  .h .main-nav > li > a:hover::before {
    left: 0;
  }
  .h .fab {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .h .links{
    display: flex;
  }

  .h.language{
    padding: 10px;
    margin: 10px;
  }
  @media (max-width: 767px) {
    .h .language {
      display: none;
    }
  }
  .h video
  {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 90vh;
    object-fit: cover;
    opacity: 0.8;
    z-index: -2;
  }


  .h h1{
    padding: 80px;
    padding-bottom: 10px;
  }
  .h p{
    padding: 80px;
    padding-top: 0;
    font-size: 22px;
  }

  .ytp-cued-thumbnail-overlay-image {
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
}