/*
 * Global style sheet for MORA - Hisense
 */

/* CSS variables */

:root {

    /* Colors */

    --primaryLinear: linear-gradient(90deg, #D71236 0%, #71091C 100%);
    --contact: linear-gradient(180deg, #BA0C2F 0%, #370E14 100%);
    --secondaryLinear: linear-gradient(90deg, #DFA78C 0%, #D71236 100%);
    --thirdLinear: linear-gradient(180deg, #FFFFFF 0%, #C5D7EC 100%);
    --salmonLinear: linear-gradient(180deg, #FFFFFF 0%, #E0A68C 100%);
    --linearSub: linear-gradient(90deg, #71091C 0%, #D71236 100%);
    --white: #FFFFFF;
    --black: #000000;
    --redMora: #D71236;
    --bordo: #370E14;
    --celeste: #C5D7EC;
    --salmon: #DFA78C;
    --secondWhite: #F6F3EE;
    --thirdWhite: #F7F7F7;
    --greenHisense: #00C7C2;
    --grey: #71717A;
    --pearl: #ECE8DF;
    --bordito: #370E14;
    --greyBorder: #D4D4D8;
    --popup: #F7F3ED;
    --ctaPop: linear-gradient(180deg, #D71236 0%, #71091C 100%);

    /* spacing */

    --base: 25px;
    --xs: 560px;
    --xxs: 900px;
    --s: 1090px;
    --sm: 1150px;
    --m: 1280px;
    
    

    /** fonts sizes **/

    --xsTxt: 1rem;
    --sTxt: 1.4rem;
    --mTxt: 1.6rem;
    --lTxt: 1.8rem;
    --xlTxt: 2rem;
    --xxlTxt: 3rem;
    --subtitle: 3.6rem;
    --bigTitle: 4rem;

    --lineBase: 1.5;

}

/* Variables mobile */

@media (max-width: 767px) {

        :root{
            --sTxt: 1.6rem;
            --mTxt: 2rem;
            --subtitle: 2.4rem;
            --bigTitle: 2.4rem;
            --lineBase: 1.3;
            --txtM: 3.2rem;
            --m: 327px;
        }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px){
    :root{
        --m: 1150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px){
    :root{
        --s: 760px;
        --sm: 800px;
        --m: 800px;
    }
}

/* Fonts */

@font-face {
    font-family: "Hisense";
    src: url("assets/fonts/HisenseAlfabet-Light.eot");
    src:
      url("assets/fonts/HisenseAlfabet-Light.eot?#iefix") format("embedded-opentype"), /* IE6–IE8 */
      url("assets/fonts/HisenseAlfabet-Light.woff2") format("woff2"), /* Modern */
      url("assets/fonts/HisenseAlfabet-Light.woff") format("woff"),
      url("assets/fonts/HisenseAlfabet-Light.ttf") format("truetype"),
      url("assets/fonts/HisenseAlfabet-Light.svg#HisenseAlfabetLight") format("svg"),
      url("assets/fonts/HisenseAlfabet-Light.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hisense";
    src: url("assets/fonts/HisenseAlfabet-Regular.eot");
    src:
      url("assets/fonts/HisenseAlfabet-Regular.eot?#iefix") format("embedded-opentype"), /* IE6–IE8 */
      url("assets/fonts/HisenseAlfabet-Regular.woff2") format("woff2"), /* Modern */
      url("assets/fonts/HisenseAlfabet-Regular.woff") format("woff"),
      url("assets/fonts/HisenseAlfabet-Regular.ttf") format("truetype"),
      url("assets/fonts/HisenseAlfabet-Regular.svg#HisenseAlfabetRegular") format("svg"),
      url("assets/fonts/HisenseAlfabet-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hisense";
    src: url("assets/fonts/HisenseAlfabet-Medium.eot");
    src:
      url("assets/fonts/HisenseAlfabet-Medium.eot?#iefix") format("embedded-opentype"), /* IE6–IE8 */
      url("assets/fonts/HisenseAlfabet-Medium.woff2") format("woff2"), /* Modern */
      url("assets/fonts/HisenseAlfabet-Medium.woff") format("woff"),
      url("assets/fonts/HisenseAlfabet-Medium.ttf") format("truetype"),
      url("assets/fonts/HisenseAlfabet-Medium.svg#HisenseAlfabetMedium") format("svg"),
      url("assets/fonts/HisenseAlfabet-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hisense";
    src: url("assets/fonts/HisenseAlfabet-Bold.eot");
    src:
      url("assets/fonts/HisenseAlfabet-Bold.eot?#iefix") format("embedded-opentype"), /* IE6–IE8 */
      url("assets/fonts/HisenseAlfabet-Bold.woff2") format("woff2"), /* Modern */
      url("assets/fonts/HisenseAlfabet-Bold.woff") format("woff"),
      url("assets/fonts/HisenseAlfabet-Bold.ttf") format("truetype"),
      url("assets/fonts/HisenseAlfabet-Bold.svg#HisenseAlfabetBold") format("svg"),
      url("assets/fonts/HisenseAlfabet-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}



/* Reset margins and paddings on all elements to establish a clean slate */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Hisense", Helvetica, Arial, sans-serif;
}

img,
picture{
    display: block;
    max-width: 100%;
}

html{
    font-size: 62.5%;
    
}

html, body {
    height: 100%;
    font-family: "Hisense", Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
}

.safeZone{
    width: 100%;
    max-width: var(--m);
    margin: 0 auto;
}

/* Typography defaults */

h1, 
.titleHero{
    font-weight: 600;
    font-size: var(--bigTitle);
    line-height: 52px;
}

a{
    text-decoration: unset;
    color: var(--white);
}

.dFlex {
    display: flex;
}

/** Menu - Nav bar**/

.hamburger {
    display: none;
}

.burgerBox{
    display: none;
}

#header {
    background: var(--primaryLinear);
}

.navbar {
    padding-top: var(--base);
    padding-bottom: var(--base);
}

.navbarContainer {
    display: flex;
    max-width: var(--m);
    margin: 0 auto;
    justify-content: space-between;
}

.navLinks{
    display: flex;
    max-width: 215px;
    gap: var(--base);
}

.navLinks a{
    font-size: var(--sTxt);
}


/** Hero **/

.imgSlider picture img {
    width: 100%;
    display: block;
}

.sliderContent {
    position: relative;
}

.textHero {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: var(--sm);
    left: 50%;
    width: 100%;
}

.textHero h1 {
    width: 100%;
    max-width: 470px;
    color: var(--white);
    font-weight: 200;
}

.gradientTitle {
    background: var(--secondaryLinear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

button.slick-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: unset;
    border-radius: 40px;
    font-size: 0;
    position: absolute;
    top: 58%;
    z-index: 9;
    cursor: pointer;
}

button.slick-arrow::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(assets/img/generales/arrow.png);
}

button.slick-arrow.slick-next::after{
    transform: translate(-50%, -50%) rotate(180deg);
}

button.slick-arrow.slick-prev {
    left: 80px;
}

button.slick-arrow.slick-next {
    right: 80px;
}

#hero ul.slick-dots button {
    font-size: 0;
    width: 8px;
    height: 8px;
    background: var(--white);
    border: unset;
    border-radius: 20px;
}

#hero ul.slick-dots .slick-active button {
    background: var(--redMora);
}

#hero ul.slick-dots {
    bottom: 60px;
    position: absolute;
    left: 50%;
    display: flex;
    gap: 8px;
    list-style: none;
}



/** Modelos **/

.redTxt{
    color: var(--redMora);
}

.modelos{
    padding: 80px 0 50px;
}

.modelos h2{
    color: var(--bordo);
    font-size: var(--subtitle);
    line-height: 54px;
    max-width: 710px;
    margin: 0 auto;
}

.modelSelector{
    padding-top: 50px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.itemSelector{
    width: 100%;
    max-width: 260px;
    height: 80px;
    border: 1px solid;
    border-radius: 40px;
    cursor: pointer;
    background-color: var(--secondWhite);
    border-color: var(--pearl);
    color: var(--black);
}

.innerSelector{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--xlTxt);
    font-weight: 600;
    height: 100%;
    padding: 0 20px 0 12px;
}

.imgSelector img{
    transition: all 0.3s ease-in-out;
}

.innerSelector:hover .imgSelector img{
    scale: 1.2;
}

.txtSelector{
    width: 162px;
    text-align: center;
}

.txtSelector p{
    line-height: 1;
}

.itemSelector.isOn{
    background-color: var(--bordo);
    border-color: var(--redMora);
    color: var(--white);
}


/** Slider Products **/

/* D3N */

.infoProduct {
    display: flex;
    gap: 80px;
    flex-wrap: nowrap;
}

#sliderProducts {
    padding-top: 110px;
}

.imgsProduct {
    width: 100%;
    max-width: 608px;
}

.d3nThumbs,
.d4nThumbs {
    margin: 16px auto 0;
    width: 100%;
    max-width: 528px;
}

.d3nThumbs ul,
.d4nThumbs ul {
    list-style: none;
}

.innerThumb {
    width: 88px;
    height: 88px;
    display: grid;
    place-content: center;
    border-radius: 14px;
    border: 1px solid var(--greyBorder);
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}

.d3nThumbs .slick-current.slick-active .innerThumb,
.d4nThumbs .slick-current.slick-active .innerThumb {
    border: 2px solid var(--bordo);
}

.itemProduct button.slick-next.slick-arrow {
    right: 20px;
}

.itemProduct button.slick-prev.slick-arrow {
    left: 20px;
}

.itemProduct button.slick-arrow {
    border: 1px solid var(--redMora);
}

.txtProduct {
    padding-top: 40px;
    width: 100%;
    max-width: 100%;
}

.txtProduct h3 {
    color: var(--redMora);
    font-size: var(--mTxt);
}

.txtProduct .twoBubbles {
    justify-content: start;
    margin-bottom: 25px;
}

.bubble {
    color: #777;
    border: 1px solid #7777;
    border-radius: 30px;
    width: 37px;
    height: 21px;
    display: grid;
    place-content: center;
    line-height: 1;
    margin: 16px 0;
    padding-top: 4px;
}

.dFlex.twoBubbles {
    gap: 8px;
}

.titleProduct {
    font-size: var(--subtitle);
    line-height: var(--lineBase);
    font-weight: 400;
    color: var(--bordito);
}

.pProduct {
    margin: 24px 0 32px;
    font-size: var(--lTxt);
    line-height: var(--lineBase);
    color: var(--black);
}

.specs {
    padding-left: 20px;
}

.specs li:not(:last-child) {
    margin-bottom: 10px;
}

.specs li {
    color: var(--grey);
    font-size: var(--sTxt);
}

.specsProduct {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: var(--s);
    margin: 130px auto 0;
    row-gap: 30px;
}

.txtSpecs {
    color: var(--black);
    width: 100%;
    max-width: 275px;
    height: 152px;
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.txtSpecs h3 {
    font-size: var(--xxlTxt);
    margin-bottom: 40px;
}

.txtSpecs p {
    font-size: var(--xlTxt);
}

.imgSpec {
    position: relative;
}

.imgSpec img {
    z-index: 0;
}

.imgSpec:nth-child(4) .txtSpecs {
    max-width: 354px;
    bottom: 10px;
}

.imgSpec:nth-child(5) .txtSpecs {
    max-width: 475px;
    bottom: 10px;
}

/** Features D3N **/

.features {
    padding: 150px 0 100px;
    background: var(--salmonLinear);
}

.features .safeZone > h3 {
    font-size: var(--subtitle);
    text-align: center;
    background: var(--linearSub);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin-bottom: 114px;
}

.txtFeatures p {
    color: var(--black);
    font-size: var(--xlTxt);
    line-height: var(--lineBase);
}

.detailsSize p {
    color: var(--bordo);
    font-size: var(--mTxt);
}

.detailsSize p span.bold {
    display: block;
    font-weight: 600;
}

.detailsSize {
    margin-top: 30px;
}

.detailsSize p * {
    line-height: var(--lineBase);
}

.detailsSize p:first-child {
    margin-bottom: 10px;
}

.imgSiZe {
    width: 100%;
    max-width: 551px;
}

.imgSiZe img {
    box-shadow: 10px 12px 46.6px 0 color(display-p3 0.2157 0.0549 0.0784 / 0.15);
    border-radius: 20px;
}

.txtFeatures {
    padding-top: 60px;
    width: 100%;
    max-width: 455px;
}

.innerFeatures .dFlex {
    justify-content: space-between;
}

.innerFeatures {
    width: 100%;
    max-width: var(--s);
    margin: 0 auto;
}

.itemsBox {
    margin-top: 75px;
}

.itemFeature {
    width: 100%;
    max-width: 433px;
    display: flex;
    background: var(--thirdWhite);
    padding: 40px 31px 27px;
    border-radius: 15px;
    justify-content: space-between;
}

.pFeature h3 {
    color: var(--bordito);
    line-height: 1.2;
}

.pFeature * {
    font-size: var(--xlTxt);
    line-height: 1.2;
}

.pFeature p {
    margin-top: 6px;
}

.imgFeature {
    flex: 0 0 auto;
}

.finalCta {
    margin-top: 100px;
}

.finalCta a {
    font-size: 0;
    padding: 8px 42px;
    border-radius: 40px;
    display: grid;
    max-width: 248px;
    height: 60px;
    place-content: center;
    margin: 0 auto;
    transition: background 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.finalCta a::before {
    content: "";
    width: 500px;
    height: 500px;
    background: var(--primaryLinear);
    position: absolute;
    z-index: 0;
    text-align: center;
    transition: 0.5s all ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.finalCta a::after {
    content: "Donde Comprar";
    width: 100%;
    height: 100%;
    line-height: 60px;
    z-index: 2;
    text-align: center;
    position: absolute;
    font-size: var(--lTxt);
}

.finalCta a:hover::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Specs D4n */

#d4nProduct .txtSpecs {
    max-width: 374px;
    bottom: 30px;
    height: 123px;
}

#d4nProduct  .biggerSpec .txtSpecs {
    max-width: 474px;
}

#d4nProduct .features {
    background: var(--thirdLinear);
}

#sliderProducts.d3nOn {
    height: 2998px;
}

#sliderProducts.d4nOn {
    height: 3721px;
}

#sliderProducts {
    transition: height 0.5s linear;
    position: relative;
}

.startProducts {
    height: 100%
}

.d3nOn #d3nProduct, .d4nOn #d4nProduct {
    opacity: 1;
    z-index: 3;
}

.d3nOn #d4nProduct, .d4nOn #d3nProduct {
    opacity: 0;
    z-index: 1;
}

#d4nProduct, #d3nProduct {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    max-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.btnSize {
    background: var(--secondWhite);
    width: 137px;
    height: 80px;
    border-radius: 50px;
    display: grid;
    place-content: center;
    font-size: var(--xlTxt);
    font-weight: 400;
    color: var(--black);
    border: 1px solid var(--pearl);
    cursor: pointer;
}

.btnSize.isOn {
    background-color: var(--bordo);
    border-color: var(--redMora);
    color: var(--white);
}

.sizeSelector {
    width: 100%;
    max-width: 295px;
    margin: 180px auto 0;
}

.sizeSelector .dFlex {
    justify-content: space-between;
}

.isOn32 .on32,
.isOn43 .on43{
    display: block;
}

.isOn32 .pFeature .on32, 
.isOn43 .pFeature .on43 {
    display: inline-block;
}

.isOn32 .on43,
.isOn43 .on32{
    display: none;
}

/** Contact **/


#contact{
    background: var(--contact);
    padding: 110px 0;
    color: var(--white);
}

