/*animations*/

/******************
* Bounce in right *
*******************/


.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 
.slow{
     -webkit-animation-duration: 1.5s; 
    animation-duration: 1.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}
.slower{
     -webkit-animation-duration: 2s; 
    animation-duration: 2s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}
.slowest{
     -webkit-animation-duration: 3s; 
    animation-duration: 3s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}

/* Added by Andy Meetan */
.delay-250 {
    -webkit-animation-delay:0.25s;
    -moz-animation-delay:0.25s;
    -o-animation-delay:0.25s;
    animation-delay:0.25s;
}
.delay-500 {
    -webkit-animation-delay:0.5s;
    -moz-animation-delay:0.5s;
    -o-animation-delay:0.5s;
    animation-delay:0.5s;
}
.delay-750 {
    -webkit-animation-delay:0.75s;
    -moz-animation-delay:0.75s;
    -o-animation-delay:0.75s;
    animation-delay:0.75s;
}
.delay-1000 {
    -webkit-animation-delay:1.0s;
    -moz-animation-delay:1.0s;
    -o-animation-delay:1.0s;
    animation-delay:1.0s;
}
.delay-1250 {
    -webkit-animation-delay:1.25s;
    -moz-animation-delay:1.25s;
    -o-animation-delay:1.25s;
    animation-delay:1.25s;
}
.delay-1500 {
    -webkit-animation-delay:1.5s;
    -moz-animation-delay:1.5s;
    -o-animation-delay:1.5s;
    animation-delay:1.5s;
}
.delay-1750 {
    -webkit-animation-delay:1.75s;
    -moz-animation-delay:1.75s;
    -o-animation-delay:1.75s;
    animation-delay:1.75s;
}
.delay-2000 {
    -webkit-animation-delay:2.0s;
    -moz-animation-delay:2.0s;
    -o-animation-delay:2.0s;
    animation-delay:2.0s;
}
.delay-2500 {
    -webkit-animation-delay:2.5s;
    -moz-animation-delay:2.5s;
    -o-animation-delay:2.5s;
    animation-delay:2.5s;
}
.delay-2000 {
    -webkit-animation-delay:2.0s;
    -moz-animation-delay:2.0s;
    -o-animation-delay:2.0s;
    animation-delay:2.0s;
}
.delay-2500 {
    -webkit-animation-delay:2.5s;
    -moz-animation-delay:2.5s;
    -o-animation-delay:2.5s;
    animation-delay:2.5s;
}
.delay-3000 {
    -webkit-animation-delay:3.0s;
    -moz-animation-delay:3.0s;
    -o-animation-delay:3.0s;
    animation-delay:3.0s;
}
.delay-3500 {
    -webkit-animation-delay:3.5s;
    -moz-animation-delay:3.5s;
    -o-animation-delay:3.5s;
    animation-delay:3.5s;
}

.bounceInRight, .bounceInLeft, .bounceInUp, .bounceInDown{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}
.fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}

.flipInX, .flipInY, .rotateIn, .rotateInUpLeft, .rotateInUpRight, .rotateInDownLeft, .rotateDownUpRight, .rollIn{
    opacity:0;
}

.lightSpeedInRight, .lightSpeedInLeft{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}

/***********
* bounceIn *
************/
@-webkit-keyframes bounceIn { 
    0% { 
        opacity: 0; 
        -webkit-transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.05); 
    } 

    70% { 
        -webkit-transform: scale(.9); 
    } 

    100% { 
         -webkit-transform: scale(1); 
    } 
} 

@keyframes bounceIn { 
    0% { 
        opacity: 0; 
        transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    } 

    70% { 
        transform: scale(.9); 
    } 

    100% { 
        transform: scale(1); 
    } 
} 

.bounceIn.go { 
    -webkit-animation-name: bounceIn; 
    animation-name: bounceIn; 
}

/****************
* bounceInRight *
****************/

@-webkit-keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateX(400px); 
    } 
    60% { 
        
        -webkit-transform: translateX(-30px); 
    } 
    80% { 
        -webkit-transform: translateX(10px); 
    } 
    100% {
    opacity: 1;
     
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        
        transform: translateX(400px); 
    } 
    60% { 
        
        transform: translateX(-30px); 
    } 
    80% { 
        transform: translateX(10px); 
    } 
    100% {
    opacity: 1;
     
        transform: translateX(0); 
    } 
} 


.bounceInRight.go { 
    -webkit-animation-name: bounceInRight; 
    animation-name: bounceInRight; 
}

/******************
* Bounce in left *
*******************/

@-webkit-keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateX(-400px); 
    } 
    60% { 
       
        -webkit-transform: translateX(30px); 
    } 
    80% { 
        -webkit-transform: translateX(-10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        
        transform: translateX(-400px); 
    } 
    60% { 
       
        transform: translateX(30px); 
    } 
    80% { 
        transform: translateX(-10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateX(0); 
    } 
} 

.bounceInLeft.go { 
    -webkit-animation-name: bounceInLeft; 
    animation-name: bounceInLeft; 
}

/******************
* Bounce in up *
*******************/

@-webkit-keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateY(400px); 
    } 
    60% { 
       
        -webkit-transform: translateY(-30px); 
    } 
    80% { 
        -webkit-transform: translateY(10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        
        transform: translateY(400px); 
    } 
    60% { 
       
        transform: translateY(-30px); 
    } 
    80% { 
        transform: translateY(10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateY(0); 
    } 
} 

.bounceInUp.go { 
    -webkit-animation-name: bounceInUp; 
    animation-name: bounceInUp; 
}


/******************
* Bounce in down *
*******************/

@-webkit-keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateY(-400px); 
    } 
    60% { 
       
        -webkit-transform: translateY(30px); 
    } 
    80% { 
        -webkit-transform: translateY(-10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        
        transform: translateY(-400px); 
    } 
    60% { 
       
        transform: translateY(30px); 
    } 
    80% { 
        transform: translateY(-10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateY(0); 
    } 
} 

.bounceInDown.go { 
    -webkit-animation-name: bounceInDown; 
    animation-name: bounceInDown; 
}


/**********
* Fade In *
**********/ 
@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
}
.fadeIn{
    opacity:0;
}
.fadeIn.go { 
    -webkit-animation-name: fadeIn; 
    animation-name: fadeIn; 
}

/**********
* Grow in *
***********/

@-webkit-keyframes growIn { 
    0% { 
        -webkit-transform: scale(0.2); 
        opacity:0;
    } 
    50% { 
        -webkit-transform: scale(1.2); 
        
    } 
    100% { 
        -webkit-transform: scale(1); 
        opacity:1;
    } 
} 
@keyframes growIn { 
    0% { 
        transform: scale(0.2); 
        opacity:0;
    } 
    50% { 
        transform: scale(1.2); 
        
    } 
    100% { 
        transform: scale(1); 
        opacity:1;
    } 
} 
.growIn { 

    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity:0;
}
.growIn.go{
    -webkit-animation-name: growIn; 
    animation-name: growIn; 
}

