.main {
    /* width: 100%; */
    padding: 0;
    padding-top: 78px;
    position: relative;
    height: 100%;
}


.banner img{
    width: 100%;
    height: 20%;
}

.info-wrapper {
    /* margin-top: -300px; */
    background-color: #333;
    position: absolute;
    height: 90%;
    width: 100%;
    top: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.cover {
    position: absolute;
    left: 10%;
    top: -100px;
    z-index: 2;
}

.cover img {
    border-radius: 15px;
}

.info {
    background-color: #333;
    color: white;
    position: absolute;
    width: 50%;
    right: 5%;
    top: -0px;
    z-index: 2;
    height: 400px;
    padding: 20px;
    border-radius: 8px;
}

.info h3 {
    font:700 1.75rem/1.15 blender,Helvetica,Arial,sans-serif;
}
.info p {
    margin: 0;
}

@media (max-width: 992px) {
    .info-wrapper{
        top: 40%;
    }
    .info{  
        top: -100px;
        right: 0;
        width: 70%;
        margin-right: 3%;
        border-radius: 4px;
    }
    .info h1 {
        font-size: 2rem;
    }
    .info h3 {
        font-size: 1rem;
    }
    .cover {
        position: absolute;
        left: 3%;
        top: -100px;
        z-index: 2;
    }
    .cover img {
        border-radius: 15px;
        width: 50%;
    }
    
}

@media (max-width: 576px) {
    .info-wrapper{
        top: 30%;
    }
    .info{  
        top: -50px;
        right: 0;
        width: 90%;
        margin-right: 5%;
    }
    .cover {
        display: none;
    }
}