#contact h3{
    font-size: var(--bigTitle);
    margin-bottom: var(--base);
}

#contact h3 + p{
    font-size: var(--lTxt);
}

.innerContact{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.phones,
.mails{
    flex: 1 1 45%;
    max-width: 45%;
}

#contact img{
    margin-bottom: 16px;
}

#contact h4, 
.number{
    font-size: var(--xlTxt);
}

#contact .number{
    margin: 8px 0;
}

.info{
    line-height: var(--lineBase);
}

.info,
.dividerMail p,
.dividerMail li{
    font-size: var(--mTxt);
}

.secondNumber{
    margin-top: var(--base);
}

.dividerMail:not(:first-child) {    
    padding-top: 22px;
}

.dividerMail:not(:last-child) {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--white);
}

.dividerMail h4 {
    margin-top: 14px;
}

.dividerMail ul {
    padding-left: 20px;
}


/** Footer **/

footer{
    padding: 72px 0 50px;
    width: 100%;
    max-width: var(--xs);
    margin: 0 auto;
}

footer img{
    display: block;
    margin: 0 auto 100px;
}

footer p{
    color: var(--black);
    font-weight: 400;
    text-align: center;                                
    line-height: 1.8;
}


/** Popup **/

.d3nPopOn .d4nOnP {
    display: none;
}

