:root{
  --main-color:#2196f3;
  --alt-main-color:#1787e0;
  --main-transition: 0.9s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
  --section-background: #ececec;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Cairo', sans-serif;
}
  html {
    scroll-behavior: smooth;
  }
  ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  a{
    text-decoration: none;
  }
  .landing{
    /* background-image: url(../pics/bg3.png); */
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    height: 100vh;
  }
  .landing .container{
    background-color: #000000a3;
    max-width: 100%;
    height: 100vh;
    position: relative;
  }

  .landing .cont{
    width: 100%;
    background-color: black;


  }
  .landing .cont .header{
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .landing .cont .header img{
    width: 100px;
    height: 85px;
    cursor: pointer;
  }
  .landing .bars{
    color: #ffa401;
    font-size: 25px;
    display: none;
  }

  .landing .cont .header .login{
    color: black;
    padding-right: 30px;
    font-size: 18px;
    font-weight: bolder;
  }
  .landing .cont .header .login .btn{
    padding: 10px;
    background-color: #ffa401;
    cursor: pointer;
    color: white;
  }

  @media (max-width: 767px){
    .landing .sections{
      display: none;
    }
    .sections2{
      opacity: 1;
    }
    .landing .bars{
      display: block;
    }
  }
  .sections2{
    /* opacity:0 ; */
    color: white;
      display: flex;
      position: absolute;
      gap: 10px;
      top: 12%;
      right: 0;
      align-items: center;
      flex-direction: column;
      display: none;
  }
  .container .open{
    /* opacity: 1; */
    display:flex ;
  }
  .sections2 .sec{
    width: 100px;
    padding: 8px;
    background: #ffa401;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .sections2 .sec:hover{
    border: 3px solid wheat;
  }
  .sec a{
    color: white;
  }
  .cover img{
    background-size: cover;
    width: 100%;
    height: 330px;
    position: relative;
  }
  .cover .black{
    background-color: #0000009c;
    width: 100%;
    height: 340px;
    position: absolute;
    top: 85px;
  } 
.cover .title{
  background-color: #ffa401;
    width: 200px;
    color: white;
    height: 200px;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    font-size: 30px;
    top: 140px;
    right: 50px;
}
@media (max-width: 767px){
  .cover .title{
    background-color: #ffa401;
    width: 100px;
    color: white;
    height: 100px;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    font-size: 14px;
    top: 220px;
    left: 10px;
}
.container .boxes{
  padding-left: 85px;
}
}

.container .boxes{

  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  background-color: black;
  padding: 50px;
}
.container .boxes .box{
  width: fit-content;
  height: fit-content;
  position: relative;
  cursor: pointer;
  padding-bottom: 30px;
}
.container .boxes .box img{
  position: relative;
  width: 180px;
  height: 260px;
}
.container .boxes .box .info{
  color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    padding-left: 2px;
    padding-right: 2px
}
.boxes .box .rate{
  display: flex;
    align-items: center;
    gap: 5px;
    background-color: #28272c;
    padding: 4px;
    height: 35px;
    font-size: 14px;
    border-radius: 10px;
}
.boxes .box .qualty{
  background-color: #28272c;
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;

}
.play{
  color: #ffa401;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  top: 39%;
  right: 37%;
  font-size: 44px;
  opacity: 0;
  transition: 0.8s;
}
.boxes .box:hover .play{
  opacity: 1;
  cursor: pointer;
}
.container .numbers{
  background-color: black;
  color: white;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.container .numbers i{
  font-size: 25px;
  background-color:#ffa401;
  padding: 5px;
  cursor: pointer;
}

.container .numbers .nums{
  display: flex;
  align-items: center;
  gap: 50px;
  cursor: pointer;
}
.container .numbers .nums p:hover{
  color: #ffa401;
}
.container .secs{
  display: flex;
  gap: 40px;
  flex-direction: row-reverse;
}
.container .secs p{
  padding: 12px;
  width: 90px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.container .secs p:hover{
  background-color: #ffa401;
}

.container .secs a{
  color: white;
}


@media (max-width: 767px){

.container .boxes{
  padding-left: 85px;
}
.container .secs{
  display: none;
}
}