/********
* Shake *
********/
@-webkit-keyframes shake { 
    0%, 100% {-webkit-transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);} 
} 
@keyframes shake { 
    0%, 100% {transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {transform: translateX(10px);} 
} 
.shake.go { 
    -webkit-animation-name: shake; 
    animation-name: shake; 
}

/********
* ShakeUp *
********/
@-webkit-keyframes shakeUp { 
    0%, 100% {-webkit-transform: translateY(0);} 
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateY(-10px);} 
    20%, 40%, 60%, 80% {-webkit-transform: translateY(10px);} 
} 
@keyframes shakeUp { 
    0%, 100% {transform: translateY(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateY(-10px);} 
    20%, 40%, 60%, 80% {transform: translateY(10px);} 
} 
.shakeUp.go { 
    -webkit-animation-name: shakeUp; 
    animation-name: shakeUp; 
}

/*************
* FadeInLeft *
*************/

@-webkit-keyframes fadeInLeft { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInLeft { 
    0% { 
        opacity: 0; 
        transform: translateX(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInLeft{ 
    opacity: 0; 
    -webkit-transform: translateX(-400px); 
    transform: translateX(-400px);
}
.fadeInLeft.go { 
    -webkit-animation-name: fadeInLeft; 
    animation-name: fadeInLeft; 
}


/*************
* FadeInRight *
*************/

@-webkit-keyframes fadeInRight { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInRight { 
    0% { 
        opacity: 0; 
        transform: translateX(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInRight{ 
    opacity: 0; 
    -webkit-transform: translateX(400px); 
    transform: translateX(400px);
}
.fadeInRight.go { 
    -webkit-animation-name: fadeInRight; 
    animation-name: fadeInRight; 
}

/*************
* FadeInUp *
*************/

@-webkit-keyframes fadeInUp { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 
@keyframes fadeInUp { 
    0% { 
        opacity: 0; 
        transform: translateY(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInUp{ 
    opacity: 0; 
    -webkit-transform: translateY(400px); 
    transform: translateY(400px);
}
.fadeInUp.go { 
    -webkit-animation-name: fadeInUp; 
    animation-name: fadeInUp; 
}

/*************
* FadeInDown *
*************/

@-webkit-keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 
@keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        transform: translateY(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInDown{ 
    opacity: 0; 
    -webkit-transform: translateY(-400px); 
    transform: translateY(-400px);
}
.fadeInDown.go { 
    -webkit-animation-name: fadeInDown; 
    animation-name: fadeInDown; 
}

/*****************
* rotateIn *
*****************/
@-webkit-keyframes rotateIn { 
    0% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(-200deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateIn { 
    0% { 
        transform-origin: center center; 
        transform: rotate(-200deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: center center; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateIn.go { 
    -webkit-animation-name: rotateIn; 
    animation-name: rotateIn; 
}

/*****************
* rotateInUpLeft *
*****************/

@-webkit-keyframes rotateInUpLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInUpLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInUpLeft.go { 
    -webkit-animation-name: rotateInUpLeft; 
    animation-name: rotateInUpLeft; 
}

/*******************
* rotateInDownLeft *
*******************/
@-webkit-keyframes rotateInDownLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInDownLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInDownLeft.go { 
    -webkit-animation-name: rotateInDownLeft; 
    animation-name: rotateInDownLeft; 
}

/******************
* rotateInUpRight *
*******************/

@-webkit-keyframes rotateInUpRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInUpRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInUpRight.go { 
    -webkit-animation-name: rotateInUpRight; 
    animation-name: rotateInUpRight; 
}

/********************
* rotateInDownRight *
********************/

@-webkit-keyframes rotateInDownRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInDownRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInDownRight.go { 
    -webkit-animation-name: rotateInDownRight; 
    animation-name: rotateInDownRight; 
}

/*********
* rollIn *
**********/

@-webkit-keyframes rollIn { 
    0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); } 
} 
@keyframes rollIn { 
    0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; transform: translateX(0px) rotate(0deg); } 
} 
.rollIn.go { 
    -webkit-animation-name: rollIn; 
    animation-name: rollIn; 
}

/*********
* wiggle *
**********/

@-webkit-keyframes wiggle { 
    0% { -webkit-transform: skewX(9deg); } 
    10% { -webkit-transform: skewX(-8deg); } 
    20% { -webkit-transform: skewX(7deg); } 
    30% { -webkit-transform: skewX(-6deg); } 
    40% { -webkit-transform: skewX(5deg); } 
    50% { -webkit-transform: skewX(-4deg); } 
    60% { -webkit-transform: skewX(3deg); } 
    70% { -webkit-transform: skewX(-2deg); } 
    80% { -webkit-transform: skewX(1deg); } 
    90% { -webkit-transform: skewX(0deg); } 
    100% { -webkit-transform: skewX(0deg); } 
} 
@keyframes wiggle { 
    0% { transform: skewX(9deg); } 
    10% { transform: skewX(-8deg); } 
    20% { transform: skewX(7deg); } 
    30% { transform: skewX(-6deg); } 
    40% { transform: skewX(5deg); } 
    50% { transform: skewX(-4deg); } 
    60% { transform: skewX(3deg); } 
    70% { transform: skewX(-2deg); } 
    80% { transform: skewX(1deg); } 
    90% { transform: skewX(0deg); } 
    100% { transform: skewX(0deg); } 
} 
.wiggle.go { 
    -webkit-animation-name: wiggle; 
    animation-name: wiggle; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 

/********
* swing *
*********/

@-webkit-keyframes swing { 
    20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; } 
    20% { -webkit-transform: rotate(15deg); } 
    40% { -webkit-transform: rotate(-10deg); } 
    60% { -webkit-transform: rotate(5deg); } 
    80% { -webkit-transform: rotate(-5deg); } 
    100% { -webkit-transform: rotate(0deg); } 
} 
@keyframes swing { 
    20% { transform: rotate(15deg); } 
    40% { transform: rotate(-10deg); } 
    60% { transform: rotate(5deg); } 
    80% { transform: rotate(-5deg); } 
    100% { transform: rotate(0deg); } 
} 
.swing.go { 
    -webkit-transform-origin: top center; 
    transform-origin: top center; 
    -webkit-animation-name: swing; 
    animation-name: swing; 
}

/*******
* tada *
********/

@-webkit-keyframes tada { 
    0% {-webkit-transform: scale(1);} 
    10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);} 
    30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);} 
    40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);} 
    100% {-webkit-transform: scale(1) rotate(0);} 
} 
@keyframes tada { 
    0% {transform: scale(1);} 
    10%, 20% {transform: scale(0.9) rotate(-3deg);} 
    30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);} 
    40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);} 
    100% {transform: scale(1) rotate(0);} 
} 
.tada.go { 
    -webkit-animation-name: tada; 
    animation-name: tada; 
}

/*********
* wobble *
**********/

@-webkit-keyframes wobble { 
  0% { -webkit-transform: translateX(0%); } 
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); } 
  30% { -webkit-transform: translateX(20%) rotate(3deg); } 
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); } 
  60% { -webkit-transform: translateX(10%) rotate(2deg); } 
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); } 
  100% { -webkit-transform: translateX(0%); } 
} 
@keyframes wobble { 
  0% { transform: translateX(0%); } 
  15% { transform: translateX(-25%) rotate(-5deg); } 
  30% { transform: translateX(20%) rotate(3deg); } 
  45% { transform: translateX(-15%) rotate(-3deg); } 
  60% { transform: translateX(10%) rotate(2deg); } 
  75% { transform: translateX(-5%) rotate(-1deg); } 
  100% { transform: translateX(0%); } 
} 
.wobble.go { 
    -webkit-animation-name: wobble; 
    animation-name: wobble; 
}

/********
* pulse *
*********/

@-webkit-keyframes pulse { 
    0% { -webkit-transform: scale(1); } 
    50% { -webkit-transform: scale(1.1); } 
    100% { -webkit-transform: scale(1); } 
} 
@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.1); } 
    100% { transform: scale(1); } 
} 
.pulse.go { 
    -webkit-animation-name: pulse; 
    animation-name: pulse; 
}

/***************
* lightSpeedInRight *
****************/
@-webkit-keyframes lightSpeedInRight { 
   0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; } 
    60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; } 
    80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; } 
    100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
