@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto",sans-serif;
}
body{
    height: 57vh;
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 5px;
}
::-webkit-scrollbar-thumb{
    background-color: red;
    border-radius: 20px;
}
header{
    display: flex;
    position: sticky;
    width: 100%;
    border-bottom:1px solid red;
    height: 90px;
    background-color: black;
    display: flex;
   z-index: 99;
    padding: 0 40px;
    justify-content: space-around;
    align-items: center;
}
body{
    background-color: black;
    z-index: 97;
}

header .logo img{
    margin-top: 3px;
    height: 45%;
    width: 45%;
    border-radius: 50%;
}

header .logo img:hover{
    animation: rotate 7s linear infinite;
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
header nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    margin-right: 20px;
    gap: 9px;
}
header nav a{
    font-size: 21px !important;
    text-decoration: none;
    color: white;
    padding: 5px 12px;
    position: relative;
    z-index: 1;
}
header nav a::after{
    position: absolute;
    content: '';
    background-color:red;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    z-index: -1;
    text-align: center;
    border-radius: 5px;
}
header nav a:hover::after,
header nav a:active::after{
    height: 100%;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.5s ease;
}
header nav a.active{
height: 100%;
background-color: red;
border-radius: 5px;
}
.search-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20;
   
    margin-right: 0;
    position: relative;
    margin-left: 120px;
    width: 50%;
    
}
.search-btn .s-c{
    display: flex;
    gap: 15px;

}
.search-btn i{
    padding-top: 10px;
    padding-left: 10px;
    display: inline-block;
    color: white;
    font-size: 25px;
    transition: all 0.3s ease;
}
.search-btn #sh{
    position: absolute;
    top: 3%;
    right: 97%;
}
.search-btn #sh1{
    color: black;
}
.search-btn #cart{
    position: absolute;
    top: 4%;
    right: 76%;
}
.search-btn i:hover{
    transform: scale(1.3);
    cursor: pointer;
}
.search-btn .search-input{
    width: 280%;
    visibility: hidden;
    position: absolute;
    top: 168%;
    display: flex;
    justify-content: end;
    right: 0px;
}
.search-btn .search-input.active{
    visibility: visible;
}
.search-btn .search-input input{
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    padding-left: 17px;
    padding-right: 76px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2),
                0 6px 20px rgba(0,0,0,0.1);
    font-size: 20px;
}
.search-btn .search-input span{
    position: absolute;
    right: 18px;
}
.search-btn .search-input #microphone{
    position: absolute;
    right: 57px;
}


.search-btn button{
    background:none;
    color: white;
    padding: 10px 25px;
    outline: none;
    margin-left: 70px;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid red;
    font-size: 21px;
    transition: all 0.4s ease;
}
.search-btn button::before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: red;
    z-index: -1;
    top: 0;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.search-btn button:hover::before{
    height: 100%;
}
.log-btn a{
    text-decoration: none;
    color: white;
}

