@charset "utf-8";

.our_process{
    width: 100% !important;
    max-width: 100% !important;
}
.tabs-nav {
    margin: 15px 0 0px;
    position: relative;
    padding-bottom: 70px;
    z-index: 1;
    border-bottom: 5px solid #707070;
}
.tabs-nav__item {
    display: inline-block;
    vertical-align: top;
    position: relative;
    flex: 1;
    list-style: none;
}
.tabs-nav__item:not(:last-child):after{
    background-image: url(../../../images/Polygon.png);
    background-position: right center;
    background-repeat: no-repeat;
    position: absolute;
    /* width: 50px; */
    /* height: 50px; */
    right: -22px;
    width: 39px;
    height: 56px;
    top: 22px;
    content: '';
    background-size: contain;
}
.tabs-nav__item.active .tabs-nav__link, .tabs-nav__item .tabs-nav__link:hover {
    color: #90BF51;
} /* active tab */
.tabs-nav__link {
    color: #666;
    text-decoration: none;
    -webkit-transition: linear 0.2s;
    -ms-transition: linear 0.2s;
    transition: linear 0.2s;
}
.tabs-nav__drag {
    margin: 20px 0 0;
    position: absolute;
    background-image: url(../../../images/Group-233.png);
    height: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
} /* drag */
.tabs-nav__drag.active {
    -webkit-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    transition-timing-function: linear;
}

.tabs-content {
    margin: 0 0;
    position: relative;
    padding-bottom: 20px;
} 
/* .tabs-content:before {
    position: absolute;
    content: '';
    background: white;
    height: 100%;
    width: 100vw;
    top: 0;
    z-index: -1;
    left: calc(calc(1058px - 100vw ) / 2);
} */
/* change overflow to visible if you need */
.tabs-content .tabs-content {
    margin: 0;
}
.tabs-content .tabs-nav {
    font-size: 14px;
}

.tab {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    transition-timing-function: linear;
}
.tab.active {
    position: relative;
    opacity: 1;
}
.tab.slide {
    display: none;
    opacity: 1;
}
.tab.slide.active {
    display: block;
}
.tab.slide.moved {
    display: block;
}

.js-tabs .count {
	cursor:pointer;
    width: 90px;
    height: 90px;
    color: white;
    font-size: 68px;
    font-weight: 700;
    background: transparent linear-gradient(228deg, #90BF51 0%, #38983D 100%) 0% 0% no-repeat padding-box;
    border-radius: 20px;
    margin: auto;
    display: flex;
    font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
    align-items: center;
    justify-content: center;
}
.js-tabs li.tabs-nav__item.js-tabs-item.active .count {
    background: #90c148;
}
.tabs-nav > ul {
    text-align: center;
    display: flex;
    padding-left: 0 !important;
}

.tabs-nav__link {
    padding-left: 0;
    font-weight: 600;
    font-size: 22px;
    display: block;
    padding-top: 16px;
    
    cursor: pointer;
}
.tab-content-box {
    display: flex;
    flex-direction: row;
    max-width: 90%;
    margin: auto;
}

.tab-content-box > div {
    flex: 1;
    padding-left: 25px;
}
.tab-content-box .count {
    opacity: 0.5;
    margin-top: 75px
}

.tabs-wrapper{
    background-color: white;
}
/* animation for "slide" type from animated.css library */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@media (max-width: 1040px) {
    /* .tabs-content:before{
        left: calc(calc(818px - 100vw ) / 2);
    } */
}

@media (max-width: 768px) {
    /* .tabs-content:before{
        left: calc(calc(615px - 100vw ) / 2);
    } */
    .tabs-nav > ul{
        padding-bottom: 0 !important;
    }
    .js-tabs .count {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        font-size: 30px;
    }

    .js-tabs .et_pb_row{
        width: 100% !important;
    }

    .tabs-nav__list{
        padding-bottom: 0;
    }
    .tabs-nav__item:not(:last-child):after {
        width: 13px;
        height: 25px;
        right: -10px;
        top: 12px;
    }
    
    .tabs-nav__link {
        font-size: 16px;
    
    }
}