@keyframes lightSpeedInRight { 
    0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 
    60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 
    80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 
    100% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
.lightSpeedInRight.go { 
    -webkit-animation-name: lightSpeedInRight; 
    animation-name: lightSpeedInRight; 
    -webkit-animation-timing-function: ease-out; 
    animation-timing-function: ease-out; 
} 

/***************
* lightSpeedInLeft *
****************/
@-webkit-keyframes lightSpeedInLeft { 
   0% { -webkit-transform: translateX(-100%) skewX(30deg); opacity: 0; } 
    60% { -webkit-transform: translateX(20%) skewX(-30deg); opacity: 1; } 
    80% { -webkit-transform: translateX(0%) skewX(15deg); opacity: 1; } 
    100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
@keyframes lightSpeedInLeft { 
    0% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 
    60% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 
    80% { transform: translateX(0%) skewX(15deg); opacity: 1; } 
    100% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
.lightSpeedInLeft.go { 
    -webkit-animation-name: lightSpeedInLeft; 
    animation-name: lightSpeedInLeft; 
    -webkit-animation-timing-function: ease-out; 
    animation-timing-function: ease-out; 
} 


/*******
* Flip *
*******/
@-webkit-keyframes flip { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(0); 
        -webkit-animation-timing-function: ease-out; 
    } 
    40% { 
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg); 
        -webkit-animation-timing-function: ease-out; 
    } 
    50% { 
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); 
        -webkit-animation-timing-function: ease-in; 
    } 
    80% { 
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95); 
        -webkit-animation-timing-function: ease-in; 
    } 
    100% { 
        -webkit-transform: perspective(400px) scale(1); 
        -webkit-animation-timing-function: ease-in; 
    } 
}
@keyframes flip { 
    0% { 
        transform: perspective(400px) rotateY(0); 
        animation-timing-function: ease-out; 
    } 
    40% { 
        transform: perspective(400px) translateZ(150px) rotateY(170deg); 
        animation-timing-function: ease-out; 
    } 
    50% { 
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); 
        animation-timing-function: ease-in; 
    } 
    80% { 
        transform: perspective(400px) rotateY(360deg) scale(.95); 
        animation-timing-function: ease-in; 
    } 
    100% { 
        transform: perspective(400px) scale(1); 
        animation-timing-function: ease-in; 
    } 
} 
.flip.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flip; 
    backface-visibility: visible !important; 
    animation-name: flip; 
}