.d4nPopOn .d3nOnP {
    display: none;
}

.twoBubbles {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.twoBubbles .bubble {
    margin: 10px 0 0;
}

.boxPopup {
    position: fixed;
    top: 0;
    background: #0000003b;
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
    opacity: 0;
    z-index: -99;
}

.popIsOn .boxPopup {
    z-index: 10;
    opacity: 1;
}

.innerPopup {
    width: 712px;
    height: 493px;
    background: var(--white);
    border-radius: 10px;
    padding: 50px 0 37px;
    position: relative;
}

.imgPop img {
    mix-blend-mode: multiply;
}

.contentProduct {
    background: var(--popup);
    max-width: 461px;
    border-radius: 20px;
    margin: 44px auto 26px;
    border: 1px solid var(--pearl);
    padding-left: 22px;
}

.logoPop img {
    width: 183px;
    margin: 0 auto;
}

.logoPop {
    text-align: center;
}

.imgPop {
    max-width: 207px;
}

.txtPop h3 {
    font-size: var(--xlTxt);
    color: var(--black);
}

.contentProduct .dFlex {
    gap: 40px;
}

.txtPop {
    padding-top: 35px;
}

.retailer h3 {
    font-size: var(--mTxt);
    line-height: 44px;
    text-align: center;
}

.boxRetailer {
    width: 450px;
    height: 83px;
    margin: 0 auto;
    border: 1px solid var(--pearl);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.ctaRetailer a {
    width: 110px;
    height: 40px;
    display: grid;
    border-radius: 40px;
    background: var(--ctaPop);
    place-content: center;
    font-size: 1.2rem;
}

.disponible p {
    font-size: 1.2rem;
}

.ctaRetailer a:hover {
    background: var(--primaryLinear);
}

#closePop {
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.5s all ease;
    cursor: pointer;
}

#closePop:hover {
    transform: rotate(180deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1300px){
    #hero button.slick-arrow {
        top: 62%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px){

    #hero button.slick-arrow {
        top: 62%;
    }

    .infoProduct {
        flex-direction: column;
    }
    
    .innerSpec picture img {
        margin: 0 auto;
        display: block;
    }
    
    .innerFeatures .dFlex {
        flex-direction: column;
    }

    div#sliderD3n {
        margin: 0 auto;
    }
    
    .imgsProduct {
        margin: 0 auto;
    }
    
    .imgSiZe {
        margin: 0 auto;
        order: 0;
    }
    
    .txtFeatures {
        order: 1;
        max-width: 100%;
    }
    
    .dFlex.itemsBox {
        gap: 20px;
        align-items: center;
    }
    
    #sliderProducts.d3nOn {
        height: 3600px;
    }
    
    #sliderProducts.d4nOn {
        height: 3868px;
    }

    .imgSpec:nth-child(4) .txtSpecs,
    .imgSpec:nth-child(5) .txtSpecs{
        max-width: 210px;
        bottom: 20px;
    }

    .txtSpecs p {
        min-height: 32px;
    }
}


