*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body{
    background: linear-gradient(#3f51b5, #000);
}

.main{
    width: 400px;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
    z-index: 0;
}

.header{
    width: 100%;
    padding: 20px 0;
    background: #f9f9f9;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 0;
}

.header img{
    width: 20px;
    position: absolute;
    top: 20px;
    cursor: pointer;
}

.header p{
    color: #2E4AC7;
    text-align: center;
}

.menu-icon{
    left: 20px;
}

.bell-icon{
    right: 20px;
}

.main-text{
    width: 300px;
    margin: 50px auto 0;
    color: #777;
    z-index: 1001;
}

.main-text h2{
    margin-bottom: 20px;
}

.footer-menu{
    width: 100%;
    position: absolute;
    bottom: -10px;
    padding: 17px 45px;
    background: #f9f9f9;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.footer-menu img{
    width: 20px;
    margin: 0 32px;
    cursor: pointer;
}

.swiper-container{
    height: 530px;
}

.swiper-wrapper{
    align-items: center;
}

.swiper-slide{
    width: 250px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-slide img{
    width: 250px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

.swiper-slide-active{
    transform: scale(2.2);
    transition: .4s;
}

.swiper-pagination{
    margin-bottom: 50px;
    /* bottom: 0 !important; */
}

.info{
    width: 100%;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    text-align: justify;
    border-radius: 0 0 5px 5px;
}

.info h3{
    font-size: 20px;
    margin-left: 7px;
    font-weight: 100;
    color: #fff;
}

.info p{
    font-size: 15px;
    margin-left: 7px;
    color: #fff;
}

.info a{
    text-decoration: none;
    color: #fff;
    float: right;
    margin-right: 7px;
    margin-top: -28px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 15px;
    padding: 2px 8px;
}