/*Robot Section*/
.robot-section {
    padding: 60px 0;
    background: var(--theme-inverse-color);
}

.robot-container {
    color: var(--third-color);
}

.robot-title {
    color: var(--text-inverse-color);
}

.robot-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1em 2em;
    gap: 10px;
}

.img-container {
    width: 100%;
    height: 450px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.robot-img {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    position: relative;
    object-fit: fill;
}

.robot-description {
    font-size: 26px;
    font-weight: 500;
}

@media only screen and (max-width: 600px) {

    .robot-img,
    .img-container {
        height: 300px;        
    }

    .robot-description {
        font-size: 20px;
        text-align: center;
        font-weight: 500;
    }

    .banner7 {
        content: url('../public/images/PLATINUM__BANNER7_MOVIL.jpg');
    }

    .banner10 {
        content: url('../public/images/PLATINUM__BANNER10_MOVIL.jpg');
    }

}

@media only screen and (max-width: 290px) {
    .robot-description {
        font-size: 0.5em;
    }
}