*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

:root{
    --primary-color: #B4B4B4 ;
    --text-color: #FFFFFF;
    --secondary-color: #FD6500;
    --nav-color: #CBC6C6;
    --bg-color: #FEC50D;

    --h1-font: 5rem;
    --h2-font: 2.5rem;
    --h3-font: 1.563rem;
    --h5-font: 1.125rem;
    --h6-font: 1.063rem;
    --p-font: 1rem;
}

header{
     position: fixed;
     width: 100%;
     top: 0;
     right: 0;
     z-index: 10001;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px 10%;
     background-color: transparent;
}

.head-img{
    display: flex;
    align-items: center;
}

.head-img .logo img{
    width: 140px;
    height: auto;
    margin-right: 50px;
}

.movie-icon i{
    color: var(--text-color);
    font-size: var(--h3-font);
}

.navigation a{
    color: var(--nav-color);
    font-size: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: all .42s;
}

.navigation a:hover{
    color: var(--secondary-color);
}

.head-btn{
    display: flex;
    align-items: center;
}

.nav-btn{
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    font-size: var(--p-font);
    text-transform: capitalize;
    font-weight: 500;
    background-color: var(--secondary-color);
    padding: 10px  20px;
    gap: 8px;
    transition: all .42s;
}

.nav-btn span i{
    color: var(--text-color);
    font-size: var(--h5-font);
    rotate: 150deg;
    transition: all .42s;
}

.nav-btn:hover i{
    rotate:180deg
}

#menu-icon{
    color: var(--text-color);
    font-size: var(--h2-font);
    z-index: 10001;
    cursor: pointer;
    margin-left: 15px;
    display: none;
}

section{
    padding: 80px 10% 60px;
}

.home-page{
    width: 100%;
    height: 100vh;
    background-image: url(imagenes/slider-bg1.png);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    animation: slide 35s infinite;
}

@keyframes slide{
    0%{
        background-image: url(imagenes/slider-bg1.png);
    }
    25%{
        background-image: url(imagenes/slider-bg2.png);
    }
    50%{
        background-image: url(imagenes/slider-bg3.png);
    }
    75%{
        background-image: url(imagenes/slider-bg2.png);
    }
    100%{
        background-image: url(imagenes/slider-bg1.png);
    }
}

.home-top{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.top-1 h4{
    color: black;
    font-size: var(--p-font);
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border: 1px solid var(--bg-color);
    background-color: var(--bg-color);
}

.top-2 h4{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid var(--text-color);
    letter-spacing: 0.5px;
    padding: 6px 10px;
}

.top-3 h4{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.home-text h1{
    color: var(--text-color);
    font-size: var(--h1-font);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.home-text p{
    max-width: 500px;
    color: var(--primary-color);
    font-weight: 400;
    font-size: var(--h6-font);
    line-height: 1.55;
    margin-bottom: 20px;
}

.detls{
    margin-bottom: 40px;
}

.detls-1{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detls-1 h3{
    color: var(--text-color);
    font-size: var(--h5-font);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.detls-1 .diff{
    color: var(--primary-color);
    margin-left: 10px;
}

.btn-ratting{
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-btn a{
    background-color: transparent;
    border: 1px solid var(--text-color);
    transition: all .42s;
}

.home-btn a:hover{
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.web-star{
    display: flex;
    align-items: center;
    gap: 8px;
}

.web-star i{
    color: var(--bg-color);
    font-size: var(--h3-font);
}

.web-star h3{
    color: var(--text-color);
    font-size: var(--h5-font);
    font-weight: 500;
}

.web-star h5{
    color: var(--primary-color);
    font-size: var(--h6-font);
    font-weight: 400;
}

.play-icon{
    display: flex;
    align-items: center;
    margin-right: 100px;
}

.home-icon i{
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    border-radius: 50%;
    font-size: 50px;
    margin-right: 15px;
    transition: all .42s;
}

.home-icon span{
    color: var(--primary-color);
    font-size: var(--h5-font);
    text-transform: uppercase;
    font-weight: 400;
}

.home-icon i:hover{
    border: 2px solid var(--text-color);
}

@media(max-width:1260px){
    header{
        padding: 20px 4%;
        transition: .3s;
    }
    section{
        padding: 80px 4% 60px;
        transition: .4s;
    }
}
@media(max-width:1150px){
    .home-text h1{
     font-size: 70px;
     transition: .4s;
    }
    .home-icon i{
        width: 70px;
        height: 70px;
        font-size: 40px;
        transition: .4s;
    }
}

@media(max-width:1050px){
    #menu-icon{
        display: block;
    }
    .navigation{
        position: absolute;
        top: 100%;
        right: -100;
        width: 232px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background-color: #171717;
        padding-top: 40px;
        border-radius: 5px;
        transition: all .42s;
    }
    .navigation.open{
        right: 0;
    }
    .navigation a{
        display: block;
        font-size: 22px;
        margin: 10px 0px;
    }
    .home-text h1{
        font-size: 65px;
        transition: .4s;
    }
    .home-icon i{
        width: 60px;
        height: 60px;
        font-size: 40px;
        transition: .4s;
    }
}
@media(max-width:815px){
    .home-page{
        display: block;
    }
    .home-text{
        padding-top: 60px;
        transition: .4s;
    }
    .home-text h1{
        font-size: 60px;
        transition: .3s;
    }
    .play-icon{
        padding-top: 30px;
        transition: .3s;
    }
    .home-icon i{
        width: 50px;
        height: 50px;
        font-size: 30px;
        transition: .4s;
    }
    .home-icon span{
        font-size: 16px;
        transition: .4s;
    }
    .home-top{
        gap: 12px;
        transition: .3s;
    }
    .top-1 h4{
        font-size: 14px;
        transition: .4s;
    }
    .top-2 h4{
        font-size: 14px;
        transition: .4s;
    }
    .top-3 h4{
        font-size: 14px;
        transition: .4s;
    }
}
@media(max-width:650px){
    .home-text h1{
        font-size: 50px;
        transition: .4s;
    }
    .btn-ratting{
        gap: 10px;
        transition: .4s;
    }
    .head-img .logo img{
        width: 120px;
        margin-right: 20px;
        transition: .3s;
    }
    .movie-icon i{
        font-size: 25px;
        transition: .3s;
    }
    .nav-btn{
        padding: 8px 15px;
        font-size: 14px;
        transition: .4s;
    }
    #menu-icon{
        margin-left: 10px;
        transition: .4s;
    }
}