/**********
* flipInX *
**********/
@-webkit-keyframes flipInX { 
    0% { 
        -webkit-transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
    40% { 
        -webkit-transform: perspective(400px) rotateX(-10deg); 
    } 
    70% { 
        -webkit-transform: perspective(400px) rotateX(10deg); 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
} 
@keyframes flipInX { 
    0% { 
        transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
    40% { 
        transform: perspective(400px) rotateX(-10deg); 
    } 
    70% { 
        transform: perspective(400px) rotateX(10deg); 
    } 
    100% { 
        transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
} 
.flipInX.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInX; 
    backface-visibility: visible !important; 
    animation-name: flipInX; 
}

/**********
* flipInY *
**********/

@-webkit-keyframes flipInY { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
    40% { 
        -webkit-transform: perspective(400px) rotateY(-10deg); 
    } 
    70% { 
        -webkit-transform: perspective(400px) rotateY(10deg); 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
} 
@keyframes flipInY { 
    0% { 
        transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
    40% { 
        transform: perspective(400px) rotateY(-10deg); 
    } 
    70% { 
        transform: perspective(400px) rotateY(10deg); 
    } 
    100% { 
        transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
} 
.flipInY.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInY; 
    backface-visibility: visible !important; 
    animation-name: flipInY; 
}

/*****************
* Out animations *
*****************/


/************
* bounceOut *
*************/
@-webkit-keyframes bounceOut { 
    0% { 
        -webkit-transform: scale(1); 
    } 
    25% { 
        -webkit-transform: scale(.95); 
    } 
    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.1); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: scale(.3); 
    } 
} 
@keyframes bounceOut { 
    0% { 
        transform: scale(1); 
    } 
    25% { 
        transform: scale(.95); 
    } 
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    } 
    100% { 
        opacity: 0; 
        transform: scale(.3); 
    } 
} 
.bounceOut.goAway { 
    -webkit-animation-name: bounceOut; 
    animation-name: bounceOut; 
}

/************
* bounceOutUp *
*************/
@-webkit-keyframes bounceOutUp { 
    0% { 
        -webkit-transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateY(20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
} 
@keyframes bounceOutUp { 
    0% { 
        transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateY(20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
} 
.bounceOutUp.goAway { 
    -webkit-animation-name: bounceOutUp; 
    animation-name: bounceOutUp; 
}

/************
* bounceOutDown *
*************/
@-webkit-keyframes bounceOutDown { 
    0% { 
        -webkit-transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateY(-20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(2000px); 
    } 
} 
@keyframes bounceOutDown { 
    0% { 
        transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateY(-20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
} 
.bounceOutDown.goAway { 
    -webkit-animation-name: bounceOutDown; 
    animation-name: bounceOutDown; 
}


/************
* bounceOutLeft *
*************/
@-webkit-keyframes bounceOutLeft { 
    0% { 
        -webkit-transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateX(20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(-2000px); 
    } 
} 
@keyframes bounceOutLeft { 
    0% { 
        transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateX(20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(-2000px); 
    } 
} 
.bounceOutLeft.goAway { 
    -webkit-animation-name: bounceOutLeft; 
    animation-name: bounceOutLeft; 
}

/************
* bounceOutRight *
*************/
@-webkit-keyframes bounceOutRight { 
    0% { 
        -webkit-transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateX(-20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
} 
@keyframes bounceOutRight { 
    0% { 
        transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateX(-20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
} 
.bounceOutRight.goAway { 
    -webkit-animation-name: bounceOutRight; 
    animation-name: bounceOutRight; 
}

/************
* fadeOut *
*************/
@-webkit-keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 
@keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 
.fadeOut.goAway { 
    -webkit-animation-name: fadeOut; 
    animation-name: fadeOut; 
}

/************
* fadeOutUp *
*************/
@-webkit-keyframes fadeOutUp { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
} 
@keyframes fadeOutUp { 
    0% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
} 
.fadeOutUp.goAway { 
    -webkit-animation-name: fadeOutUp; 
    animation-name: fadeOutUp; 
}

/************
* fadeOutDown *
*************/
@-webkit-keyframes fadeOutDown { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(2000px); 
    } 
} 
@keyframes fadeOutDown { 
    0% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
} 
.fadeOutDown.goAway { 
    -webkit-animation-name: fadeOutDown; 
    animation-name: fadeOutDown; 
}

/************
* fadeOutLeft *
*************/
@-webkit-keyframes fadeOutLeft { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(-2000px); 
    } 
} 
@keyframes fadeOutLeft { 
    0% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(-2000px); 
    } 
} 
.fadeOutLeft.goAway { 
    -webkit-animation-name: fadeOutLeft; 
    animation-name: fadeOutLeft; 
}

/************
* fadeOutRight *
*************/
@-webkit-keyframes fadeOutRight { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
} 
@keyframes fadeOutRight { 
    0% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
} 
.fadeOutRight.goAway { 
    -webkit-animation-name: fadeOutRight; 
    animation-name: fadeOutRight; 
}
/************
* flipOutX *
*************/
@-webkit-keyframes flipOutX { 
    0% { 
        -webkit-transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
} 
@keyframes flipOutX { 
    0% { 
        transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
    100% { 
        transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
} 
.flipOutX.goAway { 
    -webkit-animation-name: flipOutX; 
    -webkit-backface-visibility: visible !important; 
    animation-name: flipOutX; 
    backface-visibility: visible !important; 
}

/************
* flipOutY *
*************/
@-webkit-keyframes flipOutY { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
} 
@keyframes flipOutY { 
    0% { 
        transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
    100% { 
        transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
} 
.flipOutY { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipOutY; 
    backface-visibility: visible !important; 
    animation-name: flipOutY; 
}

/************
* lightSpeedOutRight *
*************/
@-webkit-keyframes lightSpeedOutRight { 
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; } 
} 
@keyframes lightSpeedOutRight { 
    0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 
} 
.lightSpeedOutRight.goAway { 
    -webkit-animation-name: lightSpeedOutRight; 
    animation-name: lightSpeedOutRight; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 


/************
* lightSpeedOutLeft *
*************/
@-webkit-keyframes lightSpeedOutLeft { 
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { -webkit-transform: translateX(-100%) skewX(30deg); opacity: 0; } 
} 
@keyframes lightSpeedOutLeft { 
    0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 
} 
.lightSpeedOutLeft.goAway { 
    -webkit-animation-name: lightSpeedOutLeft; 
    animation-name: lightSpeedOutLeft; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 

} 

/************
* rotateOut *
*************/
@-webkit-keyframes rotateOut { 
    0% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(200deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOut { 
    0% { 
        transform-origin: center center; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: center center; 
        transform: rotate(200deg); 
        opacity: 0; 
    } 
} 
.rotateOut.goAway { 
    -webkit-animation-name: rotateOut; 
    animation-name: rotateOut; 
}


/************
* rotateOutUpLeft *
*************/
@-webkit-keyframes rotateOutUpLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutUpLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -transform-origin: left bottom; 
        -transform: rotate(-90deg); 
        opacity: 0; 
    } 
} 
.rotateOutUpLeft.goAway { 
    -webkit-animation-name: rotateOutUpLeft; 
    animation-name: rotateOutUpLeft; 
}

/************
* rotateOutDownLeft *
*************/

@-webkit-keyframes rotateOutDownLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutDownLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
.rotateOutDownLeft.goAway { 
    -webkit-animation-name: rotateOutDownLeft; 
    animation-name: rotateOutDownLeft; 
}
/************
* rotateOutUpRight *
*************/

@-webkit-keyframes rotateOutUpRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutUpRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
.rotateOutUpRight.goAway { 
    -webkit-animation-name: rotateOutUpRight; 
    animation-name: rotateOutUpRight; 
}

/************
* rollOut *
*************/
@-webkit-keyframes rollOut { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0px) rotate(0deg); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(100%) rotate(120deg); 
    } 
} 
@keyframes rollOut { 
    0% { 
        opacity: 1; 
        transform: translateX(0px) rotate(0deg); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(100%) rotate(120deg); 
    } 
} 
.rollOut.goAway { 
    -webkit-animation-name: rollOut; 
    animation-name: rollOut; 
}
/*****************
* Short Animations
*******************/

/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInUpShort { 
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInUpShort{
    opacity: 0; 
    -webkit-transform: translateY(20px); 
    transform: translateY(20px); 
}
.fadeInUpShort.go { 
    -webkit-animation-name: fadeInUpShort; 
    animation-name: fadeInUpShort; 
}

/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInDownShort{
    opacity: 0; 
    -webkit-transform: translateY(-20px); 
    transform: translateY(-20px); 
}
.fadeInDownShort.go { 
    -webkit-animation-name: fadeInDownShort; 
    animation-name: fadeInDownShort; 
}

/*********************
* fadeInRightShort 
*********************/
@-webkit-keyframes fadeInRightShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInRightShort { 
    0% { 
        opacity: 0; 
        transform: translateX(20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInRightShort { 
    opacity: 0; 
    -webkit-transform: translateX(20px);  
    transform: translateX(20px); 
}
.fadeInRightShort.go { 
    -webkit-animation-name: fadeInRightShort; 
    animation-name: fadeInRightShort; 
}

/*********************
* fadeInLeftShort 
*********************/
@-webkit-keyframes fadeInLeftShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(-20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInLeftShort { 
    0% { 
        opacity: 0; 
        transform: translateX(-20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInLeftShort { 
    opacity: 0; 
    -webkit-transform: translateX(-20px);  
    transform: translateX(-20px); 
}
.fadeInLeftShort.go { 
    -webkit-animation-name: fadeInLeftShort; 
    animation-name: fadeInLeftShort; 
}

#contentProduct2 #highlights {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e10c18+0,c0000b+100 */
  background: #e10c18;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e10c18 0%, #c0000b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e10c18 0%, #c0000b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e10c18 0%, #c0000b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e10c18', endColorstr='#c0000b', GradientType=1);
  /* IE6-9 */
}
#contentProduct2 #highlights:after {
  content: '';
  display: block;
  background: url('../themes/default/assets/images/after-1.webp') no-repeat;
  background-size: cover;
  height: 478px;
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
}
#contentProduct2 #highlights .list-icons li {
  margin: 40px 0;
}
#contentProduct2 #highlights .highlight-item {
  gap: 15px;
}
#contentProduct2 #highlights .highlight-item p {
  font-size: 20px;
  margin: 0;
  width: calc(100% - 80px);
}
#contentProduct2 #descriptionOms:before {
  content: '';
  display: block;
  background: url('../themes/default/assets/images/detalhe-2.webp') no-repeat;
  background-size: cover;
  height: 530px;
  position: absolute;
  top: 0;
  left: -60px;
  width: 240px;
}
#contentProduct2 #descriptionOms:after {
  content: '';
  display: block;
  background: url('../themes/default/assets/images/detalhe-3.webp') no-repeat;
  background-size: cover;
  height: 470px;
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
}
#contentProduct2 #descriptionOms .block-text {
  margin-left: 30px;
}
#contentProduct2 #descriptionOms .block-text p {
  font-size: 20px;
  color: #000;
}
#contentProduct2 #blockPlatform {
  background: #dfdfdf;
}
#contentProduct2 #blockPlatform:before {
  content: '';
  display: block;
  background: url('../themes/default/assets/images/detalhe-4.webp') no-repeat;
  background-size: cover;
  height: 170px;
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
}
#contentProduct2 #blockPlatform:after {
  content: '';
  display: block;
  background: url('../themes/default/assets/images/detalhe-5.webp') no-repeat;
  background-size: cover;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 400px;
}
#contentProduct2 #blockPlatform .block-text p {
  font-size: 40px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 1199px) {
  .caption .title-destaque {
    width: 100%;
  }
  #contentProduct2 #highlights:after {
    height: 370px;
    width: 125px;
  }
  #contentProduct2 #descriptionOms:before {
    height: 270px;
    left: -30px;
    width: 120px;
  }
  #contentProduct2 #descriptionOms:after {
    height: 400px;
    width: 80px;
  }
  #contentProduct2 #blockPlatform:before {
    height: 60px;
    width: 140px;
  }
  #contentProduct2 #blockPlatform:after {
    height: 110px;
    left: -10px;
    width: 240px;
  }
}
@media (max-width: 991px) {
  #highlights #imgHighlights img {
    height: 200px;
  }
  #descriptionOms img {
    height: 250px;
  }
  #descriptionOms figure {
    margin: 0 0 30px;
  }
  #contentProduct2 #blockPlatform:after {
    height: 80px;
    width: 200px;
  }
}
@media (max-width: 767px) {
  #contentProduct2 #highlights .highlight-item p {
    font-size: 16px;
  }
  #contentProduct2 #highlights:after {
    height: 220px;
    width: 75px;
  }
  #contentProduct2 #descriptionOms:before {
    height: 140px;
    left: -10px;
    width: 60px;
  }
  #contentProduct2 #descriptionOms:after {
    height: 140px;
    width: 50px;
  }
  #contentProduct2 #descriptionOms .block-text p {
    font-size: 16px;
  }
  #contentProduct2 #blockPlatform .block-text {
    margin-bottom: 30px;
  }
  #contentProduct2 #blockPlatform:before,
  #contentProduct2 #blockPlatform:after {
    display: none;
  }
  #blockPlatform img {
    height: 200px;
  }
}

