:root {
    --airPadding: 50px 25px;
    --accent: #DA1B28;
    --accentLight: #ff4450;
    --dark: #1D1D1D;
    --light: whitesmoke;
    --marginBottom: 0 0 50px 0;
}
* {
    box-sizing: border-box;
    font-family: 'Acumin', sans-serif;
    margin: 0;
    padding: 0;
}
@font-face{
    font-family: "AtlasRegular";
    src: url(../webfonts/AtlasGrotesk-Regular.woff);
}
@font-face{
    font-family: "AtlasMedium";
    src: url(../webfonts/AtlasGrotesk-Medium.woff);
}
@font-face{
    font-family: "AtlasBlack";
    src: url(../webfonts/AtlasGrotesk-Black.woff);
}
@font-face{
    font-family: "Acumin";
    src: url(../webfonts/AcuminVariableConcept.otf);
}
body {
    
    font-size: 16px;
    overflow-x: hidden;
    padding: 70px 0 0 0;
}
.bodyPrim{
    background-color: #fff;
}
.bodyAlt{
    background-color:#1D1D1D;

}
img, video {
    max-width: 100%;
}
header#mainHeader {
    background-color: #272727;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
header#mainHeader .mainNav {
    width: 100%;
}
header#mainHeader .mainNav .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
header#mainHeader .mainNav .container .areaLogo {
    order: 1;
    padding: 25px;
    text-align: center;
    width: 50%;
}
header#mainHeader .mainNav .container .areaLogo img {
    max-width: 200px;
}
header#mainHeader .mainNav .container .areaMenu {
    display: none;
    order: 3;
    width: 100%;
}
header#mainHeader .mainNav .container .areaMenu ul.menuItems {
    list-style: none;
    margin: 0;
    padding: 0;
}
header#mainHeader .mainNav .container .areaMenu ul.menuItems li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
header#mainHeader .mainNav .container .areaMenu ul.menuItems li a.menuLink {
    color: #f2f2f2;
    display: block;
    padding: 15px 25px;
    text-decoration: none;
}
header#mainHeader .mainNav .container .areaToggler {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    order: 2;
    padding: 25px;
    width: 50%;
}
header#mainHeader .mainNav .container .areaToggler button {
    align-items: center;
    background-color: transparent;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    height: 25px;
    outline: 0;
    width: 40px;
}
header#mainHeader .mainNav .container .areaToggler button .line {
    background-color: rgba(255,255,255,0.5);
    height: 2px;
    margin: 0;
    width: 100%;
}
header#mainHeader .current {
    border-bottom: 3px solid #DA1B28;
}
footer {
    background-color: #272727;
    padding: var(--airPadding);
    text-align: left;
}
footer .fooCol:not(:last-child) {
    margin: 0 0 35px 0;
}
footer .fooCol .fooTitle {
    color: var(--accent);
    margin: 0 0 20px 0;
}
footer .fooCol .fooText {
    color: #a2a2a2;
}
footer .fooCol .fooText ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .fooCol .fooText ul li:not(:last-child) {
    margin: 0 0 25px 0;
}
footer .fooCol.fooSocialMedia .fooText ul {
    display: flex;
}
footer .fooCol.fooSocialMedia .fooText ul li {
    margin: 0 25px 25px 0;
}
footer .fooCol.fooSocialMedia .fooText ul li a {
    font-size: 24px; 
}
footer .fooCol .fooText a {
    color: #a2a2a2;
    position: relative;
    text-decoration: none;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
footer .fooCol .fooText a:hover {
    color: var(--accentLight);
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
footer .fooCol .fooText a:before {
    background-color: #a2a2a2;
    bottom: -10px;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    width: 15px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
footer .fooCol .fooText a:hover:before {
    background-color: var(--accentLight);
    width: 100%;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#pageLoader {
    align-items: center;
    background-color: var(--accent);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
#pageLoader .cont {
    max-width: 200px;
}
#screenHeroes {
    align-items: center;
    background-color: black;
    display: flex;
    height: 80vh;
    justify-content: center;
    padding: var(--airPadding);
    position: relative;
    width: 100%;
}
#screenHeroes .imageBg {
    background-color: black;
    background-image: url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
#screenHeroes .videoBg {
    background-color: black;
    display: none;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 0;
}
#screenHeroes .videoBg video {
    height: auto;
    opacity: 0.4;
    pointer-events: none;
    width: 100%;
}
#screenHeroes .container {
    position: relative;
    z-index: 2;
}
#screenHeroes h1 {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 25px 0;
}
#screenHeroes h2 {
    color: white;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
}
#screenHeroes .cta {
    margin: 60px 0 0 0;
}
#screenServicios {
    background-color: white;
    padding: var(--airPadding);
}
#screenServicios .areaInfo {
    color: var(--dark);
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 50px 0;
}
#screenServicios .item:not(:last-child) {
    margin: 0 0 30px 0;
}
#screenServicios .item .itemImage {
    text-align: center;
}
#screenServicios .item .itemImage img {
    max-width: 150px;
}
#screenServicios .item .itemTitle h3 {
    font-weight: bold;
    font-size: 22px;
    margin: 0;
    text-align: center;
}
#screenServicios .item .itemDesc {
    font-size: 18px;
    font-weight: normal;
    margin: 20px 0 0 0;
    text-align: center;
}
#screenCase {
    background-color: var(--dark);
    padding: var(--airPadding);
}
#screenCase h2.sectionTitle {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px 0;
}
#screenCase h2.sectionTitle img {
    height: auto;
    margin: 0 0 25px 0;
    max-width: 250px;
}
#screenCase .sectionMiniTitle {
    color: white;
    font-size: 22px;
    font-weight: normal;
    margin: 0 0 50px 0;
}
#screenCase .caseInfo {
    color: white;
    font-size: 22px;
}
#screenCase .caseInfo .areaLeft{
    margin: 0 0 15px 0;
}
#screenCase .caseImages {
    color: white;
    margin: 50px 0 0 0;
}
#screenCase .caseImages .item:not(:last-child) {
    margin: 0 0 100px 0;
}
#screenCase .caseImages .item .itemImage {
    height: 350px;
    margin: 0 0 30px 0;
    overflow: hidden;
}
#screenCase .caseImages .item .itemImage img {
    transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    transform-origin: top;
    -moz-transform-origin: top;
    -webkit-transform-origin: top;
}
#screenCase .caseImages .item .itemTitle {
    font-weight: bold;
    font-size: 22px;
    margin: 0;
    text-align: center;
}
#screenCase .caseImages .item .itemDesc {
    margin: 25px 0 0 0;
    text-align: center;
}
#screenContact h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 30px 0;
}
#screenContact h4 {
    font-size: 22px;
    font-weight: normal;
    margin: 0 0 50px 0;
}
#screenClients {
    padding: var(--airPadding);
}
#screenClients h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 30px 0;
}
#screenNosotros .areaInfo {
    margin: 0 0 40px 0;
}
#screenTheTeam .teamMember{
    margin: 0 0 50px;
    position: relative;
    width: 100%;
}
#screenTheTeam .teamMember .teamInfo {
    align-items: flex-end;
    background-color: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 5px);
    left: 0;
    opacity: 0;
    padding: 25px;
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
#screenTheTeam .teamMember .teamInfo::before {
    background-color: var(--accent);
    bottom: 0;
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    width: 100%;
}
#screenTheTeam .teamMember:hover .teamInfo {
    opacity: 1;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
