.funnels-firstscreen-links {
    position: relative;
    z-index: 2;
}
.funnels-firstscreen__image {
    position: relative;
    z-index: 1;
}
.funnels-firstscreen-links ul{
    display: flex;
    background: #F1F9F6;
    border-radius: 10px;
}

.funnels-firstscreen-links ul li{
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnels-firstscreen-links ul li:hover,
.funnels-firstscreen-links ul li.current-menu-item{
    background: #34DCA2;
    box-shadow: 0px 17px 26px rgba(52, 220, 162, 0.19);
    border-radius: 10px;
}

.funnels-firstscreen-links ul li a{
    color: #34DCA2;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnels-firstscreen-links ul li:hover a,
.funnels-firstscreen-links ul li.current-menu-item a{
    color: #FFFFFF;
}

.funnels-firstscreen__row {
    display: flex;
    position: relative;
}

.funnels-firstscreen__item-left {
    position: relative;
    z-index: 2;
}

.funnels-firstscreen__item-left strong {
    font-weight: 700;
    color: #34DCA2;
}

.funnels-firstscreen__item-right {
    position: absolute;
    z-index: 1;
}

.funnels-firstscreen__text {
    max-width: 637px;
    font-weight: 500;
    line-height: 150%;
    color: #10173C;
}

@media screen and (min-width: 1200px){
    .funnels-firstscreen__item-left {
        max-width: 760px;
    }

    .funnels-firstscreen__item-right {
        right: -150px;
    }
}

@media screen and (min-width: 991px) and (max-width: 1200px){
    .funnels-firstscreen__item-left {
        max-width: 750px;
    }

    .funnels-firstscreen__item-right {
        right: -235px;
    }
}

@media screen and (min-width: 991px){

    .funnels-firstscreen__item-left {
        padding-top: 140px;
    }

    .funnels-firstscreen__item-right {
        top: -20px;
    }

    .funnels-firstscreen__title {
        margin-bottom: 30px;
    }

    .funnels-firstscreen__text {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px){
    .funnels-firstscreen__row {
        flex-direction: column-reverse;
    }

    .funnels-firstscreen__item-right {
        position: relative;
    }

    .funnels-firstscreen-links{
        display: none;
    }

    .funnels-firstscreen__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .funnels-firstscreen__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 440px) {
    .funnels-firstscreen__image img {
        min-width: 460px;
        margin-left: -80px;
    }
}