@font-face {
    font-family: 'CoreSansC Medium';
    src: url('../themes/default/assets/fonts/CoreSansC-55Medium.eot');
    src: url('../themes/default/assets/fonts/CoreSansC-55Medium.eot?#iefix') format('embedded-opentype'),
        url('../themes/default/assets/fonts/CoreSansC-55Medium.svg#../fonts/CoreSansC-55Medium') format('svg'),
        url('../themes/default/assets/fonts/CoreSansC-55Medium.ttf') format('truetype'),
        url('../themes/default/assets/fonts/CoreSansC-55Medium.woff') format('woff'),
        url('../themes/default/assets/fonts/CoreSansC-55Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: 'CoreSansC Light';
    src: url('../themes/default/assets/fonts/CoreSansC-35Light.eot');
    src: url('../themes/default/assets/fonts/CoreSansC-35Light.eot?#iefix') format('embedded-opentype'),
        url('../themes/default/assets/fonts/CoreSansC-35Light.svg#../fonts/CoreSansC-35Light') format('svg'),
        url('../themes/default/assets/fonts/CoreSansC-35Light.ttf') format('truetype'),
        url('../themes/default/assets/fonts/CoreSansC-35Light.woff') format('woff'),
        url('../themes/default/assets/fonts/CoreSansC-35Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: 'CoreSansC ExtraBold';
    src: url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.eot');
    src: url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.svg#../fonts/CoreSansC-75ExtraBold') format('svg'),
        url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.ttf') format('truetype'),
        url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.woff') format('woff'),
        url('../themes/default/assets/fonts/CoreSansC-75ExtraBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: 'CoreSansC Bold';
    src: url('../themes/default/assets/fonts/CoreSansC-65Bold.eot');
    src: url('../themes/default/assets/fonts/CoreSansC-65Bold.eot?#iefix') format('embedded-opentype'),
        url('../themes/default/assets/fonts/CoreSansC-65Bold.svg#../fonts/CoreSansC-65Bold') format('svg'),
        url('../themes/default/assets/fonts/CoreSansC-65Bold.ttf') format('truetype'),
        url('../themes/default/assets/fonts/CoreSansC-65Bold.woff') format('woff'),
        url('../themes/default/assets/fonts/CoreSansC-65Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'CoreSansC';
    src: url('../themes/default/assets/fonts/CoreSansC-45Regular.eot');
    src: url('../themes/default/assets/fonts/CoreSansC-45Regular.eot?#iefix') format('embedded-opentype'),
        url('../themes/default/assets/fonts/CoreSansC-45Regular.svg#../fonts/CoreSansC-45Regular') format('svg'),
        url('../themes/default/assets/fonts/CoreSansC-45Regular.ttf') format('truetype'),
        url('../themes/default/assets/fonts/CoreSansC-45Regular.woff') format('woff'),
        url('../themes/default/assets/fonts/CoreSansC-45Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.8);
    outline: 1px solid slategrey;
}

.font-semi-bold {
    font-weight: 500;
}

.mask {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 8;
    display: none;
}

.img-100 {
    width: 100%;
    margin: 0;
}

figure {
    margin: 0;
}

.rounded-35 {
    border-radius: 35px;
}

.portrait {
    border: solid 6px;
}


/* --- Transitions --- */

.transition-all {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.transition-color {
    transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
}

.transition-background {
    transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
}

.transition-opacity {
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
}

/* --- End Transitions --- */

body, html {
    max-width: 100%;
    /*overflow-x: hidden;*/
}

a, a:hover, a:focus {
    color: inherit;
    outline: none;
    text-decoration: inherit;
}

a:hover {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.pad {
    padding: 0;
}

body {
    color: #fff;
    font-family: 'CoreSansC', sans-serif;
}

.CoreSansC-bold {
    font-family: 'CoreSansC Bold', sans-serif;
}

.CoreSansC-light {
    font-family: 'CoreSansC Light', sans-serif;
}

.CoreSansC-extrabold {
    font-family: 'CoreSansC ExtraBold', sans-serif;
}

.CoreSansC-medium {
    font-family: 'CoreSansC Medium', sans-serif;
}

ul {
    margin: 0 auto;
    padding: 0;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.dib {
    display: inline-block;
}

.pos-relative {
    position: relative;
}

.bg-default {
    background: #58595B;
}

.jumbotron {
    padding: 2rem 0;
    margin: 0;
}

h1, h2, h3, h4 {
    font-weight: normal;
    margin-top: 0;
    line-height: 1.5;
}

.padding-block {
    padding: 50px 0;
}


.color-default {
    color: #58595B;
}

.color-default-red {
    color: #FF1D25;
}

.visible-xs {
    display: none;
}

.visible-md {
    display: none;
}

.visible-lg {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}


.btn-default {
    font-size: 16px;
    cursor: pointer;
    background-size: 100% 0%;
    background-position: 50% 50%;
    padding: 15px 40px;
    border: none;
    background: #58595B;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
    background-size: 100% 0%;
    background-position: 50% 50%;
}

.btn-default:hover {
    background-size: 100% 100%;
    background-image: linear-gradient(#16162e, #16162e);
    background-repeat: no-repeat;
    color: #fff;
    transition: background-size .3s, color .3s;
}


.btn-default-red {
    font-size: 20px;
    cursor: pointer;
    background-size: 100% 0%;
    background-position: 50% 50%;
    padding: 10px 80px;
    border: none;
    background: #FF1D25;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    background-size: 100% 0%;
    background-position: 50% 50%;
}

.btn-default-red:hover {
    background-size: 100% 100%;
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    color: #FF1D25;
    transition: background-size .3s, color .3s;
}

.btn-default-white {
    font-size: 20px;
    cursor: pointer;
    background-size: 100% 0%;
    background-position: 50% 50%;
    padding: 10px 80px;
    border: none;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #FF1D25;
    background-size: 100% 0%;
    background-position: 50% 50%;
}

.btn-default-white:hover {
    background-size: 100% 100%;
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    color: #FF1D25;
    transition: background-size .3s, color .3s;
}

video::-webkit-media-controls-volume-slider, video::-webkit-media-controls-mute-button, video::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-toggle-closed-captions-button, video::-webkit-media-controls-return-to-realtime-button, video::-webkit-media-controls-rewind-button, video::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-back-button {
    display: none;
}


/*END STYLES*/

/*HEADER*/
header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    color: #16162e;
    width: 100%;
    background: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;

    -webkit-box-shadow: 1px -1px 6px 0 #000;
    -moz-box-shadow: 1px -1px 6px 0 #000;
    box-shadow: 1px -1px 6px 0 #000;
}

.header {
    padding: 1% 3%;
}

#button-area a {
    background: #8f6d23;
    padding: 4px 20px;
    height: 45px;
    display: inline-block;
    color: #fff;
}

#button-area a:hover {
    opacity: 0.6;
}

.figure-distributor figcaption {
    font-size: 10px;
    margin-top: 5px;
    color: #16162e;
}

.figure-distributor img {
    max-width: 45px;
}

.menu li a {
    font-size: 12px;
    position: relative;
    cursor: pointer;
}

.menu li a.active,
.menu li a:hover {
    color: #EC1C24;
}


.menu li:last-child {
    margin-right: 0;
}

.menu li {
    margin: 0 8px;
}

.logo a figure img {
    max-width: 140px;
}

.dropdown-menu {
    padding: 0;
}

.menu li a.dropdown-item {
    margin: 5px 0;
}

/*END HEADER*/

/*HOME*/
.banner-conceptual {
    position: relative;
}

.banner-conceptual img {
    /* height: calc(100vh - 80px); */
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
}


.content-banner-text {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    background: rgba(0, 0, 0, 0.6);
}

main {
    margin-top: 80px;
}

.arrow-banner {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 30px;
    z-index: 8;
    cursor: pointer;
}

.arrow-banner .scroller-text {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #333;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arrow-banner:hover .scroller-text {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 1;
}

.caption h1 {
    font-size: 45px;
    line-height: 1.2;
}

.caption .title-destaque {
    width: 80%;
}

.caption .title-destaque h1 strong {
    display: block;
    color: #d8ff00;
    text-shadow: 1px 0px 5px #d8ff00;
}


#banner-intern .caption .title-destaque p {
    font-size: 18px;
}

.btn-transparent {
    background: transparent;
    padding: 20px;
    font-size: 16px;
    margin: 0px;
    font-weight: 600;
    display: inline-block;
    line-height: 1;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    background-size: 100% 0%;
    background-position: 50% 50%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}


.btn-transparent:hover {
    background-size: 100% 100%;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    color: #424142;
    transition: background-size .3s, color .3s;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-carousel.owl-theme .owl-dots .owl-dot {
    outline: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0;
    display: block;
    opacity: 1;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border: 1px solid #000;
    background: none;
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
}

.owl-carousel.owl-theme .owl-dot.active {}

.owl-dots {
    margin: 40px 0 0;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    width: 100%;
}

.owl-carousel.owl-theme .owl-nav [class*="owl-"] {
    background: transparent;
    color: #000;
    font-size: 30px;
    line-height: 1;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    position: absolute;
    margin: 0;
}

.owl-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #EC1C24;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.block-text p {
    line-height: 1.8;
    color: #58595B;
    margin-bottom: 10px;
}

.block-text h1,
.block-text h2 {
    color: #58595B;
    font-size: 50px;
}

.block-text strong {
    display: block;
    font-weight: 900;
}

#text-about .block-text strong {
    display: inline-block;
}

.block-title {
    margin-bottom: 30px;
}

.text-column .block-title {
    border-bottom: 2px solid #58595B;
}

.item-differential figure {
    height: 110px;
}

.item-differential h4 {
    margin-bottom: 10px;
    font-size: 30px;
}

#products-home {
    background: #E9EAEA;
}

#products-kitvouke {
    background: #B8BABC;
}

#products-kitvouke p {
    color: #58595B;
}

.list-products li {
    margin: 15px 0;
}

.list-products li a:hover .item-product {
    background-color: rgba(236, 28, 36, 1);
}

.item-product {
    background-color: rgba(236, 28, 36, 0.6);
    padding: 60px 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
}

.item-product h3 {
    border-bottom: 1px solid;
    padding-bottom: 8px;
    font-size: 30px;
    font-family: "CoreSansC Bold", sans-serif;
}

.item-product p {
    font-size: 20px;
    margin: 0;
    font-family: "CoreSansC Light", sans-serif;
}

.post-date {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all linear;
    -o-transition: .3s all linear;
    transition: .3s all linear;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    color: #fff;
    background: #212121;
    width: 4rem;
    padding: .715rem .9rem;
    line-height: 1.3;
    font-weight: 500;
}

.list-blog li a:hover .post-date {
    opacity: 1;
    visibility: visible;
}

.list-blog li {
    margin: 15px 0;
}

.list-blog li a:hover img,
.list-downloads li a:hover img {
    -webkit-transform: rotate(3deg) scale(1.1);
    -moz-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    -o-transform: rotate(3deg) scale(1.1);
    transform: rotate(3deg) scale(1.1);
}

.post-grid img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.post-text-block {
    background: #58595B;
    height: 145px;
    overflow: hidden;
    padding: 10px 20px 20px;
}

.title-date {
    margin: 10px 0;
}

.title-date h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
}

