.new_sliderTop_portal
{
    width: 100%;
    position: relative;
    display: flex;
    height: 80vh;
}

.new_sliderTop_portal>div:nth-child(1)
{
    width: calc(100% - 75vw);
    background-color: #F2F2F2;
    padding: 50px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.new_sliderTop_portal>div:nth-child(1)>button 
{

    border: none;
    width: 250px;
    height: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    background-color: var(--azul-utu-uno);
    color: white;
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.new_sliderTop_portal>div:nth-child(1)>button:hover 
{
    transition: 1s ease;
    cursor: pointer;
    background-color: #333;
}

.new_sliderTop_portal>div:nth-child(1)>h3
{
    margin-bottom: 30px;
}

.new_sliderTop_portal>div:nth-child(1)>p:nth-child(1)>span
{
    background-color: var(--azul-utu-uno);
    color: white;
    padding: 3px;
}

.new_sliderTop_portal>div:nth-child(2)
{
    width: 75vw;
    overflow: hidden;
}
  
.carousel-track 
{
    display: flex;
    width: max-content;
    transition: transform 1.5s ease-in-out;
}
  
.carousel-track img 
{
    width: 75vw;
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

.posicionImgSpan
{
    background-color: #d9d9d9;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 7px;
    border-radius: 7px;
    max-height: 40px;

    position: absolute;
    left: 15px;
    bottom: 75px;
}

@media (max-width:845px) 
{
    .new_sliderTop_portal
    {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }

    .new_sliderTop_portal>div 
    {
        width: 100%!important;
    }

    .new_sliderTop_portal>div:nth-child(1)
    {
        height: auto!important;
        padding-bottom: 200px;
    }

    .new_sliderTop_portal>div:nth-child(2)
    {
        height: auto;
    }

    .carousel-track img 
    {
        width: 100vw;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}

@media only screen and (min-width: 845px) and (max-width: 1333px)
{
    .new_sliderTop_portal>div:nth-child(1) 
    {
        width: calc(100% - 60vw);
    }

    .new_sliderTop_portal>div:nth-child(2),.carousel-track img
    {
        width: 60vw;
    }
}
