/* Banner with Explanation */
.full-width{
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    backgroun-size: cover;
    background-repeat: no-repeat;
}
.block1-banner{
    height: 600px;
    background-size: cover;
    position: relative;
    margin-bottom: 50px;
}
.block1-banner .banner-overlay-orange,.block1-banner .banner-overlay-gray{
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner-overlay-orange {
    color: #fff;
    background-color: #141414;
    opacity: 0.5;
}
.banner-overlay-gray {
    color: #fff;
    background-color: #333333;
    opacity: 0.5;
}
.block1-banner .banner-overlay-* .banner-text{
    padding: 100px 0;
}
.banner-overlay-gray  .banner-text,.banner-overlay-orange  .banner-text{
    color: #fff;
    padding: 40px 0;
}
/* Banner with Explanation */

/* Testimonials */

.clients {
    margin: 60px 0;
    color: #333;
}
.clients .title {
    margin-bottom: 40px;
}
.clients .item {
    padding: 10px 0 20px;
    min-height: 100%;
}
.clients .item-logo {
    position: relative;
    margin-bottom: 20px;
}
.clients .item-logo picture {
    text-align: left;
}
.clients .item-logo img {
    max-width: 130px;
    max-height: 45px;
}
.clients .item-logo,
.clients .quote-text,
.clients .company,
.clients .position {
    padding:0 15px;
}
.clients .quote-text {
    position: relative;
    padding: 25px 15px 15px 15px;
    margin-bottom: 20px;
    color: #827e91;
    border-bottom: 1px solid #E0E0E0;
}
.clients .quote-text:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    width: 12px;
    height: 10px;
    background: url(../img/quote.svg) center no-repeat;
    background-size: contain;
}
.clients .company {
    font-size: 18px;
    margin-right: 15px;
}
.clients .owl-carousel .owl-item {
    float: none;
}
.clients .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.clients .owl-carousel .owl-nav {
    display: none;
}
.clients .owl-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}
.clients .owl-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 15px;
    border: 1px solid #ddd;
}
.clients .owl-carousel .owl-dots .owl-dot.active {
    background: #FF971D;
}
.clients .owl-carousel .owl-dots .owl-dot:not(:last-child) {
    margin-right: 10px;
}
@media all and (max-width: 768px) {
    .clients {
        margin-bottom: 50px;
    }
}
@media all and (max-width: 1152px) and (min-width: 769px) {
    .clients {
        margin-bottom: 60px;
    }
}
/* Testimonials */

