/**********************************************/
/************* Homepage Banner ****************/
/**********************************************/

.hp-banner {
    position: relative;
    margin-bottom: 50px;
}

.hp-banner .slider {
    height: 100%;
}

.hp-banner .slider .slide .subtitle {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    z-index: 5;
}

.hp-banner .slider .slide .subtitle p {
    font-size: 1.25rem;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    margin: 25px 0 0;
}

.hp-banner .slider .slide .subtitle h2 {
    font-family: var(--font-family);
    font-size: 4.063rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -0.65px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hp-banner .slider .slide .image {
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 0;
}

.hp-banner .slider .slide .image:has(.subtitle)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    background-image: linear-gradient(to top, #6f6f6f, #6f6f6f);
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}

.hp-banner .slider .slide:has(.subtitle) .image::before {
    mix-blend-mode: multiply;
    background-image: linear-gradient(to bottom, #6f6f6f, #6f6f6f);
}

.hp-banner .slider .slide .image.video img {
    z-index: 1;
}

.hp-banner .slider .slide .video.image::before {
    z-index: 2;
}

.hp-banner .slider .slide .subtitle a {
    margin-top: 20px;
    pointer-events: auto;
}

.hp-banner .slider .slide .subtitle .button-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-inline: auto;
}

.hp-banner .slider .slide .subtitle .button {
    margin-top: 45px;
    padding: 25px 30px;
    align-items: center;
}

.hp-banner .button-wrapper .button::before {
    opacity: .35;
    background-color: var(--white);
}

.hp-banner .button-wrapper .button:hover::before {
    transform: scale(1.05);
}

.hp-banner .button-wrapper .button:hover::after {
    transform: translateX(10px) scale(1.15);
}

.hp-banner .play {
    height: 56px;
    width: 56px;
    position: relative;
}

.hp-banner .play::after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    left: -1px;
    right: 0;
    height: 55px;
    width: 55px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.603);
    transition: var(--transition);
}

.hp-banner .play:hover::after {
    transform: scale(1.05);
}

.hp-banner .play::before {
    content: "";
    height: 12px;
    width: 11px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--white);
    -webkit-mask-image: url(/assets/img/svg/play-banner.svg);
    mask-image: url(/assets/img/svg/play-banner.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

}


.video-wrapper-fullscreen.active iframe,
.video-wrapper-fullscreen.active video,
.slider .slide .image video,
.slider .slide .image iframe,
.slider .slide .image img {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: black;
}

.hp-banner .slider .slide .image iframe {
    transform: scale(1.2);
    z-index: -1;
}

.video-wrapper-fullscreen.active iframe,
.video-wrapper-fullscreen.active video {
    width: 80%;
    margin: auto;
    object-fit: contain;
}

.video-wrapper-fullscreen video:-webkit-full-page-media {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}


.image-slider .slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply;
    background: linear-gradient(to right, #d8d5d5 100%, transparent 100%);
}

.template .slider .slide .image::after {
    background: none;
}

.video-wrapper-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.video-wrapper-fullscreen.active {
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    left: 0;
}

.video-wrapper-fullscreen .close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px;
    z-index: 10;
    cursor: pointer;
}

.video-wrapper-fullscreen .close-video::after,
.video-wrapper-fullscreen .close-video::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    background-color: #fff;
}

.video-wrapper-fullscreen .close-video::after {
    transform: rotate(-45deg);
}

/*tiny slider nav custom*/


.hp-banner .tns-nav {
    background: transparent;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 20px 10px 32px 31px;
    gap: 35px;
    align-items: center;
    z-index: 2;
    margin: auto;
    justify-content: center;
}

.hp-banner .tns-nav button {
    border-radius: 100%;
    height: 20px;
    width: 20px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-banner .tns-nav button::before {
    content: "";
    display: block;
    border-radius: 100%;
    background: white;
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    position: absolute;
    margin: auto;
}

.hp-banner .tns-nav button.tns-nav-active::before {
    height: 9px;
    width: 9px;
}


/* @media(max-width: 1800px) {
    .hp-banner .slider .slide .subtitle h2  {
        font-size: 70px;
    }
} */


.hp-banner>.video-button {
    position: fixed;
    display: none;
    height: 88px;
    width: 88px;
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    /* mix-blend-mode: hard-light; */
    transition: none;
    cursor: none;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);

}

