.wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    color: var(--white);
}

.row-carrousel {
    width: 100%;
    clear: both;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* White w/opacity/see-through */
    position: relative;
    padding: 0;
}

.row-features {
    position: relative;
}

.new-feature-slider {
    width: 100%;
    float: left;
    overflow: hidden;
}
.new-feature-slider .feature-slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
.new-feature-slider .feature-slide .feature-slide-image img {
    width: 100%;
    display: block;
}
.new-feature-slider .feature-slide.active {
    opacity: 1;
}

.block-wrap {
    position: relative;
    width: 100%;
}
.block-wrap:before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}

.w50 {
    width: 50%;
    float: left;
}

.w70 {
    width: 70%;
    float: left;
}

.w30 {
    width: 30%;
    float: left;
}


.h50:before {
    padding-top: 50%;
}

.block {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.content-centered {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    width: 100%;
    max-width: 25em;
    transform: translate(-50%, -50%);
    padding: 20px;
}

.block-wrap:before .center-content {
    padding-top: 10% !important;
}

.center-content {
    height: 700px;
}

.controls {
    box-sizing: border-box;
    /*width: 80px;*/
    /*height: 160px;*/
    position: absolute;
    z-index: 9999;
    border-right: solid 8px rgba(2, 239, 77, 0.4);
    overflow: visible;
}
.controls .control {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    display: block;
    background: var(--grey_2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    float: right;
}
.controls .control:first-child {
    border-bottom: 1px solid rgba(4, 68, 86, 0.2);
}
.controls .control.button-next {
    transform: rotate(180deg);
}
.controls .control:before, .controls .control:after {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform-origin: left center;
    content: "";
    background-color: var(--principal_color_1);
    transition: all 0.3s ease;
}
.controls .control:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.controls .control:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.controls .control:hover {
    background-color: var(--principal_color);
}
.controls .control:hover:before, .controls .control:hover:after {
    background-color: white;
}

.new-feature-controls {
    bottom: 0px;
    right: 30%;
}

/* Dispositivos medianos (ordenadores, anchura mayor o igual a 992px) */
@media (max-width: 900px) {
    .block-2 {
        overflow: scroll;
        top: -80px;
    }
    .w70 {
        width: 100%;
    }
    .w30 {
        width: 100%;
    }
    .center-content {
    height: 900px;
    }
    .center-content:before {
        height: 700px;
        font-size: 10px !important;
        padding-top: 10%;
    }
    .content-centered {
        padding: 0px !important;
    }
}