*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary:#ff0000;
}

/* Body Design */

body{
    position: relative;
    background: #000;
    font-family: sans-serif;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

/* Header Design */

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    border-bottom: 1px solid rgba(255, 255,255,0.5);
    z-index: 20;
}

.logo img{
    max-width: 60px;
     filter: invert(1);
}
.menu{
    color: #ffffff;
    font: 2em;
}

/* Nav bar design */
.nav{
    display: flex;
}

.nav li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
}
li{
    list-style: none;
}
.nav li:hover a{
    color: var(--primary);
}

.nav-collapse{
    display: none;
}

.search{
    position: relative;
    width: 120px;
    height: 40px;
    transition: 0.5s;
}

.search:hover{
    width: 300px;
}

.search input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255,255,0.5);
    outline: none;
    border-radius: 7px;
    padding: 0 10px 0 5px;
    backdrop-filter: blur(10px);
}

.search input::placeholder{
    color: #fff;
    text-transform: uppercase;
    transform: translateY((5px));
    font-weight: 300;
}

.search ion-icon{
    font-size: 1.4em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #fff;
    padding-left: 10px;
    border-left: 1px solid #000;   
    cursor: pointer;
}

/* Carousel Design */
.swiper{
    height: 100vh;
    width: 100%;
}

.swiper .swiper-wrapper{
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
}

.swiper .swiper-wrapper .swiper-slide{
        height: 100vh;
    width: 100%;
}

.swiper .swiper-wrapper .swiper-slide::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0,0.6);
}

.swiper .swiper-wrapper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper .swiper-button-prev{
    position: absolute;
    left: 85%;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}
.swiper .swiper-button-next{
    position: absolute;
    right: 6%;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after{
    font-size: 30px;
    line-height: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    transition: 0.5s;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;   
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover{
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
}

.swiper .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: transparent;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active{
    background: white;
}

.swiper .swiper-scrollbar{
    background-color: rgb(148, 140, 140);
}

.swiper .swiper-wrapper .swiper-slide .banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding: 30px 100px 0;
    overflow: hidden;
    background: transparent;
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.swiper .swiper-wrapper .swiper-slide .banner img{
    position: relative;
    right: 215px;
    top: 50%;
    /* transform: translateY(-50%); */
    max-width: 700px;
    z-index: 1;
}


.swiper .swiper-wrapper .swiper-slide .backscene{
    position: absolute;
    content: "";
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    box-shadow: inset 0 0 25px rgba(0, 0, 0,0.2);
    backdrop-filter: blur(20px);
    width: 700px;
    height: 700px;
    border-radius: 50%;
}

.swiper .swiper-wrapper .swiper-slide .banner .left{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.banner .left .features{
    position: absolute;
    top: 300px;
    max-width: 400px;
    margin-bottom: 100px;
}

.banner .left .features .rating{
    color: whitesmoke;
    display: flex;
    justify-content: flex-start;
    align-items:center;
    margin-bottom: 25px;
}
.banner .left .features .rating .score{
    padding: 15px;
    font-size: 2em;
    font-weight: 400;
    color: var(--primary);
    background: #fff;
}

.banner .left .features .rating .content{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.banner .left .features .pricing{
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner .left .features .pricing ion-icon{
    padding: 15px;
    font-size: 3em;
    font-weight: 400;
    color: #ffffff;
    background: rgba(255, 0, 0,0.6);
    transition: 1s;
}

.banner .left .features .pricing ion-icon:hover{
    background: rgba(255, 0, 0,0.9);
}


.banner .left .features .content h4{
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 5px;
}
.banner .left .features .content {
    margin-left: 20px;
}

.banner .left .features .content span{
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: 200;
}
.banner .left .features .content .subtitle{
    color: var(--primary);
}

.banner h1{
    position: absolute;
    top: 550px;
    color: #fff;
    letter-spacing: 5px;
    line-height: 0.9;
    z-index: 10;
    text-transform: uppercase;
    font-family: cursive;
}

/* #char-img{
    margin-left: 190px;
} */

.swiper .swiper-wrapper .swiper-slide .banner .right{
    position: absolute;
    height: 100vh;
    max-width: 450px;
    display: flex;
    right:50px ;
    top: 50px;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 100;
}

.banner .right .description{
    padding: 30px 60px 0 0;
    color: #ffffff;
    list-style: none;
}

.banner .right .description h4{
    display: inline-block;
    font-size: 1.3em;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.banner .right .description h4 ion-icon{
    margin-right: 10px;
}

.banner .right .description p{
    margin: 5px 0 25px 30px;
    font-weight: 200;
}

.banner .right h2{
    color: #fff;
    margin-top: 130px;
    font-size: 2.5em;
    line-height: 1em;
    font-weight: 400;
    text-align: right;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner .right iframe{
    max-width: 450px;
    max-height: 255px;
    margin-bottom: 70px;
}