.hp-banner>.video-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .25;
    background-color: var(--white);
    border-radius: 50%;
    top: 0;
    left: 0;
}

.hp-banner>.video-button.in {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    cursor: none;
}

.hp-banner>.video-button a {
    font-family: var(--font-family);
    font-size: 9px;
    font-weight: normal;
    line-height: 1.56;
    letter-spacing: 0.45px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: none;
    margin: auto;
    left: 0;
    right: 0;
    height: 10px;
}

.hp-banner .slider.hide-cursor {
    cursor: none;
}


@media(max-width: 992px) {

    .whatsapp {
        display: none;
    }

    .hp-banner .slider .slide .subtitle {

        margin: auto 20px;
        max-width: 750px;
    }

    .hp-banner>.video-button {
        display: none;
    }

    .hp-banner .video-button.mobile {
        display: block;
        position: absolute;
        right: 0;
        bottom: 70px;
        top: unset;
        left: 0;
        transform: none;
        font-size: 8px;
        font-weight: normal;
        line-height: normal;
        letter-spacing: 0.4px;
        text-align: center;
        color: var(--white);
        text-transform: uppercase;
        justify-content: center;
        z-index: 999;
    }

    .hp-banner>.video-button.in {
        display: none;
    }

    .hp-banner .slider .slide .image {
        aspect-ratio: 16 / 9;
    }
}

@media(max-width: 768px) {

    .hp-banner {
        position: relative;
        margin-bottom: 30px;
    }

    .hp-banner .slider .slide .subtitle h2 {
        font-size: 2.462rem;
        line-height: 1.19;
        letter-spacing: normal;
        text-align: center;
    }

    .hp-banner .slider .slide .subtitle {
        margin: auto;
        padding: 84px 20px 80px;
        width: unset;
        align-items: center;
        justify-content: center;
    }

    .hp-banner .slider .slide .subtitle p {
        text-align: center;
        font-size: 1.231rem;
        line-height: 1.25;
        letter-spacing: normal;
        text-align: center;
        margin-top: 15px;

    }

    .hp-banner .slider .slide .subtitle .button-wrapper {
        width: 100%;
    }

    .hp-banner .slider .slide .subtitle .button {
        margin: 29px auto 0;
        font-size: 11px;
        font-weight: 500;
        text-align: center;
        line-height: 1.43;
        letter-spacing: 0.58px;
        padding: 12px 20px;
        flex: 1;
        justify-content: center;
    }

    .hp-banner .slider .slide .subtitle .button::after {
        margin: 0;
    }

    .hp-banner .play {
        height: 45px;
        width: 45px;
    }

    .hp-banner .play::after {
        height: 45px;
        width: 45px;
    }

    .hp-banner .tns-nav {
        padding: 20px;
        flex-direction: row;
        bottom: 0;
        top: unset;
        left: 0;
        right: 0;
        justify-content: center;
    }

    .hp-banner .slider .slide .image.video .video-button {
        display: flex;
    }

    .video-wrapper-fullscreen.active iframe,
    .video-wrapper-fullscreen.active video {
        height: unset;
        margin: auto;
        width: 100%
    }

}


.index section:not(.hp-banner) {
    margin: 100px auto 50px;
}


.index section .header,
.hp-featured .card-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.hp-featured>div.container {
    max-width: 1260px;
}

.index section h2 {
    font-size: 2.5rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: -0.4px;
    text-align: left;
    color: var(--secondary);
    margin-block: 0;
    text-transform: uppercase;
}

.mobile-btn {
    display: none;
}

@media(max-width:767px) {

    .index section:not(.hp-banner) {
        margin: 60px auto 30px;
    }

    .hp-featured {
        margin: 60px auto 30px;
    }

    .index section .header,
    .hp-featured .card-header {
        justify-content: center;
        margin-bottom: 20px;
    }

    .index section .header>div:last-of-type,
    .hp-featured .card-header>div:last-of-type {
        display: none;
    }

    .index section h2 {
        font-size: 1.846rem;
        line-height: 1.27;
        letter-spacing: -0.24px;
    }

    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-btn .button {
        justify-content: center;
        font-size: .885rem;
        line-height: 1.43;
        letter-spacing: 0.58px;
        margin-inline: auto;
    }

    .mobile-btn .button::after {
        margin-inline: inherit;
        width: 15px;
        height: 11px;
    }

    .hp-featured>div.container {
        padding: 0;
    }

    .hp-featured>div.container .card-wrapper {
        flex-wrap: nowrap;
        padding-bottom: 30px;
    }

    .hp-featured:has(.tns-slider) > div.container .card-wrapper {
        gap: 0;
    }

}