#screenTheTeam .teamMember .teamInfo h3 {
    margin: 0 0 15px 0;
    width: 100%;
}
#screenTheTeam .teamMember .teamInfo h4 {
    font-weight: normal;
    margin: 0;
    width: 100%;
}
#screenKnowServices hr {
    background-color: var(--dark);
    height: 3px;
    margin: 20px 0 30px;
    width: 80px;
}
#screenKnowServices .textBig a {
    color: var(--dark);
    display: block;
    text-decoration: none;
    transition: transform ease .3s;
    -moz-transition: transform ease .3s;
    -webkit-transition: transform ease .3s;
}
#screenKnowServices .textBig a:hover {
    transform: translateX(15px);
    transition: transform ease .3s;
    -moz-transition: transform ease .3s;
    -webkit-transition: transform ease .3s;
}
#screenSubWorkForm form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#screenSubWorkForm form .formGroup {
    width: 100%;
}
#screenWorkQuotes .quoteItem {
    text-align: center;
}
#screenWorkQuotes .quoteItem .quotePicture {
    border: 10px solid rgba(0,0,0,0.03);
    border-radius: 100%;
    height: 150px;
    margin: 0 auto 25px;
    overflow: hidden;
    width: 150px;
}
#screenWorkQuotes .quoteItem .quoteName {
    font-size: 22px;
    font-weight: bolder;
    margin: 0 0 15px 0;
}
#screenHomeStore .areaLogo{
    width: 15%;
    padding: 25px;
}
#screenHomeStore .cta a{
    text-decoration: none;
}
#screenHomeStore .zoom{
    position: relative;
}
#screenHomeStore .zoom img{
    transition: transform .3s;
    transform-origin: bottom;
    width: 85%;
}
#screenHomeStore .zoom:hover img{
    transform: scale(1.25);
}
#screenHomeStore .productMini img{
    scale: .9;
} 
#screenHomeStore .productMk3 img{
    scale: .9;
} 
#screenHomeStore .productXL img{
    scale: 1.2;
} 
#screenHomeStore .productSl1 img{
    scale:.9;
} 
/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
  
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
  
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
.mfp-zoom-out-cur {
    cursor: auto!important;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: auto!important;
}
#promoBanner .banner{
    background-image: url(../img/banner-free.png);
    background-position: center;
    background-repeat: no-repeat;
    color:white;
    cursor: pointer;
}
#promoBanner h1,#promoBanner h3,#promoBanner p,#promoBanner span{
    transform: scale(1.15 , 1);
}
#promoBanner .right{
    transform-origin: right;
}
#promoBanner .oldPrice{
    text-decoration:line-through;
    text-decoration-color: #4179FF;
}
.collapsible {
    display:none;
}
.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out;
}
.roundedFill{
    background-color: white;
    color: black;
    border: 0;
    border-radius: 50px;
    opacity: 1;
    overflow: hidden;
    padding: 1% 4%;
    line-height: 4vh;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: max-content;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.roundedOutline{
    background-color: transparent;
    color: white;
    border: 1px solid;
    border-radius: 50px;
    opacity: 1;
    overflow: hidden;
    padding: 1% 4%;
    line-height: 4vh;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: max-content;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#screenFollowUs a{
    text-decoration: none;
}
#screenFollowUs .redes{
    width: 15%;
    margin: 10px 25px;
}
#screenMkHome{
    background-image: url(../img/banner-mk3.png);
    background-size: cover;
    background-position: 75%;    
    color:white;
}
#screenMkHome .titleImage{
    max-width: 25%;
}
#screenMkHome .textMega .title{
    font-family:'AtlasMedium';
}
#screenMiniHome{
    background-image: url(../img/banner-mini.png);
    background-size: cover;
    background-position: 55%;    
    color:white
}
#screenMiniHome .titleImage{
    max-width: 25%;
}
#screenMiniHome .textMega .title{
    font-family:'AtlasMedium';
}
#screenMkHome .overlay{
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}
#screenMkHome .container{
z-index: 1;
}
#screenMiniHome .overlay{
background-color: rgba(0,0,0,0.5);
height: 100%;
left: 0;
position: absolute;
width: 100%;
z-index: 0;
}
#screenMiniHome .container{
z-index: 1;
}
#screenMkHome .cuotas{
    font-weight: 500;
    color:rgb(250, 104, 49);
}
#screenMkHome .cTas .productPrice {
    font-size: 1.2em;
}
#screenMkHome .logoEnvio{
    max-width: 50px;
    padding-right: 5px;
}
#screenPrusaProductConv .logoEnvio{
    max-width: 5%;
    padding-right: 5px;
}
#screenPrusaProductConv .cuotas{
    font-weight: 500;
    color:rgb(250, 104, 49);
}
#screenPrusaProductConv .zoom {
    padding: 50px;
    transition: transform .2s;
}
#screenPrusaProductConv .zoom:hover {
    transform: scale(1.2); 
}
#screenPrusaVid {
    position: relative;
    overflow: hidden;    
}
#screenPrusaVid #videoBlur {
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%) scale(2.3);
    filter: blur(10px);
    z-index: 0;
}
#screenPrusaVid #videoArea .videoBg video{
    position: relative;
    height: 85vh;
    object-fit: contain;
    z-index: 1;
    margin: 0 0 -6px 0;
}
#screenPrusaStats .serviceItem {
    align-items: center;
    display: flex;
    position: relative;
    height: 25vh;
}
#screenPrusaStats .serviceItem .overlay {
    background-color: rgba(0,0,0,0.4);
    border-radius: 20px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