/* Picture with Open-Close Features */
.features_with_pic {
    height: 85vh;
    background-size: cover;
    position: relative;
    padding: 80px 0 80px 0;
}
.features_with_pic .list_of_features {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
body .features_with_pic .list_of_features .feature_item{
    height: auto;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
}
.features_with_pic .inner{
    height: 100%;
}
.features_with_pic .list_of_features .feature_item{
    color: #000000;
    background: #FFF;
    padding: 65px 50px;
    background-image: url(../img/arrow_right.svg);
    background-repeat: no-repeat;
    background-position: center right 50px;
    cursor: pointer;
    height: 158px;
    margin-bottom: 30px;
    transition: background-color 0.3s ease-in-out;
    max-height: 158px;
}
.features_with_pic.list_items_less4 .list_of_features{
    justify-content: flex-start;
}
body .features_with_pic:not(.list_items_more) .list_of_features .feature_item{
    transition: all 0.4s ease-in-out;
}
body .features_with_pic:not(.list_items_more) .list_of_features .feature_item.feature_item_hover {
    flex-grow: 2;
}
body .features_with_pic.list_items_more .list_of_features .feature_item{
    padding: 35px 50px;
}
.features_with_pic.list_items_more{
    height: auto;
}
.features_with_pic .list_of_features .feature_item.feature_item_hover{
    color: #ffffff;
    background-color: #ff971d;
    background-image: url(../img/arrow_right_white.svg);
    background-repeat: no-repeat;
    background-position: center right 30px;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.features_with_pic .list_of_features .feature_item .feature_item_title {
    font-size: 26px;
    font-weight: 600;
}
.features_with_pic .list_of_features .feature_item .feature_item_description{
    padding: 10px 20px 0 0;
    display: none;
}
.features_with_pic .list_of_features .feature_item.feature_item_hover .feature_item_description{
    display: block;
}
@media all and (max-width: 1366px),
(max-height: 768px) {
    .features_with_pic{
        padding: 60px 0 30px 0;
    }
    .features_with_pic .list_of_features .feature_item, .features_with_pic .list_of_features .feature_item.no_description{
        padding: 35px 50px;
    }
    .features_with_pic .list_of_features .feature_item .feature_item_title{
        font-size: 20px;
    }
    .features_with_pic .list_of_features .feature_item .feature_item_description{
        font-size: 14px;
    }
}
@media all and (max-width: 1078px) {
    .features_with_pic .list_of_features{
        width: 70%;
    }
}
@media all and (max-width: 768px) {
    .features_with_pic .list_of_features{
        width: 100%;
    }
}
/* Picture with Open-Close Features */

/* Feature Video */
.feature_video{
    display: table;
    clear: both;
}
.feature_video_container {
    display: table-cell;
    vertical-align: middle;
    width: calc(100% - 600px);
    margin: 0;
    height: 600px;
}
#feature_video {
    width: 100%;
}
.video_description {
    display: table-cell;
    vertical-align: middle;
    width: 600px;
    margin: 0;
    padding: 0 100px;
}
/* Feature Video */

/*Features list in a carousel*/
.feature-carousel-for {
    position: relative;
    margin-bottom: 20px;
}
.feature-carousel-for .slick-prev{
    display: block;
    height: 38px;
    width: 38px;
    border: 1px solid #ddd;
    font-size: 0;
    background: url('../img/arrow_left_black.svg') no-repeat center;
    position:absolute;
    top:50%;
    margin-top:-19px;
    left:-20%;
}
.feature-carousel-for .slick-next{
    display: block;
    height: 38px;
    width: 38px;
    font-size: 0;
    border: 1px solid #ddd;
    background: url('../img/arrow_right_black.svg') no-repeat center;
    position:absolute;
    top:50%;
    margin-top:-19px;
    right:-20%;
}
.feature-carousel-nav .slick-list{
    padding: 100px 120px!important;
}
.feature-carousel_item{
    padding:20px;
}
.feature-carousel_item.slick-current{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.feature-carousel_item .feature-carousel_item_title{
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin:10px 0;
}
.feature-carousel-nav.slick-dotted .slick-dots {
    margin-top: 25px;
    text-align: center;
}
.feature-carousel-nav.slick-dotted .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 15px;
    border: 1px solid #ddd;
    font-size: 0;
}
.feature-carousel-nav.slick-dotted .slick-dots li button{
    display: none;
}
.feature-carousel-nav.slick-dotted .slick-dots li.slick-active {
    background: #FF971D;
}
.feature-carousel-nav.slick-dotted .slick-dots li:not(:last-child) {
    margin-right: 10px;
}
/*Features list in a carousel*/

/*Product Presentation*/
.product-presentation-tabs{
    display: block;
    position: relative;
    padding: 25px 0;
    margin-top: 60px;
    margin-bottom: 60px;
    height: 100vh;
    z-index: 1;
}
.product-presentation-tabs .product-presentation-overlay{
    position: absolute;
    display: block;
    height: 100vh;
    width: 100%;
    margin-top: -25px;
    opacity: 0.9;
}
.product-presentation-tabs .tabs{
    text-align: center;
    position: relative;
    z-index: 2;
}
.product-presentation-tabs .tabs li{
    display: inline-block;
    vertical-align: top;
    height: 50px;
    padding: 20px 10px;
}
.product-presentation-tabs .tabs li a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
.product-presentation-tabs .tabs li.active a{
    text-decoration: underline;
    font-weight: 600;
}
.product-presentation-tabs .tab-content.slick-initialized.slick-slider{
    display: none;
    margin-top: 25px;
}
.product-presentation-tabs .tab-content.slick-initialized.slick-slider.active{
    display: block;
}
.product-presentation-tabs .product-presentation-item {
    text-align: center;
    color: #fff;
    opacity: 0.5;
}
.product-presentation-tabs .product-presentation-item.slick-current.slick-active.slick-center
{
    opacity: 1;
}
.product-presentation-tabs .product-presentation-item .product-presentation-item-title{
    height:60px;
}
.product-presentation-tabs .product-presentation-item .product-presentation-item-title h3{
    margin-bottom: 10px;
    font-weight: 600;
}
.product-presentation-tabs .product-presentation-item .product-presentation-item-title p {
    font-size:12px;
}
.product-presentation-tabs .product-presentation-item img{
    margin: 0 auto;
}
.product-presentation-tabs .product-presentation-item .product-characteristics{
    text-align: center;
    margin: 25px auto;
    height: 35px;
}
.product-presentation-tabs .product-presentation-item .product-characteristic{
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
}
.product-presentation-tabs .product-presentation-item .product-characteristic .product-characteristic-value{
    font-weight: 600;
    text-transform: uppercase;
}
.product-presentation-tabs .product-presentation-item .product-characteristic .product-characteristic-name{
    font-size: 12px;
}
.product-presentation-tabs .product-presentation-item .tn-banner-button{
    margin-top:0px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
}
.product-presentation-tabs .product-presentation-item a {
    border-color: #FF971D;
    background-color: #FF971D;
    color: #ffffff !important
}
.product-presentation-tabs .slick-dotted .slick-dots {
    margin-top: 25px;
    text-align: center;
}
.product-presentation-tabs .slick-dotted .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 15px;
    border: 1px solid #ddd;
    font-size: 0;
    background-color: #fff;
}
.product-presentation-tabs .slick-dotted .slick-dots li button{
    display: none;
}
.product-presentation-tabs .slick-dotted .slick-dots li.slick-active {
    background: #FF971D;
    border: 1px solid #ddd
}
.product-presentation-tabs .slick-dotted .slick-dots li:not(:last-child) {
    margin-right: 10px;
}
.product-presentation-tabs .slick-prev{
    display: block;
    height: 38px;
    width: 38px;
    border: 1px solid #ddd;
    font-size: 0;
    background: url('../img/arrow_left_black.svg') no-repeat center;
    position:absolute;
    top:40%;
    margin-top:-19px;
    left:30%;
}
.product-presentation-tabs .slick-next{
    display: block;
    height: 38px;
    width: 38px;
    font-size: 0;
    border: 1px solid #ddd;
    background: url('../img/arrow_right_black.svg') no-repeat center;
    position:absolute;
    top:40%;
    margin-top:-19px;
    right:30%;
}
/*Product Presentation*/