.hp-banner-highlight {
    background-color: var(--secondary);
    padding-block: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp-banner-highlight>div {
    display: flex;
    width: 100%;
    margin-inline: auto;
    gap: 100px;
    max-width: 1440px;
    padding-inline: auto;
}

.hp-banner-highlight>div>div:first-of-type {
    max-width: 555px;
    margin-inline: auto;
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index section.hp-banner-highlight h2 {
    font-size: 3.438rem;
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -0.55px;
    text-align: left;
    color: var(--white);
    text-transform: uppercase;
}

.index section.hp-banner-highlight h2>strong {
    font-weight: 600;
}

.hp-banner-highlight p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
    margin: 26px 0 30px;
}

.hp-banner-highlight .imgs {
    max-width: 688px;
    flex: 1;
    position: relative;
    padding-bottom: 50px;
}

.hp-banner-highlight .mask {
    width: 100%;
    max-width: 688px;
    max-height: 648px;
    height: 100%;
    aspect-ratio: 1.062/1;
    /* Mantém proporção quadrada */
    display: inline-block;

    mask-image: url('/assets/img/svg/filter_ij.svg');
    -webkit-mask-image: url('/assets/img/svg/filter_ij.svg');

    mask-size: cover;
    -webkit-mask-size: cover;

    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

    mask-position: left;
    -webkit-mask-position: left;
    pointer-events: none;

    mask-type: alpha;
    -webkit-mask-type: alpha;

}

.hp-banner-highlight .mask .slide {
    aspect-ratio: 1.062/1;
}

.hp-banner-highlight .mask img {
    width: 100%;
    height: 100%;
    max-width: 688px;
    max-height: 648px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hp-banner-highlight .tns-nav {
    background: transparent;
    position: absolute;
    display: flex;
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 25px;
    gap: 35px;
    align-items: center;
    z-index: 2;
    margin: auto;
    justify-content: center;

}

.hp-banner-highlight .tns-nav button {
    border-radius: 100%;
    background: white;
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.hp-banner-highlight .tns-nav button.tns-nav-active {
    height: 9px;
    width: 9px;
}

@media(max-width: 1024px) {

    .hp-banner-highlight>div {
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%;
    }

    .hp-banner-highlight .mask {
        mask-size: contain;
        -webkit-mask-size: contain;
    }

    .hp-banner-highlight .imgs {
        margin-top: 35px;
    }
}

@media(max-width:767px) {
    .hp-banner-highlight {
        flex-wrap: wrap;
    }

    .hp-banner-highlight .mask .slide,
    .hp-banner-highlight .mask {
        aspect-ratio: 0.9726/1;
    }

    .hp-banner-highlight .mask {
        mask-position: center;
        -webkit-mask-position: center;
        mask-size: cover;
        -webkit-mask-size: cover;
    }

    .index section.hp-banner-highlight h2 {
        font-size: 2.308rem;
        line-height: 1.15;
        letter-spacing: -0.3px;
        margin-top: 0;
    }

    .hp-banner-highlight p {
        font-size: 1.077rem;
        line-height: 1.29;
        letter-spacing: normal;
    }

    .hp-banner-highlight .button {
        font-size: 11px;
    }

    .hp-banner-highlight .tns-nav {
        gap: 25px;
        padding: 0;
    }
}

@media(min-width: 1440px) {
    .hp-banner-highlight .mask {
        mask-size: auto;
        -webkit-mask-size: auto;
    }
}

.index section:has(+.hp-why) {
    margin-bottom: 0;
}

.index section.hp-featured+section.hp-why {
    margin-top: 100px;
}

.index section.hp-why {
    margin-top: 0;
    padding: 90px 0 85px;
    position: relative;
}

.hp-why .container {
    max-width: 1040px;
}

.hp-why:before {
    content: "";
    background: var(--white);
    opacity: .5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.index section.hp-why h2 {
    text-align: center;
    margin-bottom: 90px;
}

.hp-why .slider {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 85px;
    justify-content: center;
}

.hp-why .slide>div {
    position: relative;
    margin: 0 auto 5px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    width: 90px;
    height: 90px;
    display: block;
}

.hp-why .slide>div:before {
    content: "";
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    width: 90px;
    height: 90px;
    display: block;
}

.hp-why .slide {
    letter-spacing: normal;
    text-align: center;
    color: var(--secondary);
    display: flex !important;
    gap: 15px;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    margin: auto;
}

.hp-why .slide h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    text-transform: uppercase;
    margin: 5px 0 0 0;
}

.hp-why .slide p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.33;
    margin: 0;
}

.hp-why .tns-nav {
    background: transparent;
    position: absolute;
    display: flex;
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 20px;
    gap: 35px;
    align-items: center;
    z-index: 2;
    margin: auto;
    justify-content: center;
}

.hp-why .tns-nav button {
    border-radius: 100%;
    background: var(--primary);
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.hp-why .tns-nav button.tns-nav-active {
    height: 9px;
    width: 9px;
}

@media(max-width:767px) {
    .index section.hp-why {
        padding: 60px 0;
    }

    .index section.hp-why h2 {
        margin-bottom: 33px;
    }

    .hp-why .slider {
        gap: 0px;
        margin-bottom: 40px;
    }

    .hp-why .slide {
        gap: 8px;
    }

    .hp-why .slide>div {
        margin-bottom: 12px;
        width: 74px;
        height: 74px;
    }

    .hp-why .slide h3 {
        margin:0;
    }

    
}




/********************************************/
/*********** HP HORIZONTAL SLIDER ***********/
/********************************************/



/* .hp-horizontal-slideshow {
	margin: 60px 0;
} */

.hp-horizontal-slideshow .container {
    max-width: 100%;
    padding: 0;
}


@media(min-width: 768px) {
    /* .hp-horizontal-slideshow {
		margin: 140px 0;
	} */
}

@media(min-width: 992px) {
    .hp-horizontal-slideshow .container>.header {
        overflow: hidden;
        padding: 0;
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 0px;
        justify-content: center;
        padding-left: 0px;
        padding-right: 0;
    }

    /* .hp-horizontal-slideshow {
		margin: 180px 0;
	} */
}



/********** SLIDER **********/

.hp-horizontal-slideshow .brand-slider {
    margin-right: auto;
}

.hp-horizontal-slideshow .slider {
    cursor: grab;
}

.hp-horizontal-slideshow .slider.grabbing {
    cursor: grabbing;
}

.hp-horizontal-slideshow .slider:not(.tns-slider) {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
}

.hp-horizontal-slideshow .slider:not(.tns-slider) .slide {
    max-width: 260px;
    min-width: 260px;
}

.hp-horizontal-slideshow .slider .slide {
    position: relative;
    overflow: hidden;
}

.hp-horizontal-slideshow .slider .slide div.img_wrapper:first-of-type {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.hp-horizontal-slideshow .slider .slide div.img_wrapper:first-of-type:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    will-change: transform;
    background-image: linear-gradient(to top, rgba(55, 62, 55, .4) 30%, rgba(55, 62, 55, 0) 100%);
    pointer-events: none;
    inset: 0;
    transition: var(--transition);
    z-index: 1;
    opacity: 1;
}

.hp-horizontal-slideshow .slider .slide div.img_wrapper:first-of-type:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    will-change: transform;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .75));
    pointer-events: none;
    inset: 0;
    transition: var(--transition);
    z-index: 2;
    opacity: 0;

}