#screenPrusaStats .serviceItem .text {
    position: relative;
    z-index: 2;
}
#screenPrusaStats .serviceItem .text h3 {
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#screenPrusaStats .serviceItem .text p {
    height: 0;
    opacity: 0;
    overflow: hidden;
    text-align: start;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#screenPrusaStats .serviceItem:hover .text p {
    height: 120px;
    opacity: 1;
    overflow: visible;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
#screenPrusaStats .bgFeaturePinda {
    background-image: url(../img/feature-pinda.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureRodam {
    background-image: url(../img/feature-rodam.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureSheets {
    background-image: url(../img/feature-sheets.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureQuality {
    background-image: url(../img/feature-quality.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureRecovery {
    background-image: url(../img/feature-recovery.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureSense {
    background-image: url(../img/feature-sense.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureLevel {
    background-image: url(../img/feature-level.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureSlicer {
    background-image: url(../img/feature-slicer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureCompatibility {
    background-image: url(../img/feature-compatibility.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureVolume {
    background-image: url(../img/feature-volume.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureLCD {
    background-image: url(../img/feature-lcd.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureFlexSheets {
    background-image: url(../img/feature-flexsheets.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureNetwork {
    background-image: url(../img/feature-network.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureSafe {
    background-image: url(../img/feature-safe.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureClick {
    background-image: url(../img/feature-click.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaStats .bgFeatureBoard {
    background-image: url(../img/feature-board.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
#screenPrusaPower {
    color: white;
    position: relative;
}
#screenPrusaCont .timelapse{
    transform: translateY(-7.5%);
    z-index: -10000;
    position: relative;
}
#screenPrusaPower::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenPrusaDiv {
    position: relative;
}
#screenPrusaDiv::before {
    background-image: linear-gradient(to top, rgba(29, 29, 29, 0) 5%, 5%, rgb(29, 29, 29, 1)75%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenPrusaTime{
    background-image: linear-gradient(to bottom, rgba(29, 29, 29, 0) 1%, 1%, rgb(29, 29, 29, 1)50%);
}
#screenPrusaTime video{
    -webkit-mask-image: linear-gradient(to bottom, transparent 20%, #1d1d1d 75%);
    mask-image: linear-gradient(to bottom, transparent 20%, #1d1d1d 75%);
}
#screenPrusaDiv img{
    -webkit-mask-image: linear-gradient(to top, transparent 5%, #1d1d1d 75%);
    mask-image: linear-gradient(to top, transparent 5%, #1d1d1d 75%);
}
#screenPrusaDoubt {
    position: relative;
}
#screenPrusaDoubt::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenPrusaWhy .versionLogo{
    height: auto;
    width: 17%;
}
#screenPrusaWhy .iconStat img {
    max-width: 150px;
    padding: 20px;
}
@media (prefers-reduced-motion: no-preference) {
    .why-1-anim {
      animation-name: why-1-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-2-anim {
      animation-name: why-2-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-3-anim {
      animation-name: why-3-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-4-anim {
      animation-name: why-4-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-5-anim {
      animation-name: why-5-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-6-anim {
      animation-name: why-6-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .why-7-anim {
      animation-name: why-7-enter;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
    }
  }
.why-1{
    background-image: url(../img/item-prusa-why-1.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-1:hover .why-1{
    background-image: url(../img/item-prusa-why-1-hov.png);
}
#why-1 .iconName{
    transition: all .3s ease-in-out;
}
#why-1:hover .iconName{
    color:#DA1B28;
}
@keyframes why-1-enter {
	0% {
		background-image: url(../img/item-prusa-why-1.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-1-hov.png);
	}
}
.why-2{
    background-image: url(../img/item-prusa-why-2.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-2:hover .why-2{
    background-image: url(../img/item-prusa-why-2-hov.png);
}
#why-2 .iconName{
    transition: all .3s ease-in-out;
}
#why-2:hover .iconName{
    color:#DA1B28;
}
@keyframes why-2-enter {
	0% {
		background-image: url(../img/item-prusa-why-2.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-2-hov.png);
	}
}
.why-3{
    background-image: url(../img/item-prusa-why-3.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-3:hover .why-3{
    background-image: url(../img/item-prusa-why-3-hov.png);
}
#why-3 .iconName{
    transition: all .3s ease-in-out;
}
#why-3:hover .iconName{
    color:#DA1B28;
}
@keyframes why-3-enter {
	0% {
		background-image: url(../img/item-prusa-why-3.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-3-hov.png);
	}
}
.why-4{
    background-image: url(../img/item-prusa-why-4.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-4:hover .why-4{
    background-image: url(../img/item-prusa-why-4-hov.png);
}
#why-4 .iconName{
    transition: all .3s ease-in-out;
}
#why-4:hover .iconName{
    color:#DA1B28;
}
@keyframes why-4-enter {
	0% {
		background-image: url(../img/item-prusa-why-4.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-4-hov.png);
	}
}
.why-5{
    background-image: url(../img/item-prusa-why-5.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-5:hover .why-5{
    background-image: url(../img/item-prusa-why-5-hov.png);
}
#why-5 .iconName{
    transition: all .3s ease-in-out;
}
#why-5:hover .iconName{
    color:#DA1B28;
}
@keyframes why-5-enter {
	0% {
		background-image: url(../img/item-prusa-why-5.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-5-hov.png);
	}
}
.why-6{
    background-image: url(../img/item-prusa-why-6.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-6:hover .why-6{
    background-image: url(../img/item-prusa-why-6-hov.png);
}
#why-6 .iconName{
    transition: all .3s ease-in-out;
}
#why-6:hover .iconName{
    color:#DA1B28;
}
@keyframes why-6-enter {
	0% {
		background-image: url(../img/item-prusa-why-6.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-6-hov.png);
	}
}
.why-7{
    background-image: url(../img/item-prusa-why-7.png);
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
#why-7:hover .why-7{
    background-image: url(../img/item-prusa-why-7-hov.png);
}
#why-7 .iconName{
    transition: all .3s ease-in-out;
}
#why-7:hover .iconName{
    color:#DA1B28;
}
@keyframes why-7-enter {
	0% {
		background-image: url(../img/item-prusa-why-7.png);
	}
	50% {
		background-image: url(../img/item-prusa-why-7-hov.png);
	}
}
#screenPrusaWhy::after{
    position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
    content:url(../img/item-prusa-why-1-hov.png) url(../img/item-prusa-why-2-hov.png) url(../img/item-prusa-why-3-hov.png) url(../img/item-prusa-why-4-hov.png) url(../img/item-prusa-why-5-hov.png) url(../img/item-prusa-why-6-hov.png) url(../img/item-prusa-why-7-hov.png);
 }
#screenPrusaWhy .review img{
    height: 22vh;
    width:500px;
    border-radius: 20px;
}
#screenPrusaWhy {
    position: relative;
    background-color:#1D1D1D;
    
}
#screenPrusaWhy::before {
    background-color: #1D1D1D;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
.rating{
    position: absolute;
    transform: translateX(-100%);
    font-size: 10px;
    padding-right: 1%;
}
.noRw{
    background-color: rgba(0,0,0,0.9)!important;
    border: 0!important;;
}
.grw-review-rating-more{
	display: block;
    position: relative;
    transform: translateX(40%)translateY(50px);
    color:white;
}
.grw-review-rating-more .rating{
    font-size: 1em;
}
.grw-review-rating-more .grw-google-star-rating-wrapper{ 
    background:url(../img/google_review_stars_more.png) no-repeat;
    height: 25px;
    width: 108px;
    transform: translateY(-10%);
}
.grw-review-rating-more .grw-google-star-rating{
background:url(../img/google_review_stars_more.png) 0 -25px no-repeat;
    height: 25px;
}
.grw-review .overlay{
    filter:blur(5px);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.grw-review .text{
    color: var(--light);
    position: relative;
    z-index: 2;
    top: 40%;
    transform: translateY(-50%);
}
.text .gLogo{
    width:25px;
    margin-left: 1%;
    padding-bottom: 3px;
}
#screenPrusaOther .iconStat img {
    max-width: 150px;
    padding: 20px;
}
#screenPrusaOther .product {
    border-radius: 15px;
    border:1px solid rgb(50.2 50.2 50.2 / 25%);
}
#screenPrusaOther .product:hover {
    border:1px solid #DA1B28;
    transition: all .3s ease-in-out;
}
#screenPrusaOther .product img{
    max-height: 230px;
}
#screenPrusaOther {
    position: relative;
}
#screenPrusaOther::before {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenPrusaHome .bg-image{
    background-image: url(../img/granja-mk3s.png);
    filter: blur(10px);
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat:no-repeat;
    background-size:200%;    
}
#screenPrusaHome .home{
    position: absolute;
    z-index: 2;
    overflow: hidden;
}
#screenPrusaHome .item{
    transition:ease-in .2s;
    transition: ease-out .1s;
    border-color: #a2a2a2;
    cursor: pointer;
}
#screenPrusaHome .zoomMK {
    transform-origin: right;
    transition: transform .2s;
    display: flex;
    overflow: hidden;
}
#screenPrusaHome .zoomMini {
    transform-origin: left;
    transition: transform .2s;
    display: flex;
    overflow: hidden;
}
#screenPrusaHome .item:hover .zoomMK{
    transform: scale(1.3); 
}
#screenPrusaHome .item:hover .zoomMini{
    transform: scale(1.3); 
}
#screenPrusaHome .item:hover{
    backdrop-filter: brightness(10%);
    transform: scale(1.2); 
}
#screenPrusaHome::before {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenPrusaProductConv .nav-item .nav-link {
    font-size: 14px;
}
#screenPrusaFAQ .accordion-button:focus {
    z-index: 3;
    border-color: gray;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(50.2 50.2 50.2 / 25%);
}

#screenPrusaFAQ .accordion-button:not(.collapsed) {
    color:#1D1D1D;
    font-weight: bold;
    background-color: #F2D7D9;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
#screenPrusaFAQ .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DA1B28'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
#screenPrusaFAQ .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DA1B28'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

#screenPrusaPrize .award{
    width: 120px;
}
#screenPrusaPrize .logoPremios{
    max-width: 40px;
    margin-bottom: 1%;
}
#screenPrusaReasons .bigNumber{
    float: top;
    width: 3.571rem;
    height: 2.143rem;
    font-size: 5.714rem;
    color: rgb(250, 104, 49);
    font-weight: bold;
    vertical-align: top;
}
#screenEnderHome .versionLogo {
    height: auto;
    width: 90px;
}
#screenEnderWays {
    color: white;
    position: relative;
}
#screenEnderWays::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenEnderVolume {
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}
#screenEnderFuture {
    position: relative;
}
#screenEnderFuture::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenEnderServices {
    position: relative;
}
#screenEnderServices::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenEnderPower {
    position: relative;
}
#screenEnderPower::before {
    background-color: #272727;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
#screenEnderC3Timeline {
    position: relative;
}
#screenEnderC3Timeline::after {
    background-color: white;
    border: 3px solid var(--accent);
    border-radius: 100%;
    content: '';
    height: 20px;
    left: 50%;
    position: absolute;
    top: 0;
    width: 20px;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#screenEnderC3Timeline::before {
    background-color: rgba(0,0,0,0.03);
    border-radius: 15px;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 5px;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#screenEnderC3Timeline .cont {
    margin: 0 auto;
    max-width: 650px;
}
#screenEnderC3Timeline .image {
    margin: 0 auto 0;
    overflow: hidden;
}
#screenEnderC3Timeline .timelineArrow {
    background-color: white;
    border: 10px solid rgba(0,0,0,0.03);
    border-radius: 100%;
    height: 65px;
    left: 50%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    width: 65px;
    z-index: 2;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#screenEnderWhy .iconStat img {
    max-width: 150px;
    padding: 20px;
}
#screenEnderProductConv .nav-item .nav-link {
    font-size: 14px;
}
#screenPrusaProductConv .cTas .productPrice {
    font-size: 1.5em;
}
.bArea .image {
    position: relative;
}
.bProm {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 5;
}
.bPromMobile {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    width: 100%;
    align-items: center;
}
.bProm .image {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}
.bArea .image .close {
    align-items: center;
    background-color: white;
    border: 5px solid rgba(0,0,0,0.03);
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    height: 50px;
    justify-content: center;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 50px;
}
.airPadding {
    padding: var(--airPadding);
}
.fullHeight {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
.attract-hover {
    display: inline-block;
}
.attract-hover-easing {
    transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.bgAlt {
    background-color: var(--light);
}
.bgDark {
    background-color: var(--dark);
}
.colorLight {
    color: white;
}
.textBold {
    font-weight: bold;
}
.textMega {
    font-size: 60px;
}
.btnAccent {
    background-color: var(--accent);
    border: 0;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    opacity: 1;
    overflow: hidden;
    padding: 15px 45px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: max-content;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.btnAccent:hover {
    color: white;
    opacity: 0.8;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.btnAccentMini {
    background-color: var(--accent);
    border: 0;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    opacity: 1;
    overflow: hidden;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: max-content;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.btnAccentMini:hover {
    color: white;
    opacity: 0.8;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.btnAnim {
    border-radius: 30px;
    display: block;
    overflow: hidden;
}
.btnAnim span {
    position: relative;
    z-index: 2;
}
.btnAnim::before {
    animation-name: btnAnimBG;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    background-color: rgba(255,255,255,0.2);
    content: '';
    height: 120%;
    left: 0;
    position: absolute;
    top: 0;
    width: 70px;
    z-index: 1;
    transform: skew(-35deg);
}
@keyframes btnAnimBG {
    0% {
        left: -75%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
.btnClean {
    background-color: transparent;
    border: 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 16px;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    width: max-content;
}
.imageObject {
    overflow: hidden;
    position: relative;
}
.imageObject .hoverOverlay {
    background-color: rgba(0,0,0,0.6);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
.imageObject .hoverOverlay::before {
    background-color: var(--accent);
    bottom: 0;
    content: '';
    height: 5px;
    left: 0;
    position: absolute;
    width: 100%;
}
.imageObject .hoverMeta {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
.imageObject .hoverTitle {
    bottom: 0;
    color: white;
    left: 0;
    opacity: 0;
    padding: 25px;
    position: absolute;
    width: 100%;
    z-index: 3;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
.imageObject:hover .hoverOverlay, .imageObject:hover .hoverTitle, .imageObject:hover .hoverMeta {
    opacity: 1;
    transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -webkit-transition: opacity ease .3s;
}
.owl-carousel.carousel-culture .owl-nav button.owl-prev, .owl-carousel.carousel-culture .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-prev, .owl-carousel.carousel-quotes .owl-nav button.owl-next {
    background-color: white;
    height: 75px;
    left: -40px;
    outline: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.owl-carousel.carousel-culture .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-next {
    left: auto;
    right: -40px;
}
.owl-carousel.carousel-farm .owl-nav button.owl-prev, .owl-carousel.carousel-farm .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-prev, .owl-carousel.carousel-quotes .owl-nav button.owl-next {
    
    height: 75px;
    left: -40px;
    outline: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.owl-carousel.carousel-farm .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-next {
    left: auto;
    right: -40px;
}
.owl-carousel.carousel-product .owl-nav button.owl-prev, .owl-carousel.carousel-product .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-prev, .owl-carousel.carousel-quotes .owl-nav button.owl-next, .owl-carousel.carousel-power .owl-nav button.owl-prev, .owl-carousel.carousel-power .owl-nav button.owl-next {
    background-color: transparent;
    height: 75px;
    left: -40px;
    outline: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.owl-carousel.carousel-product .owl-nav button.owl-next, .owl-carousel.carousel-quotes .owl-nav button.owl-next, .owl-carousel.carousel-power .owl-nav button.owl-next {
    left: auto;
    right: -40px;
}
.colorDark {
    color: var(--dark);
}
.colorAccent {
    color: var(--accent)
}
.formGroup {
    position: relative;
}
.formGroup:not(:last-child) {
    margin: 0 0 15px 0;
}
.formInput {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #a2a2a2;
    font-size: 22px;
    outline: 0;
    padding: 20px;
}
.formInput::placeholder {
    color: #a2a2a2;
    font-size: 22px;
}
.formInput.formFull {
    width: 100% 
}
.formCta {
    margin: 50px 0 0 0;
}
.followBuy {
    background-color: rgba(220,220,220,0.5);
    backdrop-filter: blur(4px);
    border-radius: 0 0 0 20px;
    position: fixed;
    right: 0;
    top: -50%;
    width: 400px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.followBuy.active {
    top: 75px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    z-index: 2;
}
.followBuy img{
    max-height:12vh;
}
.marginBottom {
    margin: var(--marginBottom);
}
.pageMainTitle {
    align-items: flex-end;
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    font-size: 28px;
    height: 300px;
    padding: var(--airPadding);
    position: relative;
    width: 100%;
}
.pageMainTitle .container {
    position: static;
    z-index: 2;
}
.pageMainTitle .imageOverlay {
    background-color: rgba(0,0,0,0.55);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.pageMainTitle .sub {
    font-size: 18px;
}
.pTop-0 {
    padding-top: 0;
}
.textCenter {
    text-align: center;
}
@media screen and (max-width: 700px) {
    #screenPrusaCont img{
        width:100%;
    }
    #screenPrusaDiv img {
        transform: scale(1.1) translateY(30%);
    }
}
@media screen and (max-width: 1080px) {
    #screenPrusaOther .productRow{
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    #screenPrusaCont h3 {
        margin-top:15%;
    }
    #screenPrusaWhy .versionLogo {
        height: auto;
        width: 35%;
    }
}
@media screen and (max-width: 1264px){
    .grw-review-rating-more .grw-google-star-rating-wrapper{ 
        background:url(../img/google_review_stars_more.png) no-repeat;
        height: 25px;
        width: 108px;
        transform: translateY(-200%);
    }
    .grw-review-rating-more .rating{
        transform: translateY(-200%)translateX(-100%);
    }
}
@media screen and (min-width: 700px) {
    :root {
        --airPadding: 125px 75px;
    }
    #screenServicios .areaItems {
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #screenServicios .areaItems .item {
        width: 48%;
    }
    #screenCase h2.sectionTitle img {
        display: block;
        margin: 0 0 25px 0;
    }
    #screenClients {
        padding: 0 75px 75px;
    }
    #screenTheTeam .row {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 75px;
    }
    #screenTheTeam .row .teamMember {
        margin: 0 auto 10px;
        width: 48%;
    }
    #screenOurCultureP {
        margin: -75px 0 0 0;
    }
    #screenSubWorkForm form .formGroup {
        width: 48%;
    }
    #screenSubWorkForm form .formCta {
        margin: 0;
    }
    #screenPrusaReasons .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaReasons .itemVspacer {
        height: 150px;
    }
    #screenPrusaPrize .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaPrize .itemVspacer {
        height: 150px;
    }
    #screenPrusaCont .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaCont .itemVspacer {
        height: 150px;
    }
    #screenEnderVolume {
        background-image: url(../img/ender-parallax-1.png);
    }
    #screenEnderHow .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenEnderHow .itemVspacer {
        height: 150px;
    }
    #screenEnderEnd .container {
        margin: 0 auto;
        max-width: 600px;
    }
    .textTitleSecond {
        padding: 15% 0 0 0;
    }
    #screenFollowUs .redes{
        width: 5%;
    }
}
@media screen and (min-width:768px){
    #screenPrusaStats .serviceItem {
        max-width: 30vw;
    }
}
@media screen and (min-width: 1024px) {
    header#mainHeader .mainNav .container .areaLogo {
        text-align: left;
    }
    #screenCase .caseImages .item .itemImage {
        height: 500px;
    }
    #screenClients {
        padding: 0 75px 75px;
    }
    #screenTheTeam .row .teamMember {
        margin: 0 10px 10px;
        width: calc(24% - 15px);
    }
    #screenEnderFuture::before, #screenEnderServices::before, #screenPrusaDiv::before {
        height: 90%;
    }
    #screenPrusaPower::before{
        height: 70%;
    }  
    #screenPrusaPower .image{
        transform: scale(1.3);
        transform-origin: right;
    }
    #screenPrusaDiv img {
        transform: scale(2);
        transform-origin: left;
    }
    #screenPrusaDoubt img {
        width:50%;
    }    
    #screenEnderWays::before, #screenEnderFuture::before, #screenEnderServices::before, #screenEnderPower::before {
        height: 70%;
    }
    #screenEnderWays .image {
        transform: scale(1.3);
    }
    #screenEnderPower .image {
        transform: scale(1.3);
    }
    #screenEnderFuture .image {
        transform: scale(1.3);
    }
    #screenEnderServices .image {
        transform: scale(1.3);
    }
    #screenEnderC3Timeline .image {
        height: 125px;
        width: 125px;
    }
    #screenEnderC3Timeline .timelineArrow {
        height: 65px;
        left: auto;
        width: 65px;
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
    }
    .bigPicture {
        align-items: center;
        display: flex;
        justify-content: center;
        max-height: 850px;
        overflow: hidden;
    }
    #screenPrusaTime.bigVideo {
        align-items: center;
        display: flex;
        justify-content: center;
        max-height: 500px;
        overflow: hidden;
        z-index: -1;
        position: relative;
        transform: translateY(-25%);
    }
    .container {
        margin: 0 auto;
        max-width: 1180px;
        width: 100%;
    }
    .pageMainTitle {
        height: 500px;
    }
}
@media screen and (min-width: 1280px) {
    header#mainHeader .mainNav .container .areaLogo {
        width: 17%;
    }
    header#mainHeader .mainNav .container .areaToggler {
        display: none;
        order: 3;
        width: 0;
    }
    header#mainHeader .mainNav .container .areaMenu {
        align-items: center;
        display: flex;
        justify-content: flex-end;
        order: 2;
        width: 83%;
    }
    header#mainHeader .mainNav .container .areaMenu ul.menuItems {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    header#mainHeader .mainNav .container .areaMenu ul.menuItems li:not(:last-child) {
        border: 0;
    }
    footer .container {
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer .container .fooCol {
        width: 20%;
    }
    #screenHeroes h1 {
        font-size: 54px;
        margin: 0 0 25px 0;
    }
    #screenHeroes .imageBg {
        display: none;
        visibility: hidden;
    }
    #screenHeroes .videoBg {
        display: initial;
        visibility: visible;
    }
    #screenServicios .container {
        align-items: center;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #screenServicios .container .areaInfo {
        font-size: 36px;
        width: 40%;
    }
    #screenServicios .container .areaItems {
        width: 55%;
    }
    #screenCase .caseInfo {
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
        margin: 150px 0;
    }
    #screenCase .caseInfo .areaLeft {
        width: 20%;
    }
    #screenCase .caseInfo .areaRight {
        width: 80%;
    }
    #screenCase .caseImages {
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
    }
    #screenCase .caseImages .item {
        width: 45%;
    }
    #screenCase .caseImages .item:last-child {
        margin: 250px 0 0 0;
    }
    #screenCase .caseImages .item .itemImage {
        height: 600px;
    }
    #screenCase .caseImages .item .itemImage img {
        transform: scale(2.5);
        -moz-transform: scale(2.5);
        -webkit-transform: scale(2.5);
        transform-origin: center;
        -moz-transform-origin: center;
        -webkit-transform-origin: center;
    }
    #screenContact .container {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    #screenContact .container .areaText {
        width: 35%;
    }
    #screenContact .container .areaForm {
        width: 60%;
    }
    #screenPrusaReasons .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaPrize .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaCont .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenPrusaProductConv .productGen {
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
    }
    #screenPrusaProductConv .productGen .productImage {
        width: 30%;
    }
    #screenPrusaProductConv .productGen .productMeta {
        width: 60%;
    }
    #screenPrusaProductConv .cuotas{
        font-weight: 500;
        color:rgb(250, 104, 49);
    }
    #screenPrusaProductConv .cTas {
        margin: 0 auto;
    }
    #screenPrusaProductConv .cTas .productPrice {
        font-size: 1.2em;
    }
    #screenEnderHow .textMega {
        margin: calc(40% - 125px) 0 40% 0;
    }
    #screenEnderProductConv .productGen {
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
    }
    #screenEnderProductConv .productGen .productImage {
        width: 30%;
    }
    #screenEnderProductConv .productGen .productMeta {
        width: 60%;
    }
    #screenEnderProductConv .cTas {
        margin: 0 auto;
        max-width: 800px
    }
    #screenEnderProductConv .cTas .productPrice {
        font-size: 1.5em;
    }
    .textBig {
        font-size: 36px;
    }
}
@media screen and (min-width: 1600px) {
    .pageMainTitle {
        height: 700px;
    }
}