/* General *************************************************/

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}



/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}



/**
 * ----------------------------------------
 * animations
 * ----------------------------------------
 */

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.fade-in-right {
	-webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


/* PAGE BANNER *******************************************************/
.page-banner-slider,
.page-banner-slider .slide{
    height:560px;
}
.page-banner-slider .slide{
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    padding:20px 0;
}
.page-banner-slider .slide0{
    background-image: url('../img/banners/home-slide0-bg.jpg');
}
.page-banner-slider .slide1{
    background-image: url('../img/banners/home-slide1-bg.jpg');
}
.page-banner-slider .slide2{
    background-image: url('../img/banners/home-slide2-bg.jpg');
}
.page-banner-slider .slide2.slide_bf{
    background-image: url('../img/banners/home-slide-bf-bg.jpg') !important;
}
.page-banner-slider .slide2.slide_winter24{
    background-image: url('../img/banners/home-slide-winter24-bg.jpg') !important;
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */

.page-banner-slider .slide .slide-caption{
    width:100%;
    max-width:880px;
    margin:30px auto 0;
    background:rgba(0, 161, 169, 0.7);
    padding:16px 30px;
    color:#fff;
    opacity:0;
}
.page-banner-slider.right .slide .slide-caption{
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
      animation-delay: 0.5s;
}
.page-banner-slider.left .slide .slide-caption{
    -webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
      animation-delay: 0.5s;
}

.page-banner-slider .slide .slide-caption > h2{
    font-size:34px;
    line-height:1.1;
    color:#fff;
    font-weight:500;
    margin:0 0 15px;
    text-align:center;
}
.page-banner-slider .slide .slide-caption .caption-body .image,
.page-banner-slider .slide .slide-caption .caption-body .content{
    float:left;
}
.page-banner-slider .slide .slide-caption .caption-body .image{
    width:29%;
    position:relative;
    height:255px;
}
.page-banner-slider .slide2 .slide-caption .caption-body .image{
    width:50%;
}

.page-banner-slider .slide .slide-caption .caption-body .image img{
    position:absolute;
    top:0;
    left:0;
    height:auto;
    max-height:100%;
    max-width:100%;
    width:auto;
}
.page-banner-slider .slide1 .slide-caption .caption-body .image img{
    max-width:1000px;
    width:auto;
    left:12%;
}
.page-banner-slider .slide .slide-caption .caption-body .image .badge{
    position:absolute;
    padding:6px 20px;
    z-index:2;
    text-align:center;
}
.page-banner-slider .slide2 .slide-caption .caption-body .image .badge{
    font-size:20px;
    top:48px;
    left:140px;
}
.page-banner-slider .slide .slide-caption .caption-body .image .badge .old-price{
    display:block;
    position:relative;
    font-size:16px;
    line-height:1;
}
.page-banner-slider .slide .slide-caption .caption-body .image .badge .old-price:before{
    content:'';
    top:50%;
    left:0;
    right:0;
    border-top:1px solid #fff;
    height:0;
    position:absolute;
}
.page-banner-slider .slide1 .slide-caption .caption-body .image .badge{
    font-size:36px;
    font-weight:500;
    line-height:1;
    top: 25px;
    right: 15px;
    
}
.page-banner-slider .slide .slide-caption .caption-body .image .badge:before{
    content:'';
    position: absolute;
    top: 4px;
    bottom: 2px;
    left: 0;
    right: 0;
    z-index: 1;
    border: 2px solid transparent;
    background: #ff9000;
    -webkit-transform: perspective(110px) rotateX(-20deg);
    border-radius: 4px;
    overflow: hidden;
    outline: 1px solid transparent; 
}
.page-banner-slider .slide .slide-caption .caption-body .image .badge span{
    position:relative;
    z-index:2;
    display:inline-block;
    transform: translateZ(5px);
}
.page-banner-slider .slide .slide-caption .caption-body .content{
    width:71%;
    position:relative;
    z-index:2;
}
.page-banner-slider .slide2 .slide-caption .caption-body .content{
    width:50%;
    padding-left:30px;
}
.page-banner-slider .slide0 .slide-caption .caption-body .content{
    
    padding-left:30px;
}
.page-banner-slider .free-shipping {
    height:31px;
    line-height: 31px;
    margin: 22px 0 27px;
    
    font-size:20px;
    font-weight:600;
    
    text-align: left !important;
    display:inline-block;
    
}
.page-banner-slider .slide0 .slide-caption .caption-body .content .btn.btn-white {
    width: 165px;
    text-align: center;
}
.page-banner-slider .free-shipping img {
    margin-right: 7px;
    height: 100%;
    width: auto;
    float: left;
}

.page-banner-slider .slide .slide-caption .caption-body .content p{
    line-height:1.65;
}
.page-banner-slider .slide .slide-caption .caption-body .content .features{
    padding-bottom:20px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .features .item{
    display:inline-block;
    line-height:45px;
    margin-right:35px;
    position:relative;
    font-size:20px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .features .item:before{
    font-family: 'hedone-icons';
    content: "\e923";
    font-size:45px;
    position:absolute;
    top:0;
    left:0;
}
.page-banner-slider .slide .slide-caption .caption-body .content .features .item .text{
    position:relative;
    z-index:2;
}
.page-banner-slider .slide .slide-caption .caption-body .content .features .item .text .nr{
    width:45px;
    text-align:center;
    display:inline-block;
    margin-right:5px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .bottom > .text{
    margin-right:35px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .bottom > div.text{
    margin-bottom:10px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .bottom .price{
    font-weight:900;
    font-size:40px;
}
.page-banner-slider .slide .slide-caption .caption-body .content .bottom .price sup{
    font-weight:400;
    font-size:20px;
    line-height:1;
}

.page-banner-slider .owl-nav .owl-prev,
.page-banner-slider .owl-nav .owl-next{
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 10;
    width: 113px;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.page-banner-slider .owl-nav .owl-prev:hover,
.page-banner-slider .owl-nav .owl-next:hover{
    opacity:1;
}
.page-banner-slider .owl-nav .owl-prev span,
.page-banner-slider .owl-nav .owl-next span{
    display:none;
}
.page-banner-slider.owl-carousel .owl-nav button.owl-prev{
    left:0;
    background: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
}
.page-banner-slider.owl-carousel .owl-nav button.owl-next{
    right:0;
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 );
}
.page-banner-slider .owl-nav .owl-prev:before,
.page-banner-slider .owl-nav .owl-next:before{
    content:'';
    height:42px;
    width:93px; 
    display:block;
}
.page-banner-slider .owl-nav .owl-prev:before{
    background-image:url('../img/icon-img/icon-left.png');
    margin-left:20px;
}
.page-banner-slider .owl-nav .owl-next:before{
    background-image:url('../img/icon-img/icon-right.png');
    margin-right:20px;
}



.page-banner-slider .owl-dots{
    bottom:15px;
    position:absolute;
    left:0;
    right:0;
    text-align:center;
}
.page-banner-slider .owl-dots button{
    width:18px;
    height:18px;
    border-radius:100%;
    border:2px solid #fff;
    margin:0 18px;
    display:inline-block;
    position:relative;
}

.page-banner-slider .owl-dots button + button:before{
    content:'';
    width:28px;
    height:4px;
    background:#fff;
    position:absolute;
    top:50%;
    margin-top:-2px;
    right:20px;
    opacity:1;
    transition: all 0.3s;
    display:block;
}

.page-banner-slider .owl-dots button.active ~ button:before{
    opacity:0.5;
}
.page-banner-slider .owl-dots button span{
    width:6px;
    height:6px;
    background:#fff;
    border-radius:100%;
    font-size:0;
    margin:4px; 
    padding:0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: 0.15s ease;
    display:inline-block;
}
.page-banner-slider .owl-dots button.active span{
    -webkit-transform: scale(1);
    transform: scale(1);
}
@media (max-width: 1199px){
    .page-banner-slider .slide .slide-caption{
        max-width: 700px;
    }
    .page-banner-slider .slide .slide-caption h2{
        font-size: 24px;
    }
    .page-banner-slider .slide1 .slide-caption .caption-body .image img{
        left:0;
    }
    .page-banner-slider .slide2 .slide-caption .caption-body .image .badge{
        top: 30px;
        left: 90px;
    }
}
@media (max-width: 991px){
    .page-banner-slider .slide{
        padding-right:20px;
        padding-left:20px;
    }
    .page-banner-slider .owl-nav{
        display:none;
    }
}
@media (max-width: 767px){
    .page-banner-slider .slide{
        padding-left:10px;
        padding-right:10px;
        background-position: 75% center;
    }
    .page-banner-slider .slide0 {
        background-position: 15% center;
    }
    .page-banner-slider .slide .slide-caption h2{
        font-size:20px;
        margin-left: auto;
    margin-right: auto;
    }
    .page-banner-slider .slide .slide-caption{
        padding-left:10px;
        padding-right:10px;
        padding-bottom:15px;
        margin-top:0;
        text-align:center;
    }
    .page-banner-slider .slide .slide-caption .caption-body .image{
        width:260px;
        height:130px;
        margin:0 auto;
        float:none;
    }
    .page-banner-slider .slide .slide-caption .caption-body .image img{
        position:static;
        margin-left:80px;
    }
    .page-banner-slider .slide2 .slide-caption .caption-body .image img{
        margin-left:auto;margin-right: auto;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .features{
        padding-bottom:10px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .features .item{
        font-size:14px;
        line-height:30px;
        margin:0 5px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .features .item:before{
        font-size: 30px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .features .item .text .nr{
        width:30px;
    }
    .page-banner-slider .slide1 .slide-caption .caption-body .image .badge{
        font-size:16px;
        top: 10px;
        right: 50px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content{
        width:100%;padding-left: 0;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content p {
        line-height: 1.4;
        font-size: 16px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .bottom > .text{
        display:block;
        margin-bottom:15px;
        margin-right:0;
        text-align:center;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .bottom .price{
        font-size:30px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .bottom .price sup{
        font-size:16px;
    }
    .page-banner-slider .slide .slide-caption .caption-body .content .bottom .btn{
        font-size:16px;
        line-height:20px;
        padding-left:15px;
        padding-right:15px;
    }
    
    .page-banner-slider .slide0 .slide-caption .caption-body .content {
        padding-left:0;
    }
}
@media (max-width: 359px){
    .page-banner-slider .slide .slide-caption .caption-body .content p{
        font-size:14px;
    }
    
    
}



 /* Section Intro **************************************************/
.section-intro{
    padding:55px 0 90px;
}
.section-intro .section-header{
    margin-bottom:40px;
}
.intro-img-sprite .images *,
.intro-img-sprite .text{
    position:absolute;
}
.intro-img-sprite{
    position:relative;
    height:410px;
    width:740px;
}
.intro-img-sprite .cafea1{
    left: 21.6%;
    bottom: 14%;
    z-index: 1;
    width:63%;
}
.intro-img-sprite .border{
    top: 5.12%;
    left: -4.18%;
    z-index: 2;
    width: 99%;
}
.intro-img-sprite .cafea2{
    bottom:0;
    left:0;
    z-index: 3;
    width: 62%;
}
.intro-img-sprite .text{
    left: 54%;
    top: 15%;
    font-size: 20px;
    line-height:1.2;
    color: #041d40;
    width: 225px;
    z-index:5;
}
.intro-img-sprite .text p{
    margin-bottom:20px;
    font-size:17px;
    line-height:1.4;
}


.intro-left,
.intro-right{
    width:50%;
    float:left;   
}
.intro-content-boxes{
    margin-top:20px;
}
.intro-content-boxes .item{
    display: inline-block;
    vertical-align: top;
    margin-right: -0.25em;
    width: 33.333333%;
    color: #779da6;
    font-weight: 500;
}
.intro-content-boxes .item:after{
    content:'';
    width:100%;
    display:table;
    clear:both;
}
.intro-content-boxes .item .item-icon,
.intro-content-boxes .item .item-text{
    float:left;
}
.intro-content-boxes .item .item-icon{
    width:70px;
}
.intro-content-boxes .item .item-icon i{
    font-size:60px;
}
.intro-content-boxes .item .item-text{
    font-size:18px;
    width: calc( 100% - 70px);
    margin-top:6px;
}
.intro-content-boxes .item .item-text p{
    margin:0;
}

.lp-promo-slider-container{
    width:100%;
    background:#fff;
    border-radius:10px;
    -webkit-box-shadow: 0 0 50px 25px rgba(0,0,0,0.08);
    box-shadow: 0 0 50px 25px rgba(0,0,0,0.08);
    margin-top:100px;
}
.lps-header{
    border-bottom:1px solid #e2e6ea;
    text-align:center;
    font-weight:500;
    font-size:20px;
    color:#00a1a9;
    position:relative;
}
.prh-headline{
    position:relative;
    padding:10px 0;
    display:inline-block;
}
.lps-header .next,
.lps-header .prev{
    cursor:pointer;
    position:absolute;
    top:0;
    bottom:0;
}
.lps-header .next{
    right:0;
}
.lps-header .prev{
    left:0;
}
.lps-header .next i,
.lps-header .prev i{
    font-size:24px;
    line-height:24px;
    display:inline-block;
    padding:10px 20px;
}
.prom-item{
    text-align:center;
    padding:0 10px;
    position:relative;
    padding-bottom:20px;
}
.prom-item .badge{
    position:absolute;
    background:#ff9000;
    color:#fff;
    font-size:16px;
    font-weight:700;
    left:50%;
    transform: translatex(-50%);
    line-height:25px;
    padding:0 10px;
    background-clip: content-box;
    text-align:center;
    top:10px;
}
.prom-item .badge span{
    position:relative;
    z-index:2;
}
.prom-item .badge:before,
.prom-item .badge:after{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    z-index:1;
}
.prom-item .badge:before{
    border-radius:4px 0 0 4px ;
    right:9px;
    left:0;
    -moz-transform: skewX(10deg);
    -webkit-transform: skewX(10deg);
    -o-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
    background:#ff9000;
}
.prom-item .badge:after{
    border-radius:0 4px 4px 0 ;
    right:0;
    left:9px;
    -moz-transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    background:#ff9000;
}


.prom-item .prom-img{
    padding-top:15px;
    height:220px;
}
.prom-item .prom-img img{
    width:auto;
    max-width:100%;
    max-height:100%;
    display:inline-block;
}
.prom-item .prom-body{
    padding-top:5px;
}
.prom-item .prom-body .prom-title{
    color: #1a353b;
    font-size: 18px;
    margin: 0 0 5px;
    height:40px;
    overflow:hidden;
    font-weight: 400;
}
.prom-item .prom-body .price-sm{
    color: #00a1a9;
    font-size: 30px;
    margin-bottom:5px;
    white-space: nowrap;
}
.prom-item .prom-body .price-sm .price-old{
    font-size:20px;
    position:relative;
}
.prom-item .prom-body .price-sm .price-old:before{
    content:'';
    position:absolute;
    top:50%;
    width:100%;
    height:0px;
    border-top:2px solid #00a1a9;
    margin-top:-1px;
}
.prom-item .prom-body .price-sm .price-old .decim{
    font-size:16px;
    position:relative;
    top:-4px;
}
.prom-item .prom-body .price-sm .price-old .currency{
    font-size:16px;
    display:none;
}
.prom-item .prom-body .price-sm .price-current .decim{
    font-size:18px;
    position:relative;
    top:-8px;
}
.prom-item .prom-body .price-sm .price-current .currency{
    font-size:24px;
}
.prom-item > .btn{
    white-space: nowrap;
}
@media (max-width: 1459px){
    .intro-img-sprite .cafea1{
        left:16.6%;
        bottom:31%;
        width:51%;
    }
    .intro-img-sprite .cafea2{
        bottom:12%;
        width:50%
    }
    .intro-img-sprite .border{
        top:5.12%;
        left:-4.18%;
        width:85%;
    }
    .intro-img-sprite .text{
        left:44%;
        top:10%;
        font-size:16px;
        width:210px;
    }
    .intro-img-sprite .text p{
        font-size:16px;
        line-height:1.35;
    }
    
    .intro-content-boxes .item .item-icon i{
        font-size:50px;
    }
    .intro-right{
        padding:0 0 0 50px;
    }
    
    
    .intro-content-boxes .item .item-text{
        font-size:16px;
    }
    
    .prom-item > .btn{
        font-size:16px;
        padding-left:20px;
        padding-right:20px;
    }
}
@media (max-width: 1199px){
    .intro-left, 
    .intro-right{
        width:100%;
        float:none;
    }
    .intro-img-sprite{
        width:100%;
        max-width:740px;
        margin:0 auto;
    }
    .intro-img-sprite .border{
        left: 7.82%;
    }
    .intro-img-sprite .text{
        left:56%
    }
    .intro-img-sprite .cafea2{
        left:10%;
    }
    .intro-img-sprite .cafea1{
        left:27%
    }
    .intro-content-boxes .item{
        text-align:center;
    }
    .intro-content-boxes .item .item-icon,
    .intro-content-boxes .item .item-text{
        display:block;
        width:100%;
    }
    .intro-content-boxes{
        max-width:760px;
        margin-left:auto;
        margin-right:auto;
    }
    .intro-right{
        padding-left:0;
    }
}
@media (max-width: 991px){
    .section-intro{
        padding-top:10px;
    }
    .lp-promo-slider-container{
        margin-top:70px;
    }
    .intro-content-boxes .item .item-text{
        font-size:16px;
    }
}
@media (max-width: 767px){
    .section-intro{
        padding-bottom:30px;
    }
    .intro-img-sprite{
        height:auto;
    }
    .intro-img-sprite .images{
        width:100%;
        padding-bottom:50%;
        margin-bottom:30px;
        position:relative;
    }
    .intro-img-sprite .cafea1{
        left: 42%;
        bottom: 20%;
    }
    .intro-img-sprite .cafea2{
        bottom:0;
        left:21%;
    }
    .intro-img-sprite .text{
        position:static;
        width:100%;
        text-align:center;
        font-size:16px;
    }
}
@media (max-width: 639px){
    .intro-img-sprite .cafea1{
        width:60%
    }
    .intro-img-sprite .cafea2{
        width:60%;
    }
}


/* Caffee boxes ********************************************/
.section-coffe-boxes{
    padding-bottom:75px;
    background-image: url('../img/plantatie-bg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    position:relative;
    z-index:2;
}
.cfsec-items-container{
    max-width:1180px;
    margin:0 auto;
}
.cfsec-item{
    float:left;
    width:33.333333%;
    padding:0 35px;
}

.cfsec-item{

}
.cfsec-item-inner{
   border-radius:10px;
   background:#fff;
   -webkit-box-shadow: 0 0 43px 21px rgba(0,0,0,0.05);
   box-shadow: 0 0 43px 21px rgba(0,0,0,0.05);
   padding:20px 25px 0;
   text-align:center;
   min-height: 260px;
   position:relative;
}
.cfsec-item-inner h3{
    margin:0;
    color:#ff9000;
    font-size:30px;
    margin-bottom:15px;
}
.cfsec-item-inner h3 p{
    display:inline;
}
.cfsec-item-inner > .text{
    min-height:80px;
    margin-bottom:15px;
}
.cfsec-item-inner > .text p{
    line-height:1.45;
    color:#000;
    margin:0;
}
.cfsec-item-inner .btn{
    width:150px;
    text-align:center;
    position:absolute;
    bottom:-14px;
    margin:0 auto;
    left:0;
    right:0;
}
@media(max-width: 1199px){
    .cfsec-item{
        padding: 0 20px;
    }
    .cfsec-item-inner{
        padding-left: 15px;
        padding-right: 15px;
    }
    .cfsec-item-inner{
        min-height:210px;
    }
    .cfsec-item-inner h3{
        font-size: 20px;
    }
    .cfsec-item-inner .text p{
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .section-coffe-boxes{
        background: none;
    }
    .cfsec-item{
        width:100%;
        padding:0 10px;
        margin-bottom:30px;
    }
    .section-coffe-boxes{
        padding-bottom: 30px;
        background: #017277;
        padding-top: 30px;
    }
    .cfsec-item-inner .text{
        min-height:1px;
    }
}


/* Echipamente Section ***********************************************/
.equipment-section{
    margin-top:-152px;
    padding:170px 0 80px; 
    background: rgb(0,117,123);
    background: -moz-linear-gradient(45deg, rgba(0,117,123,1) 0%, rgba(0,161,169,1) 100%); 
    background: -webkit-linear-gradient(45deg, rgba(0,117,123,1) 0%,rgba(0,161,169,1) 100%);
    background: linear-gradient(45deg, rgba(0,117,123,1) 0%,rgba(0,161,169,1) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00757b', endColorstr='#00a1a9',GradientType=1 ); 
}
.equipment-section .section-header{
    margin-bottom:30px;
}
.eq-items-container .item{
    width: 50%;
    float: left;
    text-align: center;
    color:#fff;
}
.eq-items-container .item-img{
    position:relative;
    height:440px;
}
.eq-items-container .item .circle{
    width:440px;
    height:440px;
    position:absolute;
    top: 50%;
    margin-top:-220px;
    left:50%;
    margin-left:-220px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:100%;
    z-index:1;
}
.eq-items-container .item .circle .circle-sm{
    background:rgba(61, 194, 207, 0.6);
    width:320px;
    height:320px;
    position:absolute;
    top:60px;
    left:60px;
    border-radius:100%;
}

.eq-items-container .item-img img{
    position:relative;
    z-index:2;
    margin-top:50px;
}

.eq-items-container .item-body{
    padding:10px 50px 0;
}
.eq-items-container .item-body h2{
    margin:0 0 10px;
    font-size:30px;
}
.eq-items-container .item-body .text p{
    line-height:1.45;
    margin-bottom:40px;
}

@media (max-width: 1199px){
    .eq-items-container .item-body h2{
        font-size:28px;
    }
    .eq-items-container .item-body .text p{
        font-size:16px;
    }
}
@media (max-width: 991px){
    .eq-items-container .item-body h2{
        font-size:20px;
    }
    .eq-items-container .item-img{
        height:350px;
    }
    .eq-items-container .item .circle{
        width: 320px;
        height:320px;
        margin-top: -160px;
        margin-left: -160px;
    }
    .eq-items-container .item .circle .circle-sm{
        width:280px;
        height:280px;
        top:20px;
        left:20px;
    }
    .eq-items-container .item-img img{
        max-width:100%;
        margin-top:0;
        top:50%;
        transform:translateY(-50%);
    }
}
@media (max-width: 767px){
    .equipment-section{
        padding:20px 0 40px;
        margin-top:0;
    }
    .eq-items-container .item{
        width:100%;
        float:none;
        margin-bottom: 30px;
    }
    .eq-items-container .item + .item{
        margin-bottom:0;
    }
    .eq-items-container .item-body{
        padding-left:10px;
        padding-right:10px;
    }
}

/* Solutions Section *********************************************/
.solutions-section .item{
    position: relative;
    overflow: hidden;
    min-height:768px;
    background: #f4f4f4;
}
.solutions-section .item.item2{
    background:#fff;
}
.solutions-section .item .item-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.solutions-section .item.item1 .item-img{
    background-image: url('../img/landing-solsection-bg1.jpg');
}
.solutions-section .item.item2 .item-img{
    background-image: url('../img/landing-solsection-bg2.jpg');
}
.solutions-section .item.right .item-img{
    left:50%;
    right:0;
}
.solutions-section .item .item-body{
    width:50%;
    float:right;
    padding:65px 20px 80px 80px;
}
.solutions-section .item.right .item-body{
    float:left;
    padding:65px 20px 80px 0;
}
.solutions-section .item.item2 .item-body{
    padding-top:105px;
}
.solutions-section .item h2{
    margin:0 0 40px;
    font-size:34px;
    color:#1a353b;
    font-weight:400;
}
.solutions-section .item h2 p{
    margin:0;
}
.solutions-section .item.item2 h2{
    color:#ff9000;
    margin-bottom:5px;
}
.solutions-section .item.item2 h2 p{
    display:inline;
    margin:0;
}

.solutions-section .item .row-icon i{
    font-size:65px;
    color:#ff9000;
}
.solutions-section .item .row{
    background:#fff;
    margin-bottom:40px;
    -webkit-box-shadow: 0 12px 20px 0 rgba(0,0,0,0.08);
    box-shadow: 0 12px 20px 0 rgba(0,0,0,0.08);
    margin-right:-20px;
    margin-left:-20px;
    position:relative;
    left:-130px;
    padding:28px 45px 28px 40px;
}
.solutions-section .item .row:after{
    content:'';
    width:100%;
    display:table;
    clear:both;
}
.solutions-section .item .row > *{
    float:left;
}
.solutions-section .item .row-icon{
    margin-right: 30px;
}
.solutions-section .item .row-text{
    width:290px;
}

.solutions-section .item .row-text h5{
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #1a353b;
    margin-top:5px;
}
.solutions-section .item .row-text h5 p{
    display:inline;
    margin:0;
}
.solutions-section .item .row .btn{
    margin-top:12px;
}


.solutions-section .item .item-body .text p{
    margin-bottom:0;
    line-height:1.45;
}
.solutions-section .item .features{
    margin-top:45px;
}
.solutions-section .item .ft-item{
    display:inline-block;
    width:50%;
    vertical-align:top;
    margin-right:-0.25em;
} 
.solutions-section .item .ft-item:after{
    content:'';
    display:table;
    width:100%;
    clear:both;
}
.solutions-section .item .ft-icon,
.solutions-section .item .ft-text{
    float:left;
}
.solutions-section .item .ft-icon{
    width:75px;
}
.solutions-section .item .ft-icon i{
    color:#00a1a9;
    font-size:75px;
}
.solutions-section .item .ft-text{
    width:calc(100% - 75px);
    padding:20px 30px 35px 12px;
    line-height:1.45;
}
@media (max-width: 1460px){
    .solutions-section .item h2{
        font-size:36px;
    }
    .solutions-section .item .item-body{
        padding-left:50px;
    }
    .solutions-section .item .row{
        left:-100px;
        padding-left:30px;
        padding-right:30px;
    }
    .solutions-section .item .row-text{
        width:210px;
    }
    .solutions-section .item .row-text h5{
        font-size:18px;
        margin-top:14px;
    }
    
    .solutions-section .item.item2 .item-body{
        padding-top:65px;
    }
    .solutions-section .item .ft-text{
        font-size:16px;
    }
}
@media (max-width: 1199px){
    .solutions-section .item{
        min-height:660px;
    }
    .solutions-section .item h2{
        font-size:28px;
    }
    .solutions-section .item .row{
        padding:20px;
        margin-right:-70px;
        left:-75px;
    }
    .solutions-section .item .row-text{
        width:200px;
    }
    .solutions-section .item .row-text h5{
        font-size:18px;
        margin-top:2px;
    }
    .solutions-section .item .row-icon{
        margin-right:20px;
    }
    .solutions-section .item .row-icon i{
        font-size:48px;
    }
    .solutions-section .item .ft-icon, 
    .solutions-section .item .ft-text{
        float:none;
    }
    .solutions-section .item .ft-text{
        width:100%;
        padding-right:20px;
    }
}
@media (max-width: 991px){
    .solutions-section .item{
        min-height:1px;
    }
    .solutions-section .item h2{
        text-align:center;
        padding-top:40px;
        color:#fff;
    }
    .solutions-section .item .item-body{
        width:100%;
        padding:0 0 30px;
        position:relative;
        z-index:2;
    }
    .solutions-section .item .item-img{
        left:0;
        right:0;
    }
    .solutions-section .item.right .item-img{
        display:none;
    }
    .solutions-section .item .item-img:before{
        content:'';
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        background:rgba(0, 0, 0, 0.6);
    }
    .solutions-section .item .row{
        margin:0 0 30px;
        left:0;
    }
    .solutions-section .item .row .btn{
        float:right;
        margin-top:2px;
    }
    .solutions-section .item.item2 .item-body{
        padding-right:0;
        padding-top:10px;
        padding-bottom:30px;
        text-align:center;
    }
    .solutions-section .item .ft-item{
        padding-left:10px;
        padding-right:10px;
    }
    .solutions-section .item .ft-icon{
        width:100%;
    }
}
@media (max-width: 639px){
    .solutions-section .item h2{
        letter-spacing:-0.5px;
        font-size:24px;
    }
    .solutions-section .item .item-body p{
        font-size:16px;
        display:inline;
    }
    .solutions-section .item .item-body p br{
        display:none;
    }
    .solutions-section .item .row{
        text-align:center;
        max-width: 230px;
        margin-left: auto;
        margin-right:auto;
    }
    .solutions-section .item .row > *,
    .solutions-section .item .row .btn{
        float:none;
    }
    .solutions-section .item .row-icon{
        margin-right:0;
        margin-bottom:10px;
    }
    .solutions-section .item .row-text{
        width:100%;
        margin-bottom:10px;
    }
    .solutions-section .item .ft-text{
        padding-right:0;
        padding-left:0;
        font-size:15px;
    }
}



/* Tstimonial Section *************************************************/
.testimonials-section{
    padding:30px 0 30px;
    background: rgb(61,194,207);
    background: -moz-linear-gradient(45deg, rgba(61,194,207,1) 0%, rgba(0,140,147,1) 100%); 
    background: -webkit-linear-gradient(45deg, rgba(61,194,207,1) 0%,rgba(0,140,147,1) 100%); 
    background: linear-gradient(45deg, rgba(61,194,207,1) 0%,rgba(0,140,147,1) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3dc2cf', endColorstr='#008c93',GradientType=1 ); 
}
.testimonials-section .section-header{
    margin-bottom:60px;
}
.lp-testimonials-slider-container{
    position:relative;
}
.lp-testimonials-slider-container .tst-slider-bg{
    position:absolute;
    z-index:1;
    top:0;
    bottom:50px;
    left:50%;
    right:-10%;
    background: #1a353b;
    border-radius:10px;
    -moz-transform: skewX(5deg);
    -webkit-transform: skewX(5deg);
    -o-transform: skewX(5deg);
    -ms-transform: skewX(5deg);
    transform: skewX(5deg);
}
.lp-testimonials-slider-container .tst-slider-bg:after{
    content:'';
    position:absolute;
    width:123px;
    height:93px;
    top:40px;
    left:20px;
    background-image: url('../img/double-quotes.png');
    background-repeat: no-repeat;
    background-position:center center;
    opacity:0.2;
}
.lp-testimonials-slider-container .lp-testimonials-slider{
    position:relative;
    z-index:2;
}

.lp-testimonials-slider .owl-item{
    animation-duration: 0s !important;
}
.lp-testimonials-slider .tst-slide{
    height:auto;
    min-height:500px;
}
.tst-slide-half{
    float:right;
    width:50%;
    position:relative;
}
.tst-slide-half:first-child{
    padding:140px 20px 70px 120px;
}
.tst-slide-half + .tst-slide-half{
    text-align:center;
}
.tst-text{
    color:rgba(255,255,255,0.7);
    overflow:hidden;
    letter-spacing:0.5px;
}
.tst-text-inner{
    position:relative;
    opacity:0;
}
.tst-text-inner p{
    margin-bottom:0;
    line-height:1.4;
}
.owl-carousel .owl-item .tst-slide img{
    width: auto;
    max-width: 100%;
}

.tst-author{
    display:inline-block;
    margin:60px 0 0 0;
    box-shadow: 0px 24px 49px 0px rgba(0, 0, 0, 0.3);
    opacity:0;
}
.tst-author img{
    max-height:178px;
}
.tst-name-container{
    text-align:left;
    margin-top:40px;
    padding-right:30px;
    
}
.tst-name-wrap{
    display:inline-block;
    text-align:left;
    position:relative;
    margin-left:50%;
    opacity:0;
}
.tst-name{
    font-size: 34px;
    font-weight:500;
    line-height:1;
    color:#1a353b;
    margin:0 0 5px;
}
.tst-small{
    color:#fff;
    font-size:18px;
    font-weight:300;
    line-height:1;
}
.lp-testimonials-slider  .owl-nav{
    position:absolute;
    bottom: 70px;
    right: calc(50% + 115px);
}
.lp-testimonials-slider  .owl-nav .owl-next,
.lp-testimonials-slider  .owl-nav .owl-prev{
    margin:0 15px;
}
.lp-testimonials-slider  .owl-nav .owl-next:before,
.lp-testimonials-slider  .owl-nav .owl-prev:before{
    content: '';
    height: 42px;
    width: 93px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.lp-testimonials-slider  .owl-nav .owl-next:hover:before,
.lp-testimonials-slider  .owl-nav .owl-prev:hover:before{
    opacity:1;
}
.lp-testimonials-slider  .owl-nav .owl-next span,
.lp-testimonials-slider  .owl-nav .owl-prev span{
    display:none;
}
.lp-testimonials-slider  .owl-nav .owl-prev:before{
    background-image: url(../img/icon-img/icon-left.png);
}
.lp-testimonials-slider  .owl-nav .owl-next:before{
    background-image: url(../img/icon-img/icon-right.png);
}


@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(120px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-120px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeInRightAlt {
    0% {
        opacity: 0;
        transform: translate3d(60px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeInLeftAlt {
    0% {
        opacity: 0;
        transform: translate3d(-60px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}


.right .active .tst-text-inner{
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-delay: 0.4s;
    -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.left .active .tst-text-inner{
    animation-name: fadeInDown;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-delay: 0.4s;
    -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}



.right .active .tst-author{
    animation-name: fadeInRightAlt;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-delay: 0.2s;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.left .active .tst-author{
    animation-name: fadeInLeftAlt;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-delay: 0.2s;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.right .active .tst-name-wrap{
    animation-name: fadeInRightAlt;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.left .active .tst-name-wrap{
    animation-name: fadeInLeftAlt;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}





@media (max-width: 1199px){
    .tst-name{
        font-size:28px;
    }
    .tst-text{
        font-size:16px;
    }
}
@media (max-width: 991px){
    .tst-slide-half:first-child{
        padding:160px 20px 70px 50px;
    }
    .tst-name-container{
        padding:0 10px;
    }
    .tst-name-container,
    .tst-name-wrap{
        text-align:center;
    }
    .tst-name-wrap{
        margin-left:0;
    }
    .lp-testimonials-slider .owl-nav{
        right: calc(50% + 65px);
    }
}
@media (max-width: 767px){
    .lp-testimonials-slider-container .tst-slider-bg{
        display:none;
    }
    .tst-slide-half{
        width:100%;
        float:none;
    }
    .tst-slide-half:first-child{
        background: #1a353b;
        width:auto;
        padding: 20px 10px 30px 10px;
        min-height:280px;
    }
    .tst-author{
        margin-top:-20px;
    }
    .owl-carousel .owl-item .tst-slide img{
        width:105px;
    }
    .tst-name-container{
        margin-top:25px;
    }
    .lp-testimonials-slider .owl-nav{
        right:0;
        bottom:0;
        left:0;
        text-align:center;
    }
}




