.hp-horizontal-slideshow .slider .slide picture img {
    width: 100%;
    border-radius: 30px;
    /* object-fit: cover; */
    display: block;
    transition: var(--transition);
}

.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) {
    position: absolute;
    top: auto;
    bottom: 29px;
    left: 30px;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper)>div {
    transition: var(--transition);
}

.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) img {
    width: 65px;
    height: 135px;
}

.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) h3 {
    font-size: 2.188rem;
    font-weight: normal;
    line-height: 1.14;
    letter-spacing: -0.35px;
    text-align: left;
    color: #ebe2d3;
    margin: 20px 0 0 0;
}

.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) .button {
    transition: var(--transition);
    opacity: 0;
    padding: 0;
    will-change: transform;
    align-items: center;
    transform: translateY(20px);
    color: var(--white);
}


.hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) .button::before {
    content: none;
    display: none;
}


@media (min-width: 768px) {

        
    .hp-horizontal-slideshow .slider .slide div.img_wrapper:first-of-type:hover:before {
        opacity: 0;
    }

    
    .hp-horizontal-slideshow .slider .slide div.img_wrapper:hover:first-of-type:after {
        opacity: 1;
    }

    .hp-horizontal-slideshow .slider .slide div.img_wrapper:hover picture img {
        transform: scale(1.03);
    }

    .hp-horizontal-slideshow .slider .slide div.img_wrapper:hover+div {
        bottom: 50px;
    }

    .hp-horizontal-slideshow .slider .slide:hover>div:not(.img_wrapper) .button {
        opacity: 1;
        padding-top: 21px;
        transform: translateY(0);
    }


}