.title-date span {
    font-size: 14px;
}

.text-summary p {}

.text-summary {
    /*height: 72px;*/
    /*overflow: hidden;*/
}

.list-blog li a:hover:hover .post-link-holder i {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(1rem, -10%);
    -o-transform: translate(1rem, -10%);
    transform: translate(1rem, -10%);
}

.post-link-holder i {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, -10%);
    -o-transform: translate(0, -10%);
    transform: translate(0, -10%);
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.post-link-holder {
    font-size: 14px;
    font-weight: 600;
}

.form-authorized {
    background-image: linear-gradient(0deg, rgba(102, 102, 102, 0.81), rgba(102, 102, 102, 0.81)), url('../themes/default/assets/images/form-authorized.png');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.box-img img {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    height: 90vh;
}

/*END HOME*/

/*INTERN*/

.bg-black {
    background: #000;
}

.breadcrumb {
    background: none;
    padding: .75rem 0;
    margin: 0;
}

.breadcrumb li.active a, .breadcrumb li a:hover {
    color: #999;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/*PRODUCT INTERN*/
#banner-intern {
    background: rgba(102, 102, 102, 0.6);
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#banner-intern .caption p {
    font-size: 25px;
}

#banner-intern a {
    padding: 8px 40px;
    background: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: inline-block;

}

#banner-intern button {
    background: none;
    color: #FF1D25;
    cursor: pointer;
    font-size: 20px;
    border: none;
}

#list-icons-product {
    background: url("../themes/default/assets/images/banner-icons-product.jpg") no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
}

.item-icon figure {
    height: 110px;
    margin-bottom: 10px;
}

.item-icon p {
    font-size: 20px;
}

.list-icons li {
    margin: 15px 0;
}

video {
    max-height: 80vh;
    width: 100%;
    object-fit: contain;
    -o-object-fit: contain;
    background-color: #000;
}

.figure-warranty-product img {
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    height: 380px;
}

.block-warranty {
    background: #58595B;
    padding: 120px 30px;
}

.text-block-warranty p {
    margin-bottom: 5px;
}

#table-product li {
    width: 200px;
    padding: 20px;
}

#table-product li.table-width {
    width: 255px;
}

#table-product li:last-child {
    border: none;
}

.nav-table li {
    border-right: 2px solid #fff;
}

#table-product h4 {
    margin: 0;
    line-height: 1.3;
}

.content-table li {
    border-right: 2px solid #58595B;
}

.content-table li p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0;
}

.content-table li p {
    border-bottom: 1px solid #58595B;
    margin: 0 -20px 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.policy-table p {
    color: #666666;
    margin: 15px 0;
}

#infos-product {
    position: relative;
    z-index: 2;
}

#text-info-product {
    position: relative;
    top: -80px;
}

#blog-pages {
    background: #E9EAEA;
}

.title-form h3 {
    color: #FF1D25;
    font-size: 40px;
    margin: 0;
}

.title-form p {
    color: #666666;
    font-size: 20px;
}

#form-product {
    padding: 10px 0 80px;
}

.box-legislacao {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#58595b+0,58595b+47,ec1c24+55,ec1c24+100 */
    background: #58595b;
    /* Old browsers */
    background: -moz-linear-gradient(-35deg, #58595b 0%, #58595b 55%, #ec1c24 0%, #ec1c24 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-35deg, #58595b 0%, #58595b 55%, #ec1c24 0%, #ec1c24 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(125deg, #58595b 0%, #58595b 55%, #ec1c24 0%, #ec1c24 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#58595b', endColorstr='#ec1c24', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    padding: 100px 20px 10px;
}

.box-legislacao h3 {
    font-size: 40px;
}

.lupa-text {
    float: right;
    text-align: center;
}

.lupa-text figure {
    margin-bottom: 15px;
}

.lupa-text p {
    font-size: 14px;
}

/*END PRODUCT INTERN*/

/*CONTACT*/
.item-contact {
    background: #FF1D25;
    text-align: center;
    color: #fff;
    padding: 80px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 15px 0;
}

#contact ul li a:hover .item-contact {
    opacity: 0.6;
}

.item-contact i {
    margin-bottom: 10px;
    display: block;
    font-size: 120px;
}

.item-contact span {
    font-size: 34px;
}

.card-header {
    padding: 0;
    margin-bottom: 0;
    border-bottom: none;
    background: none;
}

.card-header button {
    padding: 15px 20px;
    text-align: left;
    border: none;
    cursor: pointer;
    background: #E9EAEA;
    color: #58595B;
}

.card-header button[aria-expanded="true"] {
    background: #58595B;
    color: #fff;
}

.card-body p {
    margin: 0;
    line-height: 1.8;
}

.accordion .card {
    border: 1px solid #707070;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.card-body {
    color: #58595B;
}

/*END CONTACT*/

/*SEJA UM AUTORIZADO*/

#join-team {
    background: #EC1C24;
}

#join-team h2 {
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

#join-team p {
    color: #fff;
    font-size: 20px;
}

.text-column ul li {
    list-style: inside;
    line-height: 1.5;
    margin: 5px 0;
    font-size: 18px;
}

#benefits-authotized .text-column img {
    height: 500px;
    object-fit: cover;
}

/*END SEJA UM AUTORIZADO*/

/*AREA AUTORIZADOS LOGIN*/

#authorized-area {
    background-color: #E9EAEA;
    padding: 120px 0;
    border: 1px solid #707070;
}

.logos figure:first-child {
    border-right: 2px solid #5B5B5F;
    padding-right: 30px;
    margin-right: 30px;
}


