@import url('https://fonts.googleapis.com/css?family=Cairo:200,300,400,600,700,900&display=swap&subset=arabic,latin-ext');


html,body {
    /* padding: 0;
    margin: 0;
    overflow-x: hidden;
     */
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

header{
    background-image: url(assets/BackGround.png);
    background-size:100% 100%;  
    bottom: 0;
    /* top: 0;
    right: 0;
    left: 0; */
    position: fixed; 
    width: 100%;
    height: 100%;
    /* overflow-x: hidden; */
}
.text{
width: 60%;
}
.container{
    /* margin-top: 100px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
}
.content{
    display: grid;
    /* grid-template-columns:200px 200px 500px  ; */
    grid-template-columns:1fr 1fr  ;
    grid-gap: 50px;
    width: 70%;
    z-index: 2;
    margin-top: -180px;
    padding-left: 47px;
}
.icons{
    display: grid;
    grid-template-columns:repeat(3,1fr) ;
    grid-gap: 60px;
    margin: auto;
    align-items: start;
    padding-left: 0;
}
.icons i {
    color: #ffffff;font-size: 30px;
}
.btns{
    display: grid;
    grid-template-columns:repeat(3,1fr) ;
    margin: auto;
    grid-gap: 40px;
}
.btns a { 
    background-color: #ffffff;
    padding: 2px 20px ;
    border-radius: 40px;
    font-size: 20px;
    font-family: 'Saira Semi Condensed', sans-serif;
    text-decoration: none;
    color:#458C27;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
}
.basketball{
    z-index: 1;
  
}
.Logo {
  width:60%;
}
/* ******************************************* */


.basket img {
    display: block;
    position: absolute;
    top: 55px;
    left: 20px;
    min-width: 228px;
    height: 193px;
    overflow: hidden;
  }
  

  .allWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
  
    _background: url("img/5Y.svg");
    
    z-index: 1;
  }
  
  
  /* animation container */
  
  .ballWrapper {
    width: 100px;
    height: 260px;
    display: block;
    position: absolute;
    cursor: pointer;
    left: 180px;
    top: 35%;
  }
  
  .ball {
    width: 70px;
    height: 70px;
    position: relative;
    animation: jump 1s infinite;
    overflow: hidden;
    overflow-y: hidden;
  }
  
  
  /*Ball texture*/
  
  .ball:after {
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: url("img/4D.svg");
    position: absolute;
    animation: rotate 2s infinite, back 1s infinite;
    z-index: 5;
    background-repeat: repeat;
    background-size: cover;
    animation-timing-function: linear;
  }
  
  
  /*Ball light*/
  
  .ball:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-image: url("img/5C.svg");
    background-size: 110%;
    border-radius: 100%;
    animation: lightop 1s infinite;
  }
  
  
  /*Shadow on ball*/
  
  .ballshad {
    background: url("img/5P.svg");
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 100%;
    animation: shadop 10s infinite;
    margin: auto;
    display: block;
    background-size: contain;
    z-index: 10;
  }
  
  
  /*Shadow on floor*/
  
  .ballShadow {
    position: absolute;
    _left: 50%;
    bottom: 0;
    z-index: 10;
    margin-left: -10px;
    background-image: url("img/4V.svg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100%;
    animation: shrink 1s infinite;
    z-index: -1;
    background-position: center;
  }
  
  
  /* Animation keyframes */
  
  @keyframes jump {
    0% {
      top: 0;
      transform: scale3d(1, 1, 1);
      border-radius: 100%;
      animation-timing-function: ease-in;
    }
    45% {
      transform: scale3d(1, 1, 1);
    }
    50% {
      top: 200px;
      animation-timing-function: ease-out;
      transform: scale3d(1.1, .9, 1);
    }
    55% {
      transform: scale3d(1, 1, 1);
    }
    60% {
      transform: scale3d(.8, 1.1, 1);
    }
    70% {
      transform: scale3d(.95, 1.05, 1);
    }
    72% {
      transform: scale3d(1, 1, 1);
    }
    100% {
      transform: scale3d(1, 1, 1);
      top: 0;
      border-radius: 100%;
    }
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes shrink {
    0% {
      bottom: 0;
      margin-left: -30px;
      width: 80px;
      height: 20px;
      animation-timing-function: ease-in;
      left: 150%;
      opacity: .2;
    }
    50% {
      bottom: 5px;
      margin-left: -10px;
      width: 50px;
      height: 10px;
      animation-timing-function: ease-out;
      left: 35%;
      opacity: 1;
    }
    100% {
      bottom: 0;
      margin-left: -30px;
      width: 80px;
      height: 20px;
      animation-timing-function: ease-in;
      left: 150%;
      opacity: .2;
    }
  }
  
  @keyframes lightop {
    0% {
      opacity: .25;
    }
    50% {
      opacity: .1;
    }
    100% {
      opacity: .25;
    }
  }
  
  @keyframes shadop {
    0% {
      opacity: .25;
    }
    50% {
      opacity: .55;
    }
    100% {
      opacity: .25;
    }
  }
  
  @keyframes back {
    0% {
      background-position: top;
    }
    100% {
      background-position: bottom;
    }
  }