@media (min-width: 992px) {

    /* .hp-horizontal-slideshow .slider{
        padding-inline: 110px;
    }

	.hp-horizontal-slideshow .slider:not(.tns-slider) .slide {
		max-width: 450px;
		min-width: 450px;
	} */

}

.hp-horizontal-slideshow .container:first-of-type {
    max-width: 100%;
    padding-inline: 110px;
    margin-bottom: 55px;
}

.hp-horizontal-slideshow .header {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.hp-horizontal-slideshow .header h2 {
    flex: 1;
}

.hp-horizontal-slideshow .slider-wrapper.center {
    display: flex;
    justify-content: center;
}

.hp-horizontal-slideshow .slider-arrows {
    display: flex;
    align-items: center;
    pointer-events: none;
    gap: 20px;
    align-items: center;
}

.hp-horizontal-slideshow .slider-arrows>div {
    position: relative;
    width: 42px;
    height: 30px;
    pointer-events: auto;
    cursor: pointer;
    transition: var(--transition);
}

.hp-horizontal-slideshow .slider-arrows>div[aria-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
}

.hp-horizontal-slideshow .slider-arrows>div.prev {
    transform: rotate(180deg);
}

.hp-horizontal-slideshow .slider-arrows>div.next {
    right: 0;
}

.hp-horizontal-slideshow .slider-arrows>div::before {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/assets/img/svg/arrow-gallery.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("/assets/img/svg/arrow-gallery.svg");
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--primary);
    transition: var(--transition);
    cursor: pointer;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}


@media (max-width: 992px) {
    .hp-horizontal-slideshow .container:first-of-type {
        padding-inline: 55px;
        margin-bottom: 30px;
    }
}


@media (max-width: 768px) {
    .hp-horizontal-slideshow .container:first-of-type {
        max-width: 100%;
        padding-inline: 20px;
        margin-bottom: 30px;
    }

    .hp-horizontal-slideshow .slider-arrows,
    .hp-horizontal-slideshow .slider .slide .button {
        display: none;
    }

    .hp-horizontal-slideshow .slider .slide>div {
        left: 16px;
        bottom: 18px;
    }

    .hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) img {
        width: 34px;
        height: 71px;
    }

    .hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) h3 {
        font-size: 1.692rem;
        line-height: 1.36;
        letter-spacing: -0.22px;
        margin: 12px 0 0 0;
    }

    .hp-horizontal-slideshow .slider .slide picture img,
    .hp-horizontal-slideshow .slider .slide div.img_wrapper:first-of-type {
        border-radius: 20px;
    }

    .hp-horizontal-slideshow .slider .slide>div:not(.img_wrapper) {
        bottom: 20px;
        left: 16px;
    }
}

.index section.hp-highlight .container>*,
.index section.hp-testimony .container>* {
    text-align: center;
    margin-inline: auto;
}

.index section.hp-highlight h2,
.index section.hp-testimony h2 {
    font-size: 4.063rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.65px;
    color: var(--secondary);
}

.index section.hp-highlight h2 strong {
    font-weight: 600
}

.index section.hp-highlight h2 p {
    font-weight: 300;
    line-height: unset;
    font-size: 4.063rem;
    letter-spacing: -0.65px;
    margin: 0;
}