.block-login {
    width: 70%;
    margin: 60px auto 0;
    background: #fff;
    padding: 60px;
    border: 1px solid #58595B;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.form-group label {
    color: #58595B;
    padding-left: 20px;
    margin-bottom: 4px;
    font-size: 20px;
}

.block-login a:hover,
.bg-form a:hover {
    color: #EC1C24;
}

.block-login .send-red button {
    padding: 8px 120px;
}

/*END AREA AUTORIZADOS LOGIN*/

/*AREA AUTORIZADOS*/

.list-folders li {
    margin: 15px 0;
}

.list-folders li .item-folder {
    background: #E9EAEA;
    padding: 30px;
    color: #58595B;
    font-size: 24px;
}

.list-folders li a:hover .item-folder {
    color: #fff;
    background: #333;
}

/*END AREA AUTORIZADOS*/

/*AREA AUTORIZADOS PASTA*/

#area-authorized-folders .block-text h2 {
    display: inline-block;
    border-bottom: 2px solid;
    padding-right: 120px;
}

.list-downloads li {
    margin: 15px 0;
}

.list-downloads li .item-download {
    border: 2px solid;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    height: 100%;
}

.list-downloads li figure {
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
}

.infos-download {
    padding: 8px 20px;
    border-top: 2px solid;
}

.text-download h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.text-download p {
    margin: 0;
}

.arrow-download {
    font-size: 35px;
    margin-left: 10px;
    width: 35px;
}

.item-download img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/*END AREA AUTORIZADOS PASTA*/

/*ONDE COMPRAR RESULTADO*/
.list-items-result li .item-result {
    background: rgba(88, 89, 91, 0.6);
    padding: 15px 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin: 15px 0;
}

.list-items-result li a:hover .item-result {
    background: rgba(88, 89, 91, 1);
}

.list-items-result li p {
    margin: 0;
}

.list-items-result li h3 {
    font-size: 20px;
    margin: 0;
}

/*END ONDE COMPRAR RESULTADO*/

/*REGISTER GARANTIA*/

#add-block-film {
    cursor: pointer;
}

#add-block-film:hover {
    color: #000;
}

/*END REGISTER GARANTIA*/















/*BLOG*/

.pagination {
    margin-top: 30px;
}

.pagination li a {
    color: #b4b4b4;
    border: 2px solid;
    margin-right: 10px;
    padding: 10px 15px;
    line-height: 1;
    font-size: 18px;
}

.pagination li a:hover, .pagination li.active a {
    color: #000;
}

.page-blog .card-body {
    color: #010101;
    padding: 20px 0;
}

.card-columns .card {
    border: none;
    overflow: hidden;
}

.date i {
    color: #424142;
    font-size: 30px;
    margin-right: 20px;
}

.date span {
    font-size: 15px;
    font-style: italic;
    color: #777676;
}

.page-blog .card-body h5 {
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0;
}

.page-blog .list-button li a:hover i:first-child:before {
    padding-left: 0;
}

#blog-intern img {
    max-height: 70vh;
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
}

#blog-intern .post-blog {
    color: #010101;
}

#blog-intern .img-news-detail figure {
    float: left;
    margin: 0 20px 20px 0;
}

#blog-intern .img-news-detail img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    -o-object-fit: cover;
}

/*END BLOG*/

/*END INTERN*/

/*FOOTER*/

#content-footer {
    background-color: #FF1D25;
}

#content-footer ul li.margin-news {
    margin: 0 60px 0 30px;
}

.info-contact p {
    word-wrap: break-word;
}

.network a:hover i {
    color: #000;
}

.network img {
    max-width: 30px;
    max-height: 30px;
    margin: 0 5px;
}

.content-footer h4 {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

.content-footer .owl-nav i {
    font-size: 30px;
    margin: 0;
}

.content-footer i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.item-contact-footer a {
    display: block;
}

.item-contact-footer {
    margin: 15px 0;
}

.item-contact-footer span {
    font-size: 18px;
}

.item-contact-footer span.phone-footer {
    font-size: 25px;
}

#menu-footer a:first-child {
    margin-top: 0;
}

#menu-footer a {
    font-size: 16px;
    margin: 15px 0;
    display: block;
}

#menu-footer li a:hover {
    color: #000;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #808080;
}

.text-footer p {
    font-size: 13px;
    margin: 20px 0;
    line-height: 2;
}

.copyright figure {
    margin-left: 10px;
}

.box-info h5 {
    font-weight: 600;
    font-size: 16px;
}

.box-info p {
    margin: 15px 0;
    font-size: 16px;
}

footer .network i {
    font-size: 30px;
    margin-right: 20px;
}

/*END FOOTER*/

/*SETA TOPO*/

.arrow-up {
    position: fixed;
    right: 5px;
    bottom: 0px;
    cursor: pointer;
    font-size: 12px;
    z-index: 9;
    display: none;
    color: #fff;
    text-shadow: 0px 1px 1px #000;
    background: rgba(0, 0, 0, .4);
    padding: 5px 10px;
}

.arrow-up:hover {
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
}

.arrow-up span {
    display: block;
}

/*END SETA TOPO*/

/* FORMULÁRIO */
.btn.btn-default.focus, .btn.btn-default:focus, .btn.btn-default:hover {
    color: inherit;
}

.tooltip-inner {
    background: #424142;
    color: #fff;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
    border-left-color: #424142;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #424142;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #424142;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
    border-right-color: #424142;
}

textarea.form-control {
    height: 108px;
    resize: none;
}

.form-control:disabled, .form-control[readonly] {
    background: none;
}

.form-control[readonly]:focus {
    background: none;
    border-color: inherit;
}

#btn-upload {
    border-radius: 0;
    border: 1px solid #fff;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

select.form-control {
    padding: 6px 10px;
    color: #58595B;
}

select.form-control:focus {
    color: #000;
}

.title-form a {
    display: block;
    letter-spacing: 1px;
    font-size: 36px;
}

.form-group {
    margin-bottom: 15px;
}


.button-search {
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
    background: none;
    border: none;
    color: #58595B;
}

#search {
    width: 160px;
    padding-right: 40px;
}


.form-control {
    height: 50px;
    color: #424142;
    font-size: 14px;
    width: 100%;
    border: 2px solid #58595B;
    padding: 7px 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: transparent;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    background: #b0afaf;
    color: #000;
    border-color: #000;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

header figure.top-logo {
    top: -45px;
}

.form-control::placeholder {
    color: #58595B;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #58595B !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #58595B !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #58595B !important;
}

:-ms-input-placeholder {
    color: #58595B !important;
}

.form-white .form-control {
    border-color: #fff;
    color: #fff;
}

.form-white .form-control::placeholder {
    color: #fff;
}

.form-white ::-webkit-input-placeholder {
    color: #fff !important;
}

.form-white :-moz-placeholder {
    /* Firefox 18- */
    color: #fff !important;
}

.form-white ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff !important;
}

.form-white :-ms-input-placeholder {
    color: #fff !important;
}


.form-red .form-control {
    border-color: #FF1D25;
}


.send button {
    color: #666;
    background: #fff;
    border: none;
    padding: 10px 80px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

.send button:hover {
    opacity: 0.8;
}

.select-arrow select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-arrow select:focus {
    background: none;
}

.select-arrow:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
    top: 15px;
    right: 20px;


    border-left: 15px solid transparent;
    border-right: 15px solid transparent;

    border-top: 20px solid #58595B;
}

.send-red button {
    background: #FF1D25;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 10px 60px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.send-red button:hover {
    opacity: 0.6;
}



/* END FORMULÁRIO */

/*RESPONSIVO*/

