*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    scrollbar-width: none;
}

body::-webkit-scrollbar{
  display: none;
}
.btn{
    max-width: 80%;
}
.container{
    /* overflow: hidden; */
    height: 100vh;
}
.container video{
    min-width: 100%;
    min-height:100%;
    object-fit:cover;
    position:fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%); 
    z-index: -1;
}

.content{
    /* display: grid;
    align-self: center;*/
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%); 
    background-color: rgba(0, 0, 0, 0.36);
     /*margin-top: 2rem; */
    overflow: hidden;
    text-align: center;
   /* width:100%;
   height: 100vh;
   overflow: hidden; */
   
}
@media screen and (min-width:1px) and (max-width:500px) {
    .content{
        /* display:grid;
        justify-content: center;
        align-items: center;
        row-gap: 1rem;
        height: fit-content; */
    }
}
.content .head{
    overflow: hidden;
    padding: 2rem;
    width: 100%;
    /* margin-bottom: 5rem; */
    background-color: rgba(0, 0, 0, 0.555);
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;
    animation: colgroup 2.6s ease-in forwards;
}
@media screen and (min-width:1px) and (max-width:500px) {
    .content .head{
        height: 400px;
    }
}
.content .head span{
    font-family: "Rubik Glitch", system-ui;
    text-transform: uppercase;
    font-optical-sizing: auto;
    font-size: 3rem;
    color: #fff;
     animation: slideRight 2.5s ease forwards;
}
@media screen and (min-width:1px) and (max-width:500px) {
    .content .head span{
        font-size: 2rem;
    }
}

.content .head p{
color: #cacaca;
    font-family: "Rubik Glitch", system-ui;
    text-transform: capitalize;
    font-optical-sizing: auto;
      animation: zoomOut 2.6s ease-in forwards;
}
.content .head .offer{
    color: rgb(255, 138, 22);
    padding: 1rem 0;
    font-size: 20px;
}

.content .item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border: 2px solid peru;
    border-radius: 20px;
    padding: 2rem 1rem;
    overflow: hidden;
     animation: slideBottom 2s ease forwards;
}
.content .item a{
    text-decoration: none;
  font-family: "Rubik Glitch", system-ui;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 3rem;
  font-style: normal;
    text-transform: capitalize;
    color: #fff;
}
@media screen and (min-width:1px) and (max-width:500px) {
    .content .item{
        width: 400px;
        height: 100px;
        margin-bottom: 1rem;
        padding: 1rem 1rem;
    }
    .content .item a{
        font-size: 1rem;
    }
}
.content .item img{
    width: 70px;
    height: 50px;
    border-radius: 10px;
}
.content .footer{
    padding: 1rem;
}
.content .footer span{
    color: #fff;
    font-size: 14px;
    font-family: "Rubik Glitch", system-ui;
}
.content .footer img{
    width: 20px;
    height: 10px;
}
/* kyframe */
@keyframes slideRight {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes zoomOut {
    0%{
        transform:scale(1.1);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideBottom {
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes colgroup {
    0%{
        background-color: rgba(255, 255, 255, 0.473);
        color:rgb(0, 0, 133)
    }
    100%{
        background-color: rgba(0, 0, 0, 0.342);
        color: #fff;
    }
}