.index section.hp-highlight p,
.index section.hp-testimony p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--secondary);
}

.index section.hp-highlight .container>p {
    margin-top: 25px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {

    .index section.hp-highlight h2 p,
    .index section.hp-testimony h2 {
        font-size: 2.462rem;
        line-height: 1.19;
        letter-spacing: -0.32px;
    }

    .index section.hp-highlight .container>p {
        line-height: 1.25;
        margin-top: 15px;
        margin-bottom: 0px;
    }
}

.hp-mosaic {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.hp-mosaic>div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-basis: 100%;
    flex-wrap: wrap;
}

.hp-mosaic .item {
    flex: 6.31;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-mosaic .item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    will-change: transform;
    background-image: linear-gradient(to top, #000000, #000000);
    opacity: .3;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
}

.hp-mosaic .item a {
    flex: 1;
    z-index: 0;
    position: relative;
    display: flex;
}

.hp-mosaic img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    aspect-ratio: 902 / 761;
    transition: var(--transition);
}

.hp-mosaic .item:hover img {
    transform: scale(1.03);
}

.hp-mosaic .item.narrow {
    flex: 3.7;
}

.hp-mosaic .item.narrow img {
    aspect-ratio: 529 / 761;
}



.hp-mosaic .item div {
    position: absolute;
    z-index: 2;
    text-align: center;
}

.hp-mosaic .item h3 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.25;
    letter-spacing: -0.4px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    transition: var(--transition);
    transform: translateY(0px);
}



.hp-mosaic .item .button {
    color: var(--white);
    margin-inline: auto;
    transition: var(--transition);
    opacity: 0;
    height: 0;
    will-change: transform;
    transform: translateY(30px);
    padding: 0;
}

.hp-mosaic .item .button::after {
    background-color: var(--white);
}

.hp-mosaic .item:hover h3 {
    transform: translateY(-20px);
}

.hp-mosaic .item:hover .button {
    opacity: 1;
    height: auto;
    transform: translateY(0px);
}

.hp-mosaic .item:hover::before {
    opacity: .6;
}

@media(max-width:767px) {

    .hp-mosaic,
    .hp-mosaic>div {
        gap: 5px;
        flex-direction: column;
    }

    .hp-mosaic .item h3 {
        font-size: 1.846rem;
        font-weight: normal;
        line-height: 1.25;
        letter-spacing: -0.24px;
    }
}

.hp-txt_img {
    padding-inline: 40px;
}

.hp-txt_img .row:nth-child(even) {
    flex-direction: row-reverse;
}

.hp-txt_img .row {
    --gap-v: 30px;
}

@media(min-width:992px) {
    .hp-txt_img .row {
        --gap-h: 0px;
        --gap-v: 70px;
    }

    .hp-txt_img .row>div:not(:has(img)) {
        padding-inline: clamp(16px, 7vw, 110px);
    }

    .hp-txt_img .button {
        font-size: 14px;
    }
}

.hp-txt_img .row>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hp-txt_img .row>div:has(img) {
    overflow: hidden;
}

.hp-txt_img .row>div a img {
    transition: var(--transition);
    overflow: hidden;
}

.hp-txt_img .row>div a:hover img {
    transform: scale(1.03);
}


.hp-txt_img .row>div h3 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.25;
    letter-spacing: -0.4px;
    color: var(--secondary);
    text-transform: uppercase;
    margin: 0;
}

.hp-txt_img .row>div p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--secondary);
    margin-top: 30px;
    margin-bottom: 28px;
}

