h6{
    text-align: justify;
}
.container-banner{
    margin-top: 3em;
    display: flex;
    justify-content: space-around;
}
.card-body .col-md-8{
    margin-top: 5em;
}
.row-2{
    background-color: rgba(210, 194, 176, 1);
    margin-top: 3em;
    height: auto;
    margin-bottom: 3em;
}
.row-2 .card-body-text {
    margin-top: 9em;
}
.card-body .col-md-8 h3, h2{
    margin-left: 30px;
}
.row-2 .card-body .card-img{
    width: 20em;
    height: 30em;
}
.tag{
    text-align: center;
    font-weight: bold;
    color: #41290c;
}

.row-3 .container-banner{
    background-color: rgba(210, 194, 176, 1);
    margin-top: 5em;
    width: auto;
    height: 15em;
    margin-bottom: 10em;
}
.card-body-text-2 .col-md-8{
    margin-left: -30px;
}
.row-3 .card-body-text-2 {
    margin-top: 45px;
}
.card-body .col-md-8 h3, h2{
    margin-left: 30px;
}
.row-3 .card-body .card-img-2{
    width: 20em;
    height: 20em;
    margin-top: -3.5em;
}
.btn{
    background-color: #003366;
    border-radius: 0.25rem;
    border: 1px solid transparent;
}
.btn-1{
    background-color: #41290c;
    border: 1px solid transparent;
    
}
.card-body-4{
    margin-bottom: 3em;
}
.btn-3{

}
.flip-container {
    perspective: 1000px;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    /* Adjust these styles for size and positioning */
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.front {
    z-index: 2;
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
}
#pict-banner {
    width: 80%;
    animation: flip 2s ease-in-out infinite;
}

@keyframes flip {
    0% {
        transform: perspective(800px) rotateY(0deg);
    }
    50% {
        transform: perspective(800px) rotateY(180deg);
    }
    100% {
        transform: perspective(800px) rotateY(0deg);
    }
}