﻿@charset "UTF-8"; 

.appear-animation {
    opacity: 0
}

.appear-animation-visible {
    opacity: 1
}

.transition-2ms {
    transition: all .2s ease-in-out
}

@-webkit-keyframes sideMenuArrow {
    0% {
        left: 5px
    }

    50% {
        left: 10px
    }

    100% {
        left: 5px
    }
}

@keyframes sideMenuArrow {
    0% {
        left: 5px
    }

    50% {
        left: 10px
    }

    100% {
        left: 5px
    }
}

@-webkit-keyframes sideMenuArrowBack {
    0% {
        right: 5px
    }

    50% {
        right: 10px
    }

    100% {
        right: 5px
    }
}

@keyframes sideMenuArrowBack {
    0% {
        right: 5px
    }

    50% {
        right: 10px
    }

    100% {
        right: 5px
    }
}

@-webkit-keyframes maskUp {
    from {
        transform: translate(0,100%)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskUp {
    from {
        transform: translate(0,100%)
    }

    to {
        transform: translate(0,0)
    }
}

@-webkit-keyframes maskRight {
    from {
        transform: translate(-100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskRight {
    from {
        transform: translate(-100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

@-webkit-keyframes maskDown {
    from {
        transform: translate(0,-100%)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskDown {
    from {
        transform: translate(0,-100%)
    }

    to {
        transform: translate(0,0)
    }
}

@-webkit-keyframes maskLeft {
    from {
        transform: translate(100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskLeft {
    from {
        transform: translate(100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

.maskUp {
    -webkit-animation-name: maskUp;
    animation-name: maskUp
}

.maskRight {
    -webkit-animation-name: maskRight;
    animation-name: maskRight
}

.maskDown {
    -webkit-animation-name: maskDown;
    animation-name: maskDown
}

.maskLeft {
    -webkit-animation-name: maskLeft;
    animation-name: maskLeft
}

@-webkit-keyframes headerReveal {
    from {
        top: -150px
    }

    to {
        top: 0
    }
}

@keyframes headerReveal {
    from {
        top: -150px
    }

    to {
        top: 0
    }
}

@-webkit-keyframes fadeInUpShorter {
    from {
        opacity: 0;
        transform: translate(0,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInUpShorter {
    from {
        opacity: 0;
        transform: translate(0,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpShorter {
    -webkit-animation-name: fadeInUpShorter;
    animation-name: fadeInUpShorter
}

@-webkit-keyframes fadeInUpShorterPlus {
    from {
        opacity: 0;
        transform: translate(0,15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInUpShorterPlus {
    from {
        opacity: 0;
        transform: translate(0,15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpShorterPlus {
    -webkit-animation-name: fadeInUpShorterPlus;
    animation-name: fadeInUpShorterPlus
}

@-webkit-keyframes fadeInLeftShorter {
    from {
        opacity: 0;
        transform: translate(50px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeftShorter {
    from {
        opacity: 0;
        transform: translate(50px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftShorter {
    -webkit-animation-name: fadeInLeftShorter;
    animation-name: fadeInLeftShorter
}

@-webkit-keyframes fadeInLeftShorterPlus {
    from {
        opacity: 0;
        transform: translate(15px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeftShorterPlus {
    from {
        opacity: 0;
        transform: translate(15px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftShorterPlus {
    -webkit-animation-name: fadeInLeftShorterPlus;
    animation-name: fadeInLeftShorterPlus
}

@-webkit-keyframes fadeInRightShorter {
    from {
        opacity: 0;
        transform: translate(-50px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRightShorter {
    from {
        opacity: 0;
        transform: translate(-50px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightShorter {
    -webkit-animation-name: fadeInRightShorter;
    animation-name: fadeInRightShorter
}

@-webkit-keyframes fadeInRightShorterPlus {
    from {
        opacity: 0;
        transform: translate(-15px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRightShorterPlus {
    from {
        opacity: 0;
        transform: translate(-15px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightShorterPlus {
    -webkit-animation-name: fadeInRightShorterPlus;
    animation-name: fadeInRightShorterPlus
}

@-webkit-keyframes fadeInRightShorterOpacity {
    from {
        opacity: 0;
        transform: translate(-50px,0)
    }

    to {
        opacity: .7;
        transform: none
    }
}

@keyframes fadeInRightShorterOpacity {
    from {
        opacity: 0;
        transform: translate(-50px,0)
    }

    to {
        opacity: .7;
        transform: none
    }
}

.fadeInRightShorterOpacity {
    -webkit-animation-name: fadeInRightShorterOpacity;
    animation-name: fadeInRightShorterOpacity
}

@-webkit-keyframes fadeInDownShorter {
    from {
        opacity: 0;
        transform: translate(0,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInDownShorter {
    from {
        opacity: 0;
        transform: translate(0,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownShorter {
    -webkit-animation-name: fadeInDownShorter;
    animation-name: fadeInDownShorter
}

@-webkit-keyframes fadeInDownShorterPlus {
    from {
        opacity: 0;
        transform: translate(0,-15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInDownShorterPlus {
    from {
        opacity: 0;
        transform: translate(0,-15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownShorterPlus {
    -webkit-animation-name: fadeInDownShorterPlus;
    animation-name: fadeInDownShorterPlus
}

@-webkit-keyframes fadeInRightDownShorter {
    from {
        opacity: 0;
        transform: translate(-50px,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRightDownShorter {
    from {
        opacity: 0;
        transform: translate(-50px,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightDownShorter {
    -webkit-animation-name: fadeInRightDownShorter;
    animation-name: fadeInRightDownShorter
}

@-webkit-keyframes fadeInRightUpShorter {
    from {
        opacity: 0;
        transform: translate(-50px,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRightUpShorter {
    from {
        opacity: 0;
        transform: translate(-50px,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightUpShorter {
    -webkit-animation-name: fadeInRightUpShorter;
    animation-name: fadeInRightUpShorter
}

@-webkit-keyframes fadeInLeftDownShorter {
    from {
        opacity: 0;
        transform: translate(50px,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeftDownShorter {
    from {
        opacity: 0;
        transform: translate(50px,-50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftDownShorter {
    -webkit-animation-name: fadeInLeftDownShorter;
    animation-name: fadeInLeftDownShorter
}

@-webkit-keyframes fadeInLeftUpShorter {
    from {
        opacity: 0;
        transform: translate(50px,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeftUpShorter {
    from {
        opacity: 0;
        transform: translate(50px,50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftUpShorter {
    -webkit-animation-name: fadeInLeftUpShorter;
    animation-name: fadeInLeftUpShorter
}

@-webkit-keyframes expandIn {
    from {
        opacity: 0;
        transform: scale(.8)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes expandIn {
    from {
        opacity: 0;
        transform: scale(.8)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.expandIn {
    -webkit-animation-name: expandIn;
    animation-name: expandIn
}

@-webkit-keyframes gradientTransition {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes gradientTransition {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-webkit-keyframes sliderScrollButton {
    0% {
        opacity: 1;
        transform: translate3d(-50%,0,0)
    }

    70% {
        opacity: 1;
        transform: translate3d(-50%,10px,0)
    }

    100% {
        opacity: 0;
        transform: translate3d(-50%,10px,0)
    }
}

@keyframes sliderScrollButton {
    0% {
        opacity: 1;
        transform: translate3d(-50%,0,0)
    }

    70% {
        opacity: 1;
        transform: translate3d(-50%,10px,0)
    }

    100% {
        opacity: 0;
        transform: translate3d(-50%,10px,0)
    }
}

@-webkit-keyframes arrowLeftRight {
    0% {
        transform: translate3d(-1px,0,0)
    }

    50% {
        transform: translate3d(1px,0,0)
    }

    100% {
        transform: translate3d(-1px,0,0)
    }
}

@keyframes arrowLeftRight {
    0% {
        transform: translate3d(-1px,0,0)
    }

    50% {
        transform: translate3d(1px,0,0)
    }

    100% {
        transform: translate3d(-1px,0,0)
    }
}

@-webkit-keyframes navItemArrow {
    0% {
        position: relative;
        left: -1px
    }

    50% {
        position: relative;
        left: 3px
    }

    100% {
        position: relative;
        left: -1px
    }
}

@keyframes navItemArrow {
    0% {
        position: relative;
        left: -1px
    }

    50% {
        position: relative;
        left: 3px
    }

    100% {
        position: relative;
        left: -1px
    }
}

.hover-in {
    transition: .1s ease-out !important
}

.hover-out {
    transition: .1s ease-in !important
}

.hover-3d {
    transition: none
}

@-webkit-keyframes hotspot-pulsate {
    0% {
        transform: scale(1);
        opacity: .8
    }

    45% {
        transform: scale(1.75);
        opacity: 0
    }
}

@keyframes hotspot-pulsate {
    0% {
        transform: scale(1);
        opacity: .8
    }

    45% {
        transform: scale(1.75);
        opacity: 0
    }
}

@-webkit-keyframes stop-hotspot-pulsate {
    from {
        opacity: .4
    }

    to {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes stop-hotspot-pulsate {
    from {
        opacity: .4
    }

    to {
        transform: scale(2);
        opacity: 0
    }
}

@-webkit-keyframes dotPulse {
    from {
        opacity: 1;
        transform: scale(.2)
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

@keyframes dotPulse {
    from {
        opacity: 1;
        transform: scale(.2)
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

.dotPulse {
    -webkit-animation-name: dotPulse;
    animation-name: dotPulse;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
    animation-duration: 4s
}

@-webkit-keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.3)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: none
    }
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.3)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: none
    }
}

.blurIn {
    -webkit-animation-name: blurIn;
    animation-name: blurIn
}

@-webkit-keyframes kenBurnsToRight {
    from {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

@keyframes kenBurnsToRight {
    from {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.kenBurnsToRight {
    -webkit-animation-name: kenBurnsToRight;
    animation-name: kenBurnsToRight;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: right
}

@-webkit-keyframes kenBurnsToLeft {
    from {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

@keyframes kenBurnsToLeft {
    from {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.kenBurnsToLeft {
    -webkit-animation-name: kenBurnsToLeft;
    animation-name: kenBurnsToLeft;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: left
}

.kenBurnsToLeftTop {
    -webkit-animation-name: kenBurnsToLeft;
    animation-name: kenBurnsToLeft;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: left top
}

@-webkit-keyframes bgPositionBottomToTop {
    from {
        background-position: bottom
    }

    to {
        background-position: top
    }
}

@keyframes bgPositionBottomToTop {
    from {
        background-position: bottom
    }

    to {
        background-position: top
    }
}

.bgPositionBottomToTop {
    -webkit-animation-name: bgPositionBottomToTop;
    animation-name: bgPositionBottomToTop;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transform-origin: right
}

@-webkit-keyframes pulseAnim {
    from {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(1.4);
        opacity: 0
    }
}

@keyframes pulseAnim {
    from {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(1.4);
        opacity: 0
    }
}

.pulseAnim:not(:hover):after {
    -webkit-animation-name: pulseAnim;
    animation-name: pulseAnim
}

.pulseAnim:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    z-index: -1
}

.pulseAnim.pulseAnimAnimated:after {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.pulseAnim:not(i):after {
    z-index: 0
}

.pulseAnim:not(i) * {
    position: relative;
    z-index: 1
}

@-webkit-keyframes basicRotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes basicRotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.basicRotation {
    -webkit-animation-name: basicRotation;
    animation-name: basicRotation
}
 
.bg-color-white {
    background: #fff !important
}

.bg-color-black {
    background: #000 !important
}

.badge-primary {
    background-color: #ccc;
    color: #fff
}
 
.border-top {
    border-top: 1px solid #dadada !important
}

.border-bottom {
    border-bottom: 1px solid #dadada !important
}

.border-left {
    border-left: 1px solid #dadada !important
}

.border-right {
    border-right: 1px solid #dadada !important
}

.border-all {
    border: 1px solid #dadada !important
}

.border-top-light {
    border-top: 1px solid rgba(0,0,0,.06) !important
}

.border-bottom-light {
    border-bottom: 1px solid rgba(0,0,0,.06) !important
}

.border-left-light {
    border-left: 1px solid rgba(0,0,0,.06) !important
}

.border-right-light {
    border-right: 1px solid rgba(0,0,0,.06) !important
}

.border-all-light {
    border: 1px solid rgba(0,0,0,.06) !important
}

.border-white {
    border-color: #fff !important
}
 

@media(max-width:767px) {
    .border-sm-none {
        border: 0 !important
    }
} 

.owl-carousel {
    display: block;
    margin-bottom: 20px;
    opacity: 0
}

    .owl-carousel.owl-loaded {
        opacity: 1
    }

    .owl-carousel:not(.owl-loaded):not(.owl-carousel-light) > div, .owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span {
        display: none
    }

        .owl-carousel:not(.owl-loaded):not(.owl-carousel-light) > div:first-child, .owl-carousel:not(.owl-loaded):not(.owl-carousel-light) span:first-child {
            display: block
        }

    .owl-carousel .owl-item img {
        transform-style: unset
    }

        .owl-carousel .owl-item img[data-icon] {
            display: inline
        }

    .owl-carousel .thumbnail {
        margin-right: 1px
    }

    .owl-carousel .item-video {
        height: 300px
    }

    .owl-carousel .owl-nav {
        bottom: 120px;
        position: absolute;
        width: 100%;
        margin-top: 0;
        transform: translate3d(0,-50%,0);
         z-index:9999;
    }

        .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
            display: inline-block;
            position: absolute;
            top: 50%;
            width: 45px;
            height: 45px;
            outline: 0;
            margin: 0;
            transform: translate3d(0,-50%,0)
        }

        .owl-carousel .owl-nav button.owl-prev {
            left: 0;
            background-image: url(../images/icons/owl-right.svg);
            background-color: transparent !important;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transform: translate3d(0,-50%,0) rotate(180deg)
        }
            .owl-carousel .owl-nav button.owl-prev:hover {
                left: 0;
                background-image: url(../images/icons/owl-right.svg);
                background-color: transparent !important;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                transform: translate3d(0,-50%,0) rotate(180deg)
            }

        .owl-carousel .owl-nav button.owl-next {
            right: 0;
            background-image: url(../images/icons/owl-right.svg);
            background-color: transparent !important;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }
            .owl-carousel .owl-nav button.owl-next:hover {
                right: 0;
                background-image: url(../images/icons/owl-right.svg);
                background-color: transparent !important;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

    /*second carousel*/
    .owl-carousel.second-carousel .owl-nav {
        bottom: 22px;
        right:0px;
        position: absolute;
        width: 90px;
        height:auto;
        margin-top: 0;
        transform: translate3d(0,-50%,0);
        z-index: 9999;  
    }

    .owl-carouse.second-carousell .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
        display: inline-block;
        position: absolute;
        top: 50%;
        width: 45px;
        height: 45px;
        outline: 0;
        margin: 0;
        transform: translate3d(0,-50%,0); 
    }

    .owl-carousel.second-carousel .owl-nav button.owl-prev {
        left: 0;
        background-image: url(../images/icons/owl-second.svg);
        background-color: #ebebeb !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px;
        transform: translate3d(0,-50%,0) rotate(180deg);
        
    }

        .owl-carousel.second-carousel .owl-nav button.owl-prev:hover {
            background-color: #dedede !important;
            opacity: 1; 
        }

    .owl-carousel.second-carousel .owl-nav button.owl-next {
        right: 0;
        background-image: url(../images/icons/owl-second.svg);
        background-color: #ebebeb !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px;
        border-left: 1px solid #cecece;
    }

        .owl-carousel.second-carousel .owl-nav button.owl-next:hover {
            background-color: #dedede !important;
            opacity: 1;
        }
    /*second carousel end*/

    /*tird carousel*/
    .owl-carousel.tird-carousel .owl-nav {
        left: 0px;
        position: absolute; 
        height: auto;
        margin-top: 0;
        transform: translate3d(0,-50%,0);
        z-index: 9999;
        top: 50%;
        height:0px;
    }


        .owl-carouse.tird-carousel .owl-nav button.owl-prev, .owl-carousel.tird-carousel .owl-nav button.owl-next {
            display: inline-block;
            position: absolute;
            top: 50%;
             
            outline: 0;
            margin: 0;
            transform: translate3d(0,-50%,0);
        }

.owl-carousel.tird-carousel .owl-nav button.owl-prev {
    left: 15px !important;
    background-image: url(../images/icons/tird-carousel.svg); 
    background-repeat: no-repeat;
    background-position: center; 
    transform: translate3d(0,-50%,0) rotate(180deg);
}

    .owl-carousel.tird-carousel .owl-nav button.owl-prev:hover {
        background-image: url(../images/icons/tird-carousel-hover.svg);
        transform: translate3d(0,-50%,0) rotate(180deg);
        opacity: 1;
    }

.owl-carousel.tird-carousel .owl-nav button.owl-next {
    right: 15px !important;
    background-image: url(../images/icons/tird-carousel.svg); 
    background-repeat: no-repeat;
    background-position: center; 
}

    .owl-carousel.tird-carousel .owl-nav button.owl-next:hover {
        background-image: url(../images/icons/tird-carousel-hover.svg);
        opacity: 1;
    }
    /*tird carousel end*/

    .owl-carousel.stage-margin .owl-stage-outer {
        margin-left: 40px !important;
        margin-right: 40px !important
    }

        .owl-carousel.stage-margin .owl-stage-outer .owl-stage {
            padding-left: 0 !important;
            padding-right: 0 !important
        }

    .owl-carousel.stage-margin.stage-margin-sm .owl-stage-outer {
        margin-left: 50px !important;
        margin-right: 50px !important
    }

    .owl-carousel.stage-margin.stage-margin-md .owl-stage-outer {
        margin-left: 75px !important;
        margin-right: 75px !important
    }

    .owl-carousel.stage-margin.stage-margin-lg .owl-stage-outer {
        margin-left: 100px !important;
        margin-right: 100px !important
    }
     
 
     
      
     

        .owl-carousel.nav-bottom-inside .owl-nav button.owl-prev, .owl-carousel.nav-bottom-inside .owl-nav button.owl-next {
            position: static
        }

    .owl-carousel.nav-inside .owl-nav button.owl-prev {
        left: 15px
    }

    .owl-carousel.nav-inside .owl-nav button.owl-next {
        right: 15px
    }

    .owl-carousel.nav-inside.nav-inside-edge .owl-nav button.owl-prev {
        left: 0
    }

    .owl-carousel.nav-inside.nav-inside-edge .owl-nav button.owl-next {
        right: 0
    }

    .owl-carousel.nav-inside.nav-inside-plus .owl-nav button.owl-prev {
        left: 85px
    }

    .owl-carousel.nav-inside.nav-inside-plus .owl-nav button.owl-next {
        left: calc(50% - 100px);
    }
     
    .owl-carousel.nav-inside.nav-bottom .owl-nav {
        position: absolute;
        top: auto;
        bottom: 40px;
        width: 100%
    }

        .owl-carousel.nav-inside.nav-bottom .owl-nav button.owl-prev, .owl-carousel.nav-inside.nav-bottom .owl-nav button.owl-next {
            position: relative
        }

        .owl-carousel.nav-inside.nav-bottom .owl-nav button.owl-prev {
            left: 0
        }

        .owl-carousel.nav-inside.nav-bottom .owl-nav button.owl-next {
            right: 0
        }

    .owl-carousel.nav-inside.nav-bottom.nav-style-2 .owl-nav button.owl-prev, .owl-carousel.nav-inside.nav-bottom.nav-style-2 .owl-nav button.owl-next {
        position: relative
    }

    .owl-carousel.nav-outside .owl-nav button.owl-prev {
        left: 0
    }

    .owl-carousel.nav-outside .owl-nav button.owl-next {
        right: 0
    }

 
.cascading-images-wrapper {
    display: inline-block;
    padding: 12% 20%
}

    .cascading-images-wrapper .cascading-images {
        transform: translate3d(0,-35%,0)
    }

        .cascading-images-wrapper .cascading-images img {
            max-width: 100%
        }
 
 

form label {
    font-weight: 400
}

textarea {
    resize: vertical
}

select {
    border: 1px solid #e5e7e9;
    border-radius: 6px;
    outline: none
}

.label {
    font-weight: 400
}

label.required:after {
    content: "*";
    font-size: .8em;
    margin: .3em;
    position: relative;
    top: -2px
}

.form-group:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.form-control {
    border-color: rgba(0,0,0,.09)
}

    .form-control:not(.form-control-lg) {
        font-size: 12px;
        font-size: .75rem;
        line-height: 1.3
    }

    .form-control:not(.form-control-sm):not(.form-control-lg) {
        font-size: 13.6px;
        font-size: .85rem;
        line-height: 1.85
    }

    .form-control.form-control-focused {
        box-shadow: 0 1px 1px rgba(0,0,0,.075) inset;
        border-color: #ccc
    }

    .form-control:focus {
        box-shadow: 0 1px 1px rgba(0,0,0,.075) inset;
        border-color: #ccc
    }

    .form-control.error {
        border-color: #a94442;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
    }

        .form-control.error:focus {
            border-color: #843534;
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483
        }

.page-link {
    border-color: rgba(0,0,0,.06)
}

.input-group .form-control {
    height: auto
}

.input-group-rounded .form-control {
    border-radius: 2rem 0 0 2rem;
    border: 0;
    padding-left: 16px;
    padding-left: 1rem
}

.input-group-rounded .input-group-append .btn {
    border-color: rgba(0,0,0,.09);
    border-radius: 0 2rem 2rem 0;
    font-size: 11.2px;
    font-size: .7rem;
    padding: 13.92px;
    padding: .87rem;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    z-index: 3
}

input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], textarea {
    -webkit-appearance: none
}

    .form-control::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #bdbdbd
    }

    .form-control::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder {
        color: #bdbdbd
    }

    .form-control:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #bdbdbd
    }

.form-placeholders-light .form-control::-webkit-input-placeholder, .form-placeholders-light input[type=text]::-webkit-input-placeholder, .form-placeholders-light input[type=password]::-webkit-input-placeholder, .form-placeholders-light input[type=datetime]::-webkit-input-placeholder, .form-placeholders-light input[type=datetime-local]::-webkit-input-placeholder, .form-placeholders-light input[type=date]::-webkit-input-placeholder, .form-placeholders-light input[type=month]::-webkit-input-placeholder, .form-placeholders-light input[type=time]::-webkit-input-placeholder, .form-placeholders-light input[type=week]::-webkit-input-placeholder, .form-placeholders-light input[type=number]::-webkit-input-placeholder, .form-placeholders-light input[type=email]::-webkit-input-placeholder, .form-placeholders-light input[type=url]::-webkit-input-placeholder, .form-placeholders-light input[type=search]::-webkit-input-placeholder, .form-placeholders-light input[type=tel]::-webkit-input-placeholder, .form-placeholders-light input[type=color]::-webkit-input-placeholder, .form-placeholders-light textarea::-webkit-input-placeholder {
    color: #fff
}

.form-placeholders-light .form-control::-moz-placeholder, .form-placeholders-light input[type=text]::-moz-placeholder, .form-placeholders-light input[type=password]::-moz-placeholder, .form-placeholders-light input[type=datetime]::-moz-placeholder, .form-placeholders-light input[type=datetime-local]::-moz-placeholder, .form-placeholders-light input[type=date]::-moz-placeholder, .form-placeholders-light input[type=month]::-moz-placeholder, .form-placeholders-light input[type=time]::-moz-placeholder, .form-placeholders-light input[type=week]::-moz-placeholder, .form-placeholders-light input[type=number]::-moz-placeholder, .form-placeholders-light input[type=email]::-moz-placeholder, .form-placeholders-light input[type=url]::-moz-placeholder, .form-placeholders-light input[type=search]::-moz-placeholder, .form-placeholders-light input[type=tel]::-moz-placeholder, .form-placeholders-light input[type=color]::-moz-placeholder, .form-placeholders-light textarea::-moz-placeholder {
    color: #fff
}

.form-placeholders-light .form-control:-ms-input-placeholder, .form-placeholders-light input[type=text]:-ms-input-placeholder, .form-placeholders-light input[type=password]:-ms-input-placeholder, .form-placeholders-light input[type=datetime]:-ms-input-placeholder, .form-placeholders-light input[type=datetime-local]:-ms-input-placeholder, .form-placeholders-light input[type=date]:-ms-input-placeholder, .form-placeholders-light input[type=month]:-ms-input-placeholder, .form-placeholders-light input[type=time]:-ms-input-placeholder, .form-placeholders-light input[type=week]:-ms-input-placeholder, .form-placeholders-light input[type=number]:-ms-input-placeholder, .form-placeholders-light input[type=email]:-ms-input-placeholder, .form-placeholders-light input[type=url]:-ms-input-placeholder, .form-placeholders-light input[type=search]:-ms-input-placeholder, .form-placeholders-light input[type=tel]:-ms-input-placeholder, .form-placeholders-light input[type=color]:-ms-input-placeholder, .form-placeholders-light textarea:-ms-input-placeholder {
    color: #fff
}

.btn-lg, .btn-group-lg > .btn {
    line-height: 1.334
}

.input-group-btn .btn {
    padding-top: 8px;
    padding-top: .5rem;
    padding-bottom: 8px;
    padding-bottom: .5rem
}

select.form-control-sm, select.form-control-lg {
    line-height: 1;
    height: auto !important
}
 
 
.img-thumbnail {
    border-radius: 4px;
    position: relative
}

    .img-thumbnail img {
        border-radius: 4px
    }

    .img-thumbnail .zoom {
        background: #ccc;
        border-radius: 100%;
        bottom: 8px;
        color: #fff;
        display: block;
        height: 30px;
        padding: 6px;
        position: absolute;
        right: 8px;
        text-align: center;
        width: 30px
    }

        .img-thumbnail .zoom i {
            font-size: 10px;
            left: 0;
            position: relative;
            top: -6px
        }

    .img-thumbnail.img-thumbnail-hover-icon {
        position: relative
    }

        .img-thumbnail.img-thumbnail-hover-icon img {
            position: relative;
            z-index: 1
        }

        .img-thumbnail.img-thumbnail-hover-icon:before {
            transition: all .2s;
            background: rgba(0,0,0,.65);
            border-radius: 4px;
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            opacity: 0;
            z-index: 2
        }

        .img-thumbnail.img-thumbnail-hover-icon:after {
            transition: all .2s;
            font-family: 'font awesome 5 free';
            font-weight: 900;
            color: #fff;
            content: "\f067";
            font-size: 18px;
            height: 30px;
            position: absolute;
            top: 30%;
            margin-top: -15px;
            display: block;
            text-align: center;
            width: 100%;
            opacity: 0;
            z-index: 3
        }

        .img-thumbnail.img-thumbnail-hover-icon:hover:before {
            opacity: 1
        }

        .img-thumbnail.img-thumbnail-hover-icon:hover:after {
            top: 50%;
            opacity: 1
        }

    .img-thumbnail a.img-thumbnail-hover-icon {
        display: inline-block
    }

    .img-thumbnail.img-thumbnail-no-borders {
        border: none;
        padding: 0
    }

ul.image-gallery {
    list-style: none;
    margin: 0;
    padding: 0
}

    ul.image-gallery .image-gallery-item {
        margin-bottom: 35px
    }

ul.thumbnail-gallery {
    list-style: none;
    margin: 10px 0;
    padding: 0
}

    ul.thumbnail-gallery li {
        display: inline-block;
        margin: 10px 10px 0 0;
        padding: 0
    }

@media(max-width:991px) {
    .thumbnail {
        border: 0;
        text-align: center
    }
}
  
 
aside .twitter-account {
    display: block;
    font-size: .9em;
    margin: -15px 0 5px;
    opacity: .55
}

    aside .twitter-account:hover {
        opacity: 1
    }

html.side-panel .body:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(33,37,41,.5);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: ease opacity 300ms
}

html.side-panel .side-panel-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 32px;
    padding: 2rem;
    box-shadow: 0 0 30px -13px rgba(0,0,0,.2);
    overflow-y: auto;
    transform: translate3d(-100%,0,0);
    transition: ease transform 300ms;
    z-index: 9999
}

    html.side-panel .side-panel-wrapper .side-panel-close {
        position: absolute;
        top: 0;
        right: 0
    }

html.side-panel.side-panel-push .body {
    transform: translate3d(0,0,0);
    transition: ease transform 300ms
}

html.side-panel.side-panel-right .side-panel-wrapper {
    left: auto;
    right: 0;
    transform: translate3d(100%,0,0)
}

html.side-panel.side-panel-without-overlay .body:before {
    content: none
}

html.side-panel.side-panel-open .body:before {
    opacity: 1;
    visibility: visible
}

html.side-panel.side-panel-open .side-panel-wrapper {
    transform: translate3d(0,0,0)
}

html.side-panel.side-panel-open.side-panel-push .body {
    transform: translate3d(300px,0,0)
}

html.side-panel.side-panel-open.side-panel-push.side-panel-right .body {
    transform: translate3d(-300px,0,0)
}

.slider-container {
    background: #151719;
    height: 500px;
    overflow: hidden;
    width: 100%;
    direction: ltr
}

    .slider-container .tparrows {
        border-radius: 6px
    }

    .slider-container .slider-single-slide .tparrows {
        display: none
    }

    .slider-container .top-label {
        color: #fff;
        font-size: 24px;
        font-weight: 300
    }

    .slider-container .main-label {
        color: #fff;
        font-size: 62px;
        line-height: 62px;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,.15)
    }

    .slider-container .featured-label {
        color: #fff;
        font-size: 52px;
        line-height: 52px;
        font-weight: 800;
        text-shadow: 1px 1px 3px rgba(0,0,0,.15)
    }

    .slider-container .bottom-label {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 300
    }

    .slider-container .blackboard-text {
        color: #bab9be;
        font-size: 46px;
        line-height: 46px;
        font-family: shadows into light,cursive;
         
    }

    .slider-container .btn.btn-lg.btn-slider-action {
        font-size: 22px;
        font-weight: 600;
        line-height: 20px;
        padding: 19.2px 28.8px;
        padding: 1.2rem 1.8rem
    }

    .slider-container .top-label-dark, .slider-container .main-label-dark, .slider-container .bottom-label-dark {
        color: #333
    }

    .slider-container .tp-caption-dark a {
        color: #333
    }

        .slider-container .tp-caption-dark a:hover {
            color: #333
        }

    .slider-container .tp-caption-overlay {
        background: #000;
        padding: 10px
    }

    .slider-container .tp-caption-overlay-opacity {
        background: rgba(0,0,0,.4);
        padding: 10px
    }

    .slider-container .tp-opacity-overlay {
        background: #000;
        opacity: .75
    }

    .slider-container .tp-opacity-overlay-light {
        background: #fff;
        opacity: .75
    }

    .slider-container.transparent {
        background-color: transparent
    }

    .slider-container.light {
        background-color: #eaeaea
    }

        .slider-container.light .tp-bannershadow {
            opacity: .05;
            top: 0;
            bottom: auto;
            z-index: 1000
        }

        .slider-container.light .featured-label, .slider-container.light .top-label, .slider-container.light .main-label, .slider-container.light .bottom-label {
            color: #333
        }

        .slider-container.light .tp-caption a {
            color: #333
        }

            .slider-container.light .tp-caption a:hover {
                color: #333
            }

.tp-caption[data-typewriter]:after {
    transform: translateX(-9px)
}

.rev_slider li.slide-overlay {
}

    .rev_slider li.slide-overlay .slotholder:after {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        pointer-events: none;
        opacity: .9;
        background: #212529;
        z-index: 2
    }

    .rev_slider li.slide-overlay.slide-overlay-light .slotholder:after {
        background: #fff
    }

    .rev_slider li.slide-overlay.slide-overlay-gradient .slotholder:after {
        background-color: #6c6ef1;
        background-image: linear-gradient(to right,#6c6ef1 0%,#e2498e 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c6ef1',endColorstr='#e2498e',GradientType=1 )
    }

    .rev_slider li.slide-overlay.slide-overlay-gradient.slide-overlay-gradient-animated .slotholder:after {
        background-size: 200% 200%;
        -webkit-animation-name: gradientTransition;
        animation-name: gradientTransition;
        -webkit-animation-duration: 20000ms;
        animation-duration: 20000ms;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .rev_slider li.slide-overlay.slide-overlay-level-0 .slotholder:after {
        opacity: 0
    }

    .rev_slider li.slide-overlay.slide-overlay-level-1 .slotholder:after {
        opacity: .1
    }

    .rev_slider li.slide-overlay.slide-overlay-level-2 .slotholder:after {
        opacity: .2
    }

    .rev_slider li.slide-overlay.slide-overlay-level-3 .slotholder:after {
        opacity: .3
    }

    .rev_slider li.slide-overlay.slide-overlay-level-4 .slotholder:after {
        opacity: .4
    }

    .rev_slider li.slide-overlay.slide-overlay-level-5 .slotholder:after {
        opacity: .5
    }

    .rev_slider li.slide-overlay.slide-overlay-level-6 .slotholder:after {
        opacity: .6
    }

    .rev_slider li.slide-overlay.slide-overlay-level-7 .slotholder:after {
        opacity: .7
    }

    .rev_slider li.slide-overlay.slide-overlay-level-8 .slotholder:after {
        opacity: .8
    }

    .rev_slider li.slide-overlay.slide-overlay-level-9 .slotholder:after {
        opacity: .9
    }

    .rev_slider li.slide-overlay.slide-overlay-level-10 .slotholder:after {
        opacity: .1
    }

.slider-scroll-button {
    position: relative;
    width: 57px;
    height: 57px;
    border-radius: 100%;
    text-indent: -9999px
}

    .slider-scroll-button:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 49%;
        width: 23px;
        height: 34px;
        border: 1px solid #fff;
        border-radius: 15px;
        transform: translate3d(-50%,-50%,0)
    }

    .slider-scroll-button:after {
        content: '';
        width: 6px;
        height: 10px;
        border-radius: 10px;
        border: 1px solid #fff;
        position: absolute;
        top: 19px;
        left: 49%;
        transform: translate3d(-50%,0,0);
        -webkit-animation-name: sliderScrollButton;
        animation-name: sliderScrollButton;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .slider-scroll-button.slider-scroll-button-dark:before {
        border-color: #212529
    }

    .slider-scroll-button.slider-scroll-button-dark:after {
        border-color: #212529
    }

.tparrows.tparrows-carousel {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: auto;
    padding: 20px 0
}

    .tparrows.tparrows-carousel.tp-leftarrow {
        right: auto !important;
        left: -30px !important;
        border-radius: 0 4px 4px 0
    }

        .tparrows.tparrows-carousel.tp-leftarrow:before {
            font-family: 'font awesome 5 free';
            font-weight: 900;
            content: "\f053";
            position: relative;
            left: -1px;
            top: 1px
        }

    .tparrows.tparrows-carousel.tp-rightarrow {
        right: -60px !important;
        left: auto !important;
        border-radius: 4px 0 0 4px
    }

        .tparrows.tparrows-carousel.tp-rightarrow:before {
            font-family: 'font awesome 5 free';
            font-weight: 900;
            content: "\f054";
            position: relative;
            left: 1px;
            top: 1px
        }

.tparrows.arrows-style-1 {
    background: 0 0 !important
}

.tparrows.arrows-style-2 {
    background: 0 0 !important
}

    .tparrows.arrows-style-2.tp-leftarrow:before, .tparrows.arrows-style-2.tp-rightarrow:before {
        content: '';
        display: block;
        position: absolute;
        left: 1.5px;
        top: 50%;
        width: .8em;
        height: .8em;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
        transition: ease opacity 400ms;
        font-size: inherit;
        opacity: .7
    }

    .tparrows.arrows-style-2.tp-leftarrow:after, .tparrows.arrows-style-2.tp-rightarrow:after {
        content: '';
        display: block;
        border-top: 1px solid #fff;
        transition: ease opacity 400ms;
        width: 1.5em;
        position: absolute;
        top: 50%;
        font-size: inherit;
        transform: translate3d(0,-50%,0);
        opacity: .7
    }

    .tparrows.arrows-style-2.tp-leftarrow:hover:before, .tparrows.arrows-style-2.tp-rightarrow:hover:before {
        opacity: 1
    }

    .tparrows.arrows-style-2.tp-leftarrow:hover:after, .tparrows.arrows-style-2.tp-rightarrow:hover:after {
        opacity: 1
    }

    .tparrows.arrows-style-2.tp-leftarrow:before {
        left: .5px;
        transform: translate3d(0,-50%,0) rotate(-45deg)
    }

    .tparrows.arrows-style-2.tp-rightarrow:before {
        left: 9.5px;
        transform: translate3d(0,-50%,0) rotate(135deg)
    }

@media(max-width:768px) {
    .tparrows.arrows-style-2 {
        display: none
    }
}

.tparrows.arrows-dark:before {
    color: #111 !important
}

.tparrows.arrows-big:before {
    font-size: 25px
}

.tparrows.arrows-rounded {
    border-radius: 100%
}

.tp-bullets.bullets-style-1 .tp-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%
}

.tp-bullets.bullets-style-2 .tp-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #78888d
}

html.ie .forcefullwidth_wrapper_tp_banner {
    overflow: hidden
}

.rev_slider embed, .rev_slider iframe, .rev_slider object, .rev_slider video {
    border: 0 !important
}

.hesperiden-custom {
    padding: 10px 0 !important
}

    .hesperiden-custom .tp-tab {
        border: 0 !important
    }

.slider-with-overlay {
    position: relative
}

    .slider-with-overlay .slider-container {
        z-index: auto
    }

.slider-contact-form {
    margin: 45px 0
}

    .slider-contact-form .featured-box {
        text-align: left
    }

    .slider-contact-form label.error {
        display: none !important
    }

    .slider-contact-form .alert {
        padding: 6px;
        text-align: center
    }

    .slider-contact-form textarea {
        resize: none
    }

@media(min-width:992px) {
    .slider-contact-form {
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99;
        width: 100%
    }
}

html.boxed .slider-container {
    width: 100% !important;
    left: auto !important
}

@media(max-width:991px) {
    html.side-header .slider-container.fullscreen-slider, html.side-header .slider-container.fullscreen-slider + .tp-fullwidth-forcer {
        height: calc(100vh - 84px) !important
    }
}
 
/*thumb info*/
.thumb-info {
    display: block;
    position: relative;
    text-decoration: none;
    max-width: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0,0,0); 
}

    .thumb-info .thumb-info-wrapper {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translate3d(0,0,0);
        border-radius: 4px;
        margin: 0;
        overflow: hidden;
        display: block;
        position: relative
    }

        
        .thumb-info .thumb-info-wrapper:after {
            content: "";
            background: linear-gradient(to bottom,transparent,rgba(0,0,0,.9));
            transition: all .3s;
            border-radius: 4px;
            bottom: 0;
            color: #fff;
            left: 0;
            position: absolute;
            right: 0;
            top: 240px;
            display: block;
            opacity: 1;
            z-index: 1;
        }
  
    .thumb-info .thumb-info-action-icon { 
        position: absolute;  
    }
     
    .thumb-info .thumb-info-title {
        transition: all .3s; 
        color: #fff;
        font-weight: 600;
        left: 30px;
        letter-spacing: 1px;
        position: absolute;
        z-index: 2;
        max-width: 75%;
        font-size: 30px;
        line-height:32px;
        padding: 0;
        bottom: 90px;
    } 
    .thumb-info img {
        transition: all .3s ease;
        border-radius: 3px;
        position: relative;
        width: 100%
    } 

    .thumb-info.thumb-info-no-zoom img {
        transition: none
    }
 
  
 

    
        .thumb-info.thumb-info-centered-icons .thumb-info-action a {
            text-decoration: none
        }
.kesfet-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 6px 0 rgb(0 0 0 / 16%);
    background-color: #e1251b;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff !important;
    text-align: center !important;
    padding: 5px 22px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s;
    z-index: 999;
    letter-spacing: 1px;
}

    .kesfet-btn:hover {
        background-color: #C5170D;
    }
/*thumb info end */
 /*page thum info*/
.page .thumb-info {
    display: block;
    position: relative;
    text-decoration: none;
    max-width: 100%;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    transition: all .3s;
}

    .page .thumb-info .thumb-info-wrapper {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translate3d(0,0,0);
        border-radius: 0;
        margin: 0;
        overflow: hidden;
        display: block;
        position: relative
    }


        .page .thumb-info .thumb-info-wrapper:after {
            content: "";
            background: linear-gradient(to bottom,transparent,rgba(0,0,0,.8));
            transition: all .3s;
            border-radius: 0;
            bottom: 0;
            color: #fff;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            display: block;
            opacity: 1;
            z-index: 1;
        }

    .page .thumb-info.product-details-div .thumb-info-wrapper:after {
        content: "";
        background: linear-gradient(to bottom,transparent,rgba(0,0,0,0));       
    }

    .page .thumb-info .thumb-info-action-icon {
        position: absolute;
    }

    .page .thumb-info .thumb-info-title {
        transition: all .3s;
        color: #fff;
        font-weight: 600;
        left: 20px;
        letter-spacing: 1px;
        position: absolute;
        z-index: 2;
        max-width: 75%;
        font-size: 20px;
        line-height: 26px;
        padding: 0;
        bottom: 20px;
    }

    .page .thumb-info img {
        transition: all .3s ease;
        border-radius: 0;
        position: relative;
        width: 100%
    }

    .page .thumb-info.thumb-info-no-zoom img {
        transition: none
    }
     

    .page .thumb-info.thumb-info-centered-icons .thumb-info-action a {
        text-decoration: none
    }

/* Scroll to Top */
html .scroll-to-top {
    transition: opacity 0.3s;  
    bottom: 15px; 
    display: block;
    height: 9px;
    opacity: 0;
    padding: 10px 10px 35px;
    position: fixed;
    right: 10px;
    text-align: center;
    text-decoration: none;
    min-width: 50px;
    z-index: 1040;
    font-size: 0.8em;
    background:url(../images/icons/top.svg) no-repeat center center;
    background-size:50px;
}

    html .scroll-to-top:hover {
        opacity: 1;
    }

    html .scroll-to-top.visible {
        opacity: 0.75;
    }

    html .scroll-to-top span {
        display: inline-block;
        padding: 0 5px;
    }

html.lightbox-opened .scroll-to-top {
    right: 27px;
}

html.ie11 .scroll-to-top {
    right: 25px;
}

/* Responsive */
@media (max-width: 991px) {
    html .scroll-to-top.hidden-mobile {
        display: none !important;
    }
}


.page .kesfet-btn {
    position: absolute;
    bottom: -36px;
    left: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 6px 0 rgb(0 0 0 / 16%);
    background-color: #e1251b;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #ffffff !important;
    text-align: center !important;
    padding: 5px 14px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s;
    z-index: 999;
    letter-spacing: 1px;
}

    .page .kesfet-btn:hover {
        background-color: #C5170D;
    }

.page .thumb-info :hover .kesfet-btn {
    bottom:20px !important;
}
.page .thumb-info :hover .thumb-info-title { 
    bottom:65px !important;
}
 /*page thum info end*/
 