/*-------------------- Home -------------*/
.h-video{
    height:86vh;
}
video{
   height: 100%;
   width: 100%;
   object-fit: cover;
}
.home  img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home .container{
    position: absolute;
    top: 30%;
    padding: 40px;  
    color: white;
    z-index: 34;
    
}
.home h1{
    font-size: 68px;
    line-height: 76px;
}
.home h1 span{
    color: red;
}
.home p{
    line-height: 25px;
    padding-top: 13px;
    animation-delay: 0.5s;
    font-size: 18px;
    padding-bottom: 8px;
}
#btn-home{
    border: 1px solid transparent;
    padding: 9px 30px;
   cursor: pointer;
    color: white;
    border-radius: 20px;
    background-color: red;
    font-weight: 500;
    font-size: 21px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
    margin-top: 20px;
}
#btn-home::before{
    content: '';
    position: absolute;
    width: 100%;
    background-color: black;
    border: 1px solid red;
    color: white;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 20px;
    height: 0%;
    transition: all 0.4s ease;
 
}
#btn-home:hover::before{
    height: 100%;
}
.home .service{
    margin-top: 50px;
    color: red;
    text-align: center;
    font-size: 45px;
}
.home .container1{
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 0px;
    padding: 40px;
}
.home .container1 .h-img{
    width: 230px;
    height: 230px;
}
.home .container1 .h-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.home .container1 .h-text{
    margin-top: 40px;
    text-align: center;
}
.home .container3,.home .container4{
    padding: 70px;
    display: flex;
    color: white;
}
.home .container3 .left{
    flex-basis: 50%;
    
}
.home .container3 .left h2{
    color: red;
    font-size: 47px;
    padding-top: 60px;
}
.home .container3 .left p{
    font-size: 30px;
    padding-right: 40px;
    padding-top: 30px;
    line-height: 1.3;
}
.home .container3 .right{
    flex-basis: 50%;
    height: 350px;
}
.home .container3 .right img{
    height:100%;
    width: 100%;
    object-fit: cover;
}
.home .container4 .left{
    flex-basis: 50%;
   
}
.home .container4 .right{
    flex-basis: 50%;
    padding-left: 80px;
}
.home .container4 .right h2{
    color: red;
    font-size: 47px;
   padding-top: 25px;
}
.home .container4 .right p{
    font-size: 30px;
   
    padding-top: 30px;
    line-height: 1.3;
}
.home .container4{
    padding-bottom: 35px;
}
.home .container5{
    padding: 50px;
    padding-top: 0px;
}
.home .container5 .partner{
    text-align: center;
    font-size: 47px;
    color:red;
}
.home .container5 .contain-images{
    display: grid;
    margin-top: 30px;
    gap: 70px;
    grid-template-columns: 28% 28% 28%;
}
.home .contain-images5 .contain-images img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/******************* LOgin/Registration *****************/

/*--------- Footer ---------*/

footer{
    background-color: black;
}
footer .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-top: 10px;
}
footer .logo img{
   
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
footer .logo img:hover{
    animation: rotate 7s linear infinite;
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
footer .ft{
    background-color: #13131a;
    padding-block: 40px;
    padding-top: 30px;
    color: white;
    padding-bottom: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 33px;
    flex-direction: column;
}
footer .ft .social-icons{
    transform: scale(1);
    width: 70%;
}
footer .ft .social-icons ul li i{
    width: 100%;
    height: 100%;
    z-index: 3;
}
footer .social-icons ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-direction: row;
}
footer .social-icons ul li{
    list-style: none;
    padding: 10px;
    width: 50px;
    transition: all 0.4s ease;
    height: 50px;
    background-color: red;
    border-radius: 50%;
    text-align: center;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: relative;
}

footer .social-icons ul li::after{
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
    border-radius: 50%;
}

footer .social-icons ul li:nth-child(1)::after{
    background-color: cornflowerblue;
}
footer .social-icons ul li:nth-child(2)::after{
    background-color: dodgerblue;
}
footer .social-icons ul li:nth-child(3)::after{
    background-color: deeppink;
}
footer .social-icons ul li:nth-child(4)::after{
    background-color:slateblue;
}
footer .social-icons ul li:nth-child(5)::after{
    background-color:deepskyblue;
}
footer .social-icons ul li i{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
footer .social-icons ul li i::before{
    transform: scale(1);
}
footer .social-icons ul li:hover i{
    transform: scale(1.70) !important;
}
ul li:after{
    opacity: 0;
    z-index: -1;
}
ul li:hover:after {
    opacity: 1;
    z-index: 1;
    transform: scale(1.1);
}
footer .ft .nav-name{
    display: flex;
    gap: 15px;
}
footer .ft .nav-name .first{
    border: 1px solid gray;
    text-align: center;
    width: 110px;
    margin-left: 10px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}
footer .ft .nav-name .first a{
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: white;
}
footer .ft p span{
    color: red;
}
footer .ft .nav-name .first:hover{
    background-color: red;
    border: none;
}