@media only screen and (max-width: 767px) {

    /** Navbar **/

    .navLinks {
        display: none;
    }

    .hamburger {
        display: flex;
        width: 28px;
        flex-direction: column;
        gap: 6px;
        align-items: end;
    }
    
    .hamburger > span {
        width: 28px;
        height: 2px;
        background: var(--white);
        display: block;
    }
    
    .hamburger > span:nth-child(2) {
        max-width: 13px;
    }
    
    .hamburger > span:last-child {
        max-width: 18px;
    }

    .burgerBox {
        position: fixed;
        top: 0;
        right: 0;
        background: #0000008b;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        z-index: -20;
        display: block;
    }

    .burgerOn .burgerBox{
        opacity: 1;
        z-index: 10;
    }
    
    .innerBurger {
        width: 230px;
        height: 300px;
        background: var(--primaryLinear);
        margin: 0px 0 0 auto;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-bottom-left-radius: 20px;
    }
    
    .innerBurger a {
        font-size: var(--xlTxt);
    }

    /** Hero **/

    button.slick-next.slick-arrow {
        right: 20px;
    }
    
    button.slick-prev.slick-arrow {
        left: 20px;
    }

    button.slick-next.slick-arrow {
        right: 20px;
    }
    
    button.slick-prev.slick-arrow {
        left: 20px;
    }
    
    .textHero h1 {
        line-height: var(--lineBase);
    }
    
    .textHero {
        max-width: 300px;
        text-align: center;
        top: 80px;
        transform: translateX(-50%);
    }
    
    #hero ul.slick-dots {
        bottom: 30px;
    }

    /** Modelos **/


    .modelos {
        padding: 60px 0 40px;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }

    .modelos h2 {
        line-height: var(--lineBase);
    }

    .modelSelector {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    /** D3N **/

    #sliderProducts {
        padding-top: 60px;
    }

    #d4nProduct, #d3nProduct {
        top: 60px;
    }

    .infoProduct {
        flex-wrap: wrap;
        gap: 35px;
    }

    .innerThumb {
        height: 60px;
        width: 59px;
    }

    .txtProduct {
        padding: 0;
    }

    #sliderProducts.d3nOn {
        height: 2982px;
    }

    .innerFeatures .dFlex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .txtFeatures {
        order: 1;
        padding-top: 40px;
    }
    
    .imgSiZe {
        order: 0;
    }
    
    .features .safeZone > h3 {
        margin-bottom: 40px;
    }
    
    .itemsBox {
        margin-top: 40px;
    }
    
    .pFeature * {
        font-size: var(--sTxt);
    }
    
    .itemFeature:first-child .imgFeature img {
        max-width: 105px;
    }
    
    .itemFeature {
        padding: 20px 14px;
        max-width: 280px;
    }
    
    .itemFeature:last-child .imgFeature img {
        max-width: 85px;
    }
    
    .itemFeature:first-child .pFeature {
        max-width: 135px;
    }
    
    .itemFeature:first-child .imgFeature {
        padding-top: 10px;
    }

    .finalCta {
        margin-top: 40px;
    }
    
    .features {
        padding-bottom: 60px;
    }

    .specsProduct {
        max-width: 275px;
        margin: 100px auto 0 25px;
        clip-path: inset(0px -150px 0px -10px);
    }
    
    .specsProduct .slick-list {
        overflow: visible;
    }
    
    .innerSpec {
        max-width: 265px;
    }
    
    .txtSpecs h3 {
        font-size: var(--mTxt);
        margin-bottom: 0;
    }
    
    .imgSpec:nth-child(4) .txtSpecs,
    .imgSpec:nth-child(5) .txtSpecs{
        max-width: 210px;
        bottom: 20px;
    }

    .txtSpecs p {
        min-height: 32px;
    }
    
    .txtSpecs,
    #d4nProduct .txtSpecs {
        height: 117px;
        max-width: 210px;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }
    
    .txtSpecs p {
        font-size: var(--sTxt);
    }
    
    .itemProduct button.slick-arrow {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .itemProduct button.slick-next.slick-arrow {
        right: -10px;
    }
    
    .itemProduct button.slick-prev.slick-arrow {
        left: -10px;
    }

    .innerContact {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .phones, .mails {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .dividerMail * {
        overflow-wrap: break-word;
    }
    
    .info, .dividerMail p, .dividerMail li {
        font-size: var(--sTxt);
        line-height: var(--lineBase);
    }
    
    #contact h3 {
        font-size: var(--txtM);
    }

    footer {
        max-width: 290px;
    }

    #d4nProduct .biggerSpec .txtSpecs {
        max-width: 210px;
    }

    #sliderProducts.d4nOn {
        height: 3256px;
    }

    /** Popup **/

    .innerPopup {
        max-width: 90vw;
        width: 100vw;
        height: 660px;
        max-height: 90vh;
    }
    
    .contentProduct {
        padding: 0 0 15px;
        width: 100%;
        max-width: 264px;
    }
    
    .contentProduct .dFlex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    
    .txtPop {
        width: 100%;
        padding-top: 0;
        text-align: center;
    }
    
    .txtPop .bubble {
        margin: 10px auto 0;
    }
    
    .boxRetailer {
        flex-wrap: wrap;
        height: 182px;
        max-width: 260px;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    
    .imgRetailer img {
        margin: 0 auto;
    }
}