.present-banner {
    box-shadow: 0px 6px 24px -6px rgba(0, 0, 0, 0.20);
    border-radius: 15px;
    padding: 80px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    margin-block: 40px;
}

.present-banner h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

.present-banner-img {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0
}

.present-box-top {
    position: absolute;
    top: -20%;
    right: 10%;
    width: 120px;
    animation: updownright 3s infinite alternate;
    z-index: 2;
}

.present-box-bottom {
    position: absolute;
    bottom: -20%;
    left: calc((100% - 150px) / 2);
    width: 150px;
    animation: updown 3s infinite alternate;
    z-index: 0;
}

.present-certificate {
    position: absolute;
    width: 100px;
    top: calc((100% - 100px) / 2);
    transform: rotate3d(5, 5, -2, 0.11turn);
    left: calc((100% - 150px) / 2);
    z-index: 1;
    animation: rotateright 3s infinite alternate;
}

@keyframes updownright {
    to {
        transform: translate(30px, -30px);
    }
}

@keyframes updown {
    to {
        transform: translateY(10px);
    }
}

@keyframes rotateright {
    to {
        transform: skew(10deg, 10deg) scale(0.9) translateY(-30px);
    }
}

@media (max-width: 1199px) {
    .present-banner {
        padding: 50px;
    }
    .present-banner-img {
        height: 70%;
    }
}

@media (max-width: 991px) {
    .present-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10%;
    }

    .present-banner-img {
        height: 250px;
    }

    .present-box-top {
        top: 0;
        left: calc((100% - 80px) / 2);
    }
    
    .present-box-bottom {
        bottom: 0;
    }

    .present-certificate {
        top: 30%;
    }
    
   
}