@media(max-width:992px) {
    .hp-txt_img .row a:has(img) {
        display: block;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    .hp-txt_img .row a:has(img) img{
        object-fit: cover;
    }
}

@media(max-width:767px) {
    .hp-txt_img {
        padding-inline: 20px;
    }

    .hp-txt_img .row>div h3 {
        font-size: 1.846rem;
        line-height: 1.25;
        letter-spacing: -0.24px;
    }

    .hp-txt_img .row {
        --gap-v: 25px;
    }

    .hp-txt_img .row>div p {
        line-height: 1.25;
        margin-top: 15px;
        margin-bottom: 22px;
    }
}

.hp-testimony {
    background-color: rgba(246, 241, 232, 0.5);
    padding: 90px 0 100px;
    position: relative;
}

.hp-testimony .container {
    display: flex;
    flex-direction: column;
    position: static;
    max-width: 900px;
    padding: 0 50px;
}

.index .hp-testimony h2 {
    margin-bottom: 8px;
}

.index .hp-testimony p.autor {
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.43;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 25px;
}

.hp-testimony .button {
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.7px;
    padding: 18px 30px;
    align-items: center;
    margin-top: 33px;
}

.hp-testimony .tns-nav {
    position: absolute;
    background: transparent;
    top: 0;
    bottom: 0;
    right: 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 0;
    margin-block: auto;
}

.hp-testimony .tns-nav button {
    border-radius: 100%;
    background: var(--primary);
    height: 5px;
    width: 5px;
    z-index: 1;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.hp-testimony .tns-nav button.tns-nav-active {
    height: 9px;
    width: 9px;
}

@media(max-width:769px) {
    .hp-testimony {
        background-color: var(--white);
        padding: 50px 0 60px;
        position: relative;
    }

    .hp-testimony .container {
        padding: 0 20px;
    }

    .index section.hp-testimony p {
        line-height: 1.32;
        margin-bottom: 10px;
    }

    .hp-testimony .tns-nav {
        flex-direction: row;
        top: auto;
        left: 0;
        right: 0;
        gap: 20px;
    }

    .hp-testimony .tns-outer {
        position: relative;
    }

    .hp-testimony .slider {
        padding-bottom: 30px;
    }

    .hp-testimony .button {
        width: 100%;
        justify-content: center;
        font-size: 0.813rem;
        padding: 15px 20px;
        margin-top: 38px;
    }

    .index .hp-testimony p.autor {
        font-size: .813rem;
        letter-spacing: 0.55px;
        margin-top: 0;
    }

}




.blog .listing .container {
    max-width: 1240px;
}

.index .blog .container {
    max-width: 1260px;
}

.row:has(.list-article) {
    --gap-h: 30px;
    --gap-v: 80px;
    opacity: 1;
    transition: opacity 0.3s ease;
    justify-content: center;
}


.row.fade-out:has(.list-article) {
    opacity: 0;
}

.list-article .img-list {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 0;
    isolation: isolate;
    transform: translateZ(0);
    border-radius: 30px;
}

.list-article .img-list img {
    width: 100%;
    transition: var(--transition);
    height: 100%;
    aspect-ratio: 595 / 393;
}

.list-article .img-list:hover img {
    transform: scale(1.05);
}

.list-article .list-bot-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 26px;
}

.list-article .list-bot-content span {
    font-size: .813rem;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: 0.65px;
    text-align: left;
    display: flex;
    gap: 10px;
    text-transform: uppercase;
    color: #c9caca
}

.list-article .list-bot-content>a {
    font-size: 1.75rem;
    font-weight: normal;
    line-height: 1.43;
    letter-spacing: -0.28px;
    text-align: left;
    color: #1f3839;
    margin-top: 11px;
}

.list-article .list-bot-content span>a {
    color: var(--primary);
}

.list-article .list-bot-content>a:hover {
    opacity: .6;
}

.list-article .list-bot-content span>a:hover {
    color: var(--green-mo);
}

.index section.blog .header .button {
    padding: 0;
    padding-bottom: 5px;
    align-items: center;
    line-height: 1;
}

.index section.blog .header {
    align-items: flex-end;
}

@media (max-width: 768px) {

    .index section.blog .header {
        flex-direction: column;
        align-items: center;
        gap: 17px;
    }

    .index section.blog .header h2 {
        font-size: 1.81rem;
    }

    .index section.blog .header>div:last-of-type {
        display: block;
    }

    .row:has(.list-article) {
        --gap-v: 35px;
    }

    .blog .listing .container {
        padding-inline: 20px;
    }

    .list-article {
        max-width: 100%;
    }

    .list-article .list-bot-content {
        align-items: center;
        margin-top: 15px;
    }

    .list-article .list-bot-content span {
        font-size: .769rem;
        text-align: center;
    }

    .list-article .list-bot-content>a {
        font-size: 1.692rem;
        line-height: 1.27;
        letter-spacing: -0.22px;
        margin-top: 10px;
        text-align: center;

    }

}