/* Large devices (desktops, less than 1200px) TABLET DEITADO */
@media (max-width: 1199px) {
    .visible-lg {
        display: block !important;
    }

    .hidden-lg {
        display: none;
    }

    .icon-navicon i {
        font-size: 25px;
        cursor: pointer;
        vertical-align: middle;
    }

    .icon-navicon span {
        font-size: 20px;
        margin-left: 20px;
        vertical-align: middle;
        letter-spacing: 1px;
    }

    header {
        min-height: inherit;
    }

    nav.menu {
        display: none;
        /*background: #a1cb6d;*/
        margin: 20px 0px 0px;
    }

    .menu ul li {
        font-size: 24px;
        text-align: left;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, .2);
    }

    .menu li a {
        letter-spacing: 1px;
        padding: 15px;
        display: block;
    }

    header {
        position: static;
    }

    main {
        margin-top: 0;
    }

    .menu li {
        margin: 0 7px;
        text-align: center;
    }

    .menu ul li.position-relative {
        border-top: none;
    }

    #search {
        width: 100%;
    }

    .title-date h3 {
        font-size: 14px;
    }

    .post-text-block {
        height: 170px;
    }

    #content-footer ul li.margin-news {
        margin: 0 50px 0 30px;
    }

    .caption h1 {
        font-size: 40px;
    }

    #blog-intern img {
        max-height: 40vh;
    }

    /*END HOME*/

    /*GARANTIA*/
    .banner-conceptual img {
        /* height: 50vh; */
    }

    /*END GARANTIA*/

    .figure-warranty-product img {
        height: 350px;
    }

    .box-legislacao {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#58595b+0,58595b+47,ec1c24+55,ec1c24+100 */
        background: #58595b;
        /* Old browsers */
        background: -moz-linear-gradient(-45deg, #58595b 0%, #58595b 60%, #ec1c24 0%, #ec1c24 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(-45deg, #58595b 0%, #58595b 60%, #ec1c24 0%, #ec1c24 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(135deg, #58595b 0%, #58595b 60%, #ec1c24 0%, #ec1c24 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#58595b', endColorstr='#ec1c24', GradientType=1);
        /* IE6-9 fallback on horizontal gradient */
    }

    .lupa-text img {
        max-width: 60%;
    }
}


/* Medium devices (tablets, less than 992px) TABLET */
@media (max-width: 991px) {
    .visible-md {
        display: block;
    }

    .mb-5, .my-5 {
        margin-bottom: 1.5rem !important;
    }

    .hidden-md {
        display: none;
    }

    .caption h1 {
        width: 100%;
    }

    #blog-intern .img-news-detail img {
        width: 400px;
        height: 300px;
    }

    #blog-intern img {
        max-height: 30vh;
    }

    .header {
        padding: 3%;
    }


    #home .banner-conceptual img, #services .banner-conceptual img {
        /* height: 30vh; */
    }

    .block-text h1,
    .block-text h2 {
        font-size: 35px;
    }

    section#about-home img {
        height: 400px;
        object-fit: cover;
        -o-object-fit: cover;
        width: 100%;
    }

    .item-product p {
        font-size: 18px;
    }

    .box-img img {
        height: 30vh;
    }

    #content-footer ul li.margin-news {
        margin: 0;
    }

    /*END HOME*/

    /*AREA AUTORIZADOS*/
    .block-login {
        width: 100%;
    }

    #area-authorized-folders .block-text h2 {
        display: block;
        padding-right: 0;
    }

    /*END AREA AUTORIZADOS*/

    /*PRODUCT*/
    #table-product h4 {
        font-size: 16px;
    }

    .figure-warranty-product img {
        height: auto;
        max-height: 350px;
    }

    .item-product h3 {
        font-size: 25px;
    }

    .lupa-text {
        float: none;
        margin: 20px -20px -10px -20px;
        background-color: #ec1c24;
        padding: 20px;
    }

    .box-legislacao {
        background: #58595b;
    }

    .lupa-text img {
        max-width: 20%;
    }

    /*END PRODUCT*/

    /*garantia*/
    .banner-conceptual img {
        /* height: 30vh; */
    }

    /*END GARANTIA*/

    /*ONDE COMPRAR*/

    .h1, h1 {
        font-size: 2rem;
    }

    /*END ONDE COMPRAR*/

    /*SEJA UM AUTORIZADO*/

    #benefits-authotized .text-column img {
        height: auto;
    }

    /*END SEJA UM AUTORIZADO*/

}

/* Small devices (landscape phones, less than 768px)  md*/
@media (max-width: 767px) {
    .visible-xs {
        display: block;
    }

    .hidden-xs {
        display: none !important;
    }

    .h2, h2 {
        font-size: 1.8rem;
    }

    .mt-5, .my-5 {
        margin-top: 2rem !important;
    }

    .owl-carousel.owl-theme .owl-dots .owl-dot span {
        width: 35px;
        height: 35px;
    }

    .block-title h2 {
        line-height: 1.3;
    }

    .nav-tabs .nav-item {
        width: 100%;
        margin-right: 0;
    }

    .padding-block {
        padding: 30px 0;
    }

    .owl-carousel .banner-conceptual .owl-stage-outer, .banner-conceptual img {
        /* height: 60vh !important; */
    }

    section#about-home img {
        height: auto;
    }

    #content-footer ul li.margin-news {
        margin: 30px 0;
    }

    .items-contact, address span {
        width: auto;
    }

    .copyright p {
        margin: 30px 0;
        font-size: 18px;
        text-align: left;
    }

    /*END HOME*/

    /*AREA AUTORIZADOS*/
    .breadcrumb li a {
        font-size: 14px;
    }

    .logos figure:first-child {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .logos figure {
        text-align: center;
    }

    .block-login {
        padding: 20px;
    }

    .block-login h1 {
        font-size: 20px;
    }

    #authorized-area {
        padding: 50px 0;
    }

    #banner-intern .caption p {
        font-size: 20px;
    }

    #banner-intern {
        padding: 60px 0;
    }

    /*END AREA AUTORIZADOS*/

    /*BLOG*/
    .caption h1 {
        font-size: 25px;
    }

    #blog-intern img {
        max-width: 100%;
    }

    #blog-intern .img-news-detail img {
        width: 100%;
        height: 300px;
    }

    #blog-intern .img-news-detail figure {
        float: none;
        margin: 0 0 20px;
    }

    /*END BLOG*/

    /*PRODUCT*/
    .block-warranty {
        padding: 30px;
    }

    .block-warranty figure {
        text-align: center;
        margin-top: 20px;
    }

    #table-product li, #table-product li.table-width {
        width: auto;
    }

    .content-table li {
        border-right: none;
    }

    #table-product h4 {
        margin: 0 0 20px;
        font-size: 20px;
    }

    #text-info-product {
        top: -20px;
    }

    .lupa-text img {
        max-width: 40%;
    }

    .box-legislacao {
        padding: 40px 20px 10px;
    }

    /*END PRODUCT*/

    /*ONDE COMPRAR*/
    .h1, h1 {
        font-size: 1.5rem;
    }

    figure.img-authorized {
        margin-bottom: 20px;
        text-align: center;
    }

    .item-route {
        margin: 15px 0;
    }

    /*END ONDE COMPRAR*/

    .content-form a {
        display: block;
        margin-top: 20px;
    }

    .figure-distributor figcaption {
        font-size: 14px;
    }

}

/* Extra small devices (portrait phones, less than 576px) sm*/
@media (max-width: 575px) {
    .block-text p {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    .h2, h2 {
        font-size: 1.5rem;
    }

    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 20px;
    }

    #blog-intern img {
        max-width: 100%;
    }

    .items-contact {
        display: inline-block;
        width: 68%;
        vertical-align: middle;
        font-size: 15px;
    }

    .list-contact li i {
        vertical-align: middle;
        display: inline-block;
    }

    .owl-carousel .banner-conceptual .owl-stage-outer, .banner-conceptual img {
        /* height: 22vh !important; */
    }


}

@media (max-width: 320px) {}

.bg-gray {
    background: #58595B;
}

.no-gutters {
    padding-left: 0;
    padding-right: 0;
}

.row-result {
    background: #969698;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 8px;
}

.black {
    color: #000;
}

.fill {
    width: 100%;
    height: 595px;
    background-position: center !important;
    background-size: cover !important;
}

.post-blog img {
    width: unset !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}