/* Swiper JS */
.swiper {
    width: 100%;
    height: 100%;
}

/* Banner Section */
.homepage-banner {
    height: 590px;
    display: flex;
    /* background: url(/assets/images/front-office/homepage/banner-background.jpg) no-repeat center; */
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.homepage-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-banner-left {
    overflow: hidden;
    width: 50%;
    padding: 35px;
}

.homepage-banner-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-style: italic;
    vertical-align: middle;
}

.homepage-banner-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 1.2s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

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

/* Our Story Section */
.tel_our_story_section {
    padding: 50px 40px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
}


.tel_our_story_section {
    position: relative;
}

/* Farm Section */
.tel_farm_section {
    position: relative;
    width: 100%;
    /* Typically video sections are full height or large height, user didn't specify section height but video bg implies coverage. Using padding to space it out. */
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tel_farm_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tel_farm_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Assuming some darken based on white text legibility, user didn't explicitly ask but usually needed for video bgs with white text. Image shows text clearly on dark bg. */
    z-index: 2;
}

.tel_farm_content_container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.tel_farm_content {
    /* "inside add this text in the left , start max width 1200px" - container is 1200, text is left aligned inside it. */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    /* Optional cap if text shouldn't span full 1200 */
}

.tel_farm_subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 2px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.tel_farm_title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -1.49px;
    vertical-align: middle;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    /* space "under it" */
}

.tel_farm_desc {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 38.7px;
    letter-spacing: -0.67px;
    vertical-align: middle;
    color: #FFFFFF;
    margin: 0 0 40px 0;
}

.tel_farm_btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #FFFFFF;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14.14px;
    line-height: 25.5px;
    letter-spacing: 17%;
    /* 0.17em */
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tel_farm_btn:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .tel_farm_title {
        font-size: 42px;
        line-height: 1.2;
    }

    .tel_farm_desc {
        font-size: 18px;
        line-height: 1.4;
    }

    .tel_farm_section {
        height: auto;
        padding: 50px 0;
    }
}

/* Default states */
.tel_os_translate_down {
    transform: translateY(98px);
    width: 100%;
    height: 300px;
    transition: transform 1.5s ease;
    /* smooth animation */
}

.tel_os_translate_up {
    transform: translateY(-98px);
    width: 100%;
    height: 300px;
    transition: transform 1.5s ease;
}

/* Hover effect on parent */

.tel_producers_top_content {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tel_producers_title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 69.33px;
    line-height: 66.67px;
    letter-spacing: -1.49px;
    text-align: center;
    vertical-align: middle;
    color: #000000;
    /* Assuming black from context/image usually, description is gray. */
    margin: 0 0 30px 0;
}

.tel_producers_desc {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    /* Inferred from similar sections */
    line-height: 28px;
    text-align: center;
    color: #5C6865;
    margin: 0 0 40px 0;
}

.tel_producers_btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #1A2621;
    background: transparent;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14.14px;
    line-height: 25.5px;
    letter-spacing: 17%;
    /* 0.17em */
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tel_producers_btn:hover {
    background: #1A2621;
    color: #ffffff;
}

.tel_producers_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.tel_producers_grid_item {
    width: 100%;
    height: 350px;
    /* Setting a fixed height for consistency */
    position: relative;
    overflow: hidden;
}

.tel_producers_grid_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tel_producers_grid_item:hover img {
    transform: scale(1.05);
    /* Subtle zoom effect */
}

/* Responsive */
@media (max-width: 1024px) {
    .tel_producers_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tel_producers_title {
        font-size: 42px;
        line-height: 1.2;
    }



    .tel_producers_section {
        padding: 50px 20px;
    }
}


.tel_producers_section {
    max-width: 1200px;
    margin: auto;
}




.tel_our_story_circle-box {
    display: flex;

    flex-direction: column;
    gap: 20px;
    max-width: 474px;
    align-content: center;
    align-items: center;
}

.tel_our_story_top_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    /* Space between elements */
    margin-bottom: 60px;
}

.tel_our_story_img_wrapper {
    /* Image size not specified, assuming intrinsic or giving max width */
    max-width: 300px;
    transition: transform 1.5s ease;
}

.tel_our_story_img_wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tel_os_translate_down {
    transform: translateY(98px);
    width: 100%;
    height: 300px;
}

.tel_os_translate_up {
    transform: translateY(-98px);
    width: 100%;
    height: 300px;
}

.tel_our_story_section:hover .tel_os_translate_up {
    transform: translateY(98px);
}

.tel_our_story_section:hover .tel_os_translate_down {
    transform: translateY(-98px);
}

.tel_our_story_circle {
    width: 200px;
    height: 200px;
    border: 0.67px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Ensure it stands out if bg is colored, but usually transparent */
}

.tel_our_story_circle span {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 27.93px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #3F3F3F;
    text-transform: uppercase;
}

.tel_our_story_text {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
}

.tel_our_story_text p {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    text-align: center;
    vertical-align: middle;
    color: #000000;
}

.tel_our_story_bottom_line_container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.tel_our_story_line {
    width: 50%;
    height: 1px;
    background-color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .tel_our_story_top_row {
        flex-direction: column;
        gap: 40px;
    }

    .tel_os_translate_down,
    .tel_os_translate_up {
        transform: none;
        /* Reset translations on mobile */
    }

    .tel_our_story_section {
        padding-bottom: 20px !important;
    }
}

.homepage-banner-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    letter-spacing: 0%;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
}

.homepage-banner-buttons {
    display: flex;
    gap: 10px;
}

.homepage-banner-green {
    background: #172621;
    border: 1px solid #ffffff;

    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.homepage-banner-white {
    color: #000000;

    border: 1px solid #ffffff;

    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 3px;
}

.homepage-banner-left-container {
    width: 100%;
    max-width: 630px;
    height: 100%;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-banner-left-content {
    width: 100%;
    max-width: 425px;
}

.homepage-banner-left h2 {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 74px;
    letter-spacing: 0.5px;
    color: #fff;
    font-style: normal;
}

.homepage-banner-left p {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    letter-spacing: 0;
    color: #ffffffb2;
    padding: 20px 0 40px;
}

.homepage-banner-right {
    width: 50%;
}

.homepage-banner-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-banner-left-buttons {
    display: flex;
    gap: 10px;
}

.homepage-banner-coffee-button {
    width: 167px;
    height: 48px;
}

.homepage-banner-coffee-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.homepage-banner-instant-button {
    width: 167px;
    height: 48px;
}

.homepage-banner-instant-button:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Featured Section */
.homepage-featured {
    display: flex;

    max-width: 1598px;
    margin: auto;
    padding: 80px 0 31px 35px;
}

.homepage-featured h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0.5px;
    padding: 0 70px;
    text-transform: uppercase;
}

.homepage-featured-view {
    width: 119px;
    height: 48px;
    background: #172621;
    color: #fff;
    margin: auto;
    font-size: 14px;
}

.homepage-featured-view:hover {
    background: #000;
}

/* Featured Swiper */
.homepage-featured-swiper {
    padding: 60px;
}

.homepage-featured-card {
    background: linear-gradient(324.48deg, #f1ede3 16.95%, #f6eacb 92.29%);
    border-radius: 10px;
    /* max-width: 370px; */
}

.homepage-featured-card-top {
    position: relative;
    height: 245px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.homepage-featured-card-top-tags {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 20px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.homepage-featured-card-top-tags-left {
    display: flex;
    gap: 5px;
}

.homepage-featured-card-top-tags-left span {
    padding: 5px;
    background: #e6ea9e;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

.homepage-featured-card-top-tags-right {
    position: relative;
}

.homepage-featured-card-heart-filled {
    filter: brightness(0) invert(0);
}

.homepage-featured-card-top-tags-right img {
    width: 100%;
    max-width: 17px;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.homepage-featured-card-top-tags-right img.active {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    opacity: 1;
}

.homepage-featured-card-top-image {
    display: block;
    /* height: 190px; */
    transition: all 0.3s ease-in-out;
}

.homepage-featured-card-bottom {
    padding: 12px 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.homepage-featured-card-bottom h5 {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    width: fit-content;
    padding: 5px 10px;
    margin: auto;
    background: #ffffff;
    border-radius: 3px;
}

.homepage-featured-card-bottom h3 {
    font-family: 'InterFace', sans-serif;

    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 20.1px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.homepage-featured-card-bottom-price-cotainer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0 15px;
}

.homepage-featured-card-bottom-price-cotainer>div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.homepage-featured-card-bottom-price {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 16.1px;
    letter-spacing: 2px;
    vertical-align: middle;
    color: #4d4341bf;
    text-align: center;
}

.homepage-featured-swiper-bottom {
    border: 1px solid #211709;
    background: #211709;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 13.34px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.homepage-featured-card-bottom-currency {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
}

.homepage-featured-card-bottom h6 {
    font-family: 'InterFace', sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #584a35;
}

.homepage-featured-card-bottom-buttons {
    display: flex;
    gap: 10px;
}

.homepage-featured-card-bottom-bag {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: all 0.3s ease-in-out;
}

.homepage-featured-card-bottom-bag img {
    width: 100%;
    object-fit: cover;
}

.homepage-featured-card-bottom-view {
    width: 100%;
    height: 49px;
    background: #245233;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.homepage-featured-card-bottom-view:hover {
    opacity: 0.8;
}

.swiper-button-next-featured,
.swiper-button-prev-featured {
    width: 32px;
    height: 34px;
    background: url(/assets/images/front-office/homepage/feature-swiper-arrow.png) center no-repeat;
    background-size: contain;
}

.swiper-button-prev-featured {
    transform: rotate(180deg);
}

.swiper-button-next-featured::after,
.swiper-button-prev-featured::after {
    display: none;
}

.swiper-pagination-featured-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px;
    z-index: 2;
}

.swiper-pagination-featured {
    position: static;
}

/* Featured bullets as black dots */
.swiper-pagination-featured .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    /* black */
    opacity: 0.25;
}

.swiper-pagination-featured .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Specialty Section */
.homepage-specialty {
    height: 550px;
    display: flex;
}

.homepage-specialty-left {
    width: 60%;
}

.homepage-specialty-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-specialty-right {
    display: flex;
    align-items: center;
    background: #172621;
    width: 40%;
    padding: 40px 50px;
}

.homepage-specialty-right-content {
    width: 100%;
    max-width: 485px;
}

.homepage-specialty-right-content p {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 12.19px;
    line-height: 15.6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.homepage-specialty-right-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 10px 0 20px;
    font-style: italic;
}

.homepage-specialty-right-content h5 {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16.6px;
    line-height: 25.5px;
    letter-spacing: 0;
    color: #fff;
    padding: 0 0 25px;
}

.homepage-specialty-right-content a {
    width: 238px;
    height: 48px;
    background: #e5e5da;
}

/* Instant Section */
.homepage-instant {
    padding: 70px 0 70px;
}

.homepage-instant>h3 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 63px;
    line-height: 75.6px;
    letter-spacing: -0.5px;
    vertical-align: middle;
    text-align: center;
}

.homepage-instant>p {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 27.5px;
    letter-spacing: 0.5px;
    text-align: center;
    vertical-align: middle;
}

.homepage-instant-view {
    width: 119px;
    height: 48px;
    font-size: 14px;
    background: #172621;
    color: #fff;
    margin: auto;
}

.homepage-instant-view:hover {
    background: #000;
}

/* Instant Swiper */
.homepage-instant-swiper {
    padding: 30px 0 0 0;
}

.homepage-instant-content {
    display: flex;
}

.homepage-instant-content.even {
    flex-direction: row-reverse;
}

.homepage-instant-left {
    background: url(/assets/images/front-office/homepage/instant-background.png) bottom center no-repeat;
    background-size: cover;
    width: 40%;
    padding: 30px;
    display: flex;
    align-items: center;
}

.homepage-instant-left-content {
    margin: 0 0 0 auto;
    width: 100%;
    max-width: 615px;
}

.homepage-instant-content.even .homepage-instant-left-content {
    margin: 0 auto 0 0;
}

.homepage-instant-left-content img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 440px;
    object-fit: cover;
}

.homepage-instant-right {
    background: #1e3932;
    width: 60%;
    padding: 70px 30px 50px;
}

.homepage-instant-content.even .homepage-instant-right {
    background: #e5e5da;
}

.homepage-instant-right-container {
    margin: 0 auto 0 0;
    width: 100%;
    max-width: 825px;
}

.homepage-instant-content.even .homepage-instant-right-container {
    margin: 0 0 0 auto;
}

.homepage-instant-right-content {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.homepage-instant-right-content h4 {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 12.19px;
    line-height: 15.6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.homepage-instant-content.even h4 {
    color: #1e3932;
}

.homepage-instant-right-content h2 {
    width: 100%;
    max-width: 530px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 10px 0 25px;
    font-style: normal;
}

.homepage-instant-content.even h2 {
    color: #1e3932;
}

.homepage-instant-right-content p {
    width: 100%;
    max-width: 555px;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16.6px;
    line-height: 25.5px;
    letter-spacing: 0;
    color: #fff;
}

.homepage-instant-content.even p {
    color: #1e3932;
}

.homepage-instant-right-buttons {
    display: flex;
    gap: 15px;
    padding: 35px 0 25px;
    width: fit-content;
}

.homepage-instant-right-price-button {
    width: 133px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-color: #cb9558;
}

.homepage-instant-right-price {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #cb9558;
}

.homepage-instant-right-tax {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #cb9558;
    padding: 5px 0 0;
}

.homepage-instant-content.odd .homepage-instant-right-cart-button {
    flex-grow: 1;
    background: #e5e5da;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
}

.homepage-instant-content.even .homepage-instant-right-cart-button {
    flex-grow: 1;
    background: transparent;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    border: 1px solid #1e3932;
}

.homepage-instant-right-cart-button-more-container {
    text-align: center;
}

.homepage-instant-right-cart-button-more {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    color: #fff;
}

.homepage-instant-content.even .homepage-instant-right-cart-button-more {
    color: #1e3932;
}

.swiper-pagination-instant-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    padding: 0 30px;
}

.swiper-pagination-instant {
    position: static;
}

/* Instant bullets as black dots */
.swiper-pagination-instant .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    /* black */
    opacity: 0.25;
}

.swiper-pagination-instant .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next-instant::after,
.swiper-button-prev-instant::after {
    display: none;
}

.swiper-button-next-instant,
.swiper-button-prev-instant {
    width: 40px;
    height: 40px;
    background: url(/assets/images/front-office/homepage/instant-arrow-right.svg) center no-repeat;
    background-size: contain;
}

.swiper-button-prev-instant {
    transform: rotate(180deg);
}

/* Precision Section */
.homepage-precision {
    display: flex;
    margin: 0 0 70px;
}

.homepage-precision-left {
    height: 550px;
    display: flex;
    align-items: center;
    background: #f6f1eb;
    width: 40%;
    padding: 50px;
}

.homepage-precision-left-content {
    margin: 0 0 0 auto;
    width: 100%;
    max-width: 480px;
}

.homepage-precision-left-content p {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 12.19px;
    line-height: 15.6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #172621;
}

.homepage-precision-left-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    color: #172621;
    padding: 15px 0 20px;
    font-style: normal;
}

.homepage-precision-left-content h5 {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    letter-spacing: 0;
    color: #172621;
    width: 100%;
    max-width: 345px;
    padding: 0 0 30px;
}

.homepage-precision-left-content a {
    width: 100%;
    max-width: 308px;
    height: 48px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    background: #172621;
    color: #fff;
}

.homepage-precision-right {
    width: 60%;
    height: 550px;
}

.homepage-precision-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-precision-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Insights Section */
.homepage-insights {
    background: #f2f4f2;
    padding: 80px 0 50px 0;
}

.homepage-insights h2 {
    max-width: 1440px;
    margin: auto;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0 45px;
}

.homepage-insights-view {
    margin: auto;
    font-size: 14px;
    width: 119px;
    height: 48px;
    background: #172621;
    color: #fff;
}

.homepage-insights-view:hover {
    background: #000;
}

/* Insights Swipper */
.homepage-insights-swiper {
    padding: 35px 45px 75px;
}

.homepage-insights-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    width: 100%;
    padding: 20px;
}

.homepage-insights-card-top span {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    padding: 5px 20px;
    background: #ffffff;
    border-radius: 3px;
}

.homepage-insights-card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #00000033;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.homepage-insights-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.homepage-insights-card>img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.homepage-insights-card h4 {
    font-family: Helvetica Neue;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 20.1px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.homepage-insights-card h6 {
    font-family: Helvetica Neue;
    font-weight: 300;
    font-style: Light;
    font-size: 14px;
    line-height: 20.1px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    text-transform: capitalize;
    color: #ffffff;
}

.swiper-pagination-insights-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    padding: 0 30px;
}

.swiper-pagination-insights {
    position: static;
    background: #0000001a !important;
    height: 3px !important;
}

.swiper-pagination-insights .swiper-pagination-progressbar-fill {
    background: #172621 !important;
}

.swiper-button-next-insights::after,
.swiper-button-prev-insights::after {
    display: none;
}

.swiper-button-next-insights,
.swiper-button-prev-insights {
    width: 40px;
    height: 40px;
    background: url(/assets/images/front-office/homepage/instant-arrow-right.svg) center no-repeat;
    background-size: contain;
}

.swiper-button-prev-insights {
    transform: rotate(180deg);
}

.homepage-second-section {
    max-width: 1583px;
    margin: auto;
    padding: 94px 25px;
}

.homepage-second-section-one-left-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin: 0 0 20px 0;
}

.homepage-second-section-one-left-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.homepage-second-section-one {
    display: flex;
    display: flex;
    align-content: center;
    align-items: flex-end;
    justify-content: space-between;
}

.homepage-second-button-one-right {
    background: #172621;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 50px;
    border-radius: 3px;
}

.homepage-second-section-img,
.homepage-second-section-video {
    width: 100%;
    height: 250px;
    position: relative;
}

.homepage-second-section-img {
    margin: 40px 0 20px 0;
}

.homepage-second-section-img-one,
.homepage-second-section-video-one {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.homepage-second-section-img-two {
    position: absolute;
    top: 5%;
    right: 0;
    left: 0;
    margin: auto;
    backdrop-filter: blur(8px);
}

.homepage-second-section-video-two {
    position: absolute;
    bottom: 5%;
    right: 0;
    left: 0;
    margin: auto;
    backdrop-filter: blur(8px);
}

.homepage-sections-container {
    background: #f6f1eb;
}

.homepage-featured-title-one {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 55.13px;
    line-height: 70px;
    letter-spacing: -0.12px;
    vertical-align: middle;
    color: #332624bf;
}

.homepage-featured-title-two {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 55.13px;
    line-height: 70px;
    letter-spacing: -0.12px;
    vertical-align: middle;
    color: #000000;
}

.homepage-featured-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.2px;
    vertical-align: middle;
    margin: 20px 0;
    border-color: #000000bf;
}

.homepage-featured-left {
    width: 37%;
    padding: 0 50px 0 0;
}

.homepage-feature-title-button {
    border: 1px solid #00000080;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    background: none;
    padding: 10px 50px;
}

.section-farms {
    background-image: url("/assets/images/front-office/homepage/section-four.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.section-farms-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1583px;
    margin: auto;
    padding: 94px 25px;
    gap: 40px;
}

.section-farms-left {
    flex: 0 0 50%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.section-farms-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.section-farms-right {
    /* flex: 0 0 50%; */
    background: #fff7f014;
    backdrop-filter: blur(8px);
    padding: 40px;
    height: 600px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-farms-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 63px;
    line-height: 75.6px;
    letter-spacing: -0.5px;
    color: #fff7f0;
    margin-bottom: 25px;
}

.section-farms-text {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 27.5px;
    letter-spacing: 0.5px;
    color: #fff7f0;
    margin-bottom: 35px;
}

.section-farms-btn {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    background: #e5e5da;
    border: none;
    border-radius: 3px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.section-farms-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.homepage-fifth-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.homepage-fifth-section-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.homepage-fifth-section-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.homepage-fifth-section-title {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 31.92px;
    letter-spacing: 1px;
    text-align: center;
    font-style: normal;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.homepage-fifth-section-subtitle {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 55px;
    line-height: 61px;
    letter-spacing: -0.2px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

.homepage-fifth-section-description {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

.homepage-fifth-section-link {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background: #ffffff1a;
    color: #ffffff;
    border: 1px solid #ffffff99;
    padding: 10px 50px;
}

.homepage-fifth-section-reopening {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    line-height: 44.28px;
    letter-spacing: 0.25px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    margin: 20px 0 0 0;
}

.homepage-fifth-section-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff7f014;
    box-shadow: 0px 10px 10px -3.75px #0000000f;

    box-shadow: 0px 2.29px 2.29px -2.5px #00000029;

    box-shadow: 0px 0.6px 0.6px -1.25px #0000002e;
    border-radius: 8px;
    border-top: #ffff 1px solid;
    padding: 20px 40px;
    gap: 20px;
}

.small-cards-title {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 52.6px;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

.small-cards-subtitle {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.homepage-insights-header {
    max-width: 1583px;
    margin: auto;
    padding: 94px 25px 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.homepage-insights-header h1 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 55.13px;
    line-height: 70px;
    letter-spacing: -0.12px;
    vertical-align: middle;
    color: #000000;
}

.homepage-insights-header-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.homepage-insights-header-content p {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    vertical-align: middle;
    color: #000000bf;
}

.homepage-insights-header-content a {
    border: 1px solid #00000080;
    border-radius: 3px;

    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13.13px;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    padding: 10px 50px;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
    .section-farms-container {
        flex-direction: column;
    }

    .section-farms-left,
    .section-farms-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .section-farms-left {
        height: 300px;
    }

    .section-farms-title {
        font-size: 42px;
        line-height: 56px;
    }

    .homepage-banner-left h2 {
        font-size: 59px;
        line-height: 63px;
    }

    .homepage-banner-left {
        padding: 30px;
    }

    /* Featured Section */
    .homepage-featured h2 {
        font-size: 29px;
        padding: 0 30px;
    }

    .homepage-featured-swiper {
        padding: 20px 30px 60px;
    }

    /* Specialty Section */
    .homepage-specialty-left {
        width: 55%;
    }

    .homepage-specialty-right {
        padding: 40px 30px;
        width: 45%;
    }

    .homepage-specialty-right-content h2 {
        font-size: 52px;
        line-height: 66px;
    }

    /* Instant Section */
    .homepage-instant-left {
        width: 45%;
    }

    .homepage-instant-right {
        width: 55%;
    }

    .homepage-instant>h3 {
        font-size: 29px;
        padding: 0 30px;
    }

    .homepage-instant-right-content h2 {
        font-size: 52px;
        line-height: 66px;
    }

    /* Precision Section */
    .homepage-precision-left {
        width: 45%;
        padding: 30px;
    }

    .homepage-precision-left-content h2 {
        font-size: 52px;
        line-height: 66px;
    }

    .homepage-precision-right {
        width: 55%;
    }

    /* Insights Section */
    .homepage-insights h2 {
        font-size: 34px;
        padding: 0 30px;
    }

    .homepage-insights-swiper {
        padding: 35px 30px 75px;
    }
}

@media (max-width: 768px) {

    /* Banner Section */
    .homepage-banner {
        height: auto;
    }

    .homepage-banner {
        flex-direction: column-reverse;
    }

    .homepage-banner-right {
        height: 370px;
        width: 100%;
    }

    .homepage-banner-left {
        width: 100%;
        margin: auto;
        padding: 40px 20px 50px;
    }

    .homepage-banner-left-container {
        max-width: 600px;
        margin: auto;
    }

    .homepage-banner-left-content {
        margin: auto;
        max-width: 100%;
    }

    .homepage-banner-left h2 {
        text-align: center;
        font-size: 44px;
        line-height: 52px;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .homepage-banner-left p {
        font-size: 16px;
        line-height: 25.5px;
        letter-spacing: 0;
        text-align: center;
        padding: 20px 0 30px;
    }

    .homepage-banner-left-buttons {
        justify-content: center;
    }

    /* Featured Section */
    .homepage-featured {
        padding: 35px 0 40px;
    }

    .homepage-featured h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0.5px;
        text-align: center;
        padding: 0 20px;
    }

    .homepage-featured-view {
        font-size: 12px;
    }

    .homepage-featured-swiper {
        padding: 30px 20px 60px;
    }

    .swiper-pagination-featured-container {
        bottom: 35px;
        padding: 0 20px;
    }

    .homepage-featured-card-top {
        height: 270px;
    }

    .homepage-featured-card-bottom h5 {
        font-size: 10px;
    }

    .homepage-featured-card-bottom h3 {
        font-size: 17px;
        line-height: 100%;
        letter-spacing: 0;
    }

    .homepage-featured-card-bottom-price {
        font-size: 15px;
        line-height: 100%;
        letter-spacing: 0;
    }

    .homepage-featured-card-bottom-currency {
        font-size: 14px;
        line-height: 25.5px;
        letter-spacing: 0;
    }

    .homepage-featured-card-bottom-buttons {
        gap: 8px;
    }

    .homepage-featured-card-bottom-bag {
        width: 47px;
        height: 48px;
    }

    .homepage-featured-card-bottom-view {
        height: 48px;
    }

    .homepage-featured-card-bottom {
        padding: 12px 20px 20px;
    }

    /* Specialty Section */
    .homepage-specialty {
        height: auto;
        flex-direction: column;
    }

    .homepage-specialty-left {
        width: 100%;
        height: 390px;
    }

    .homepage-specialty-right {
        width: 100%;
        padding: 55px 20px 65px;
    }

    .homepage-specialty-right-content {
        max-width: 600px;
        margin: auto;
    }

    .homepage-specialty-right-content p {
        text-align: center;
    }

    .homepage-specialty-right-content h2 {
        font-size: 34px;
        line-height: 100%;
        letter-spacing: 0.5px;
        text-align: center;
        padding: 20px 0;
    }

    .homepage-specialty-right-content h5 {
        text-align: center;
        padding: 0 0 20px;
    }

    .homepage-specialty-right-content a {
        width: 212px;
        height: 42px;
        font-size: 12.19px;
        line-height: 14.95px;
        letter-spacing: 2.5px;
        margin: auto;
    }

    /* Instant Section */
    .homepage-instant-content {
        flex-direction: column !important;
    }

    .homepage-instant-left {
        width: 100%;
    }

    .homepage-instant-left-content {
        max-width: 600px;
        margin: auto !important;
    }

    .homepage-instant-left-content img {
        max-width: 400px;
    }

    .homepage-instant-right {
        width: 100%;
        padding: 30px 20px;
    }

    .homepage-instant-right-content h2 {
        font-size: 34px;
        line-height: 100%;
        letter-spacing: 0.5px;
        padding: 10px 0 15px;
    }

    .homepage-instant-right-price-button {
        width: 110px;
    }

    .homepage-instant-right-tax {
        font-size: 11px;
    }

    .homepage-instant-right-buttons {
        gap: 10px;
        padding: 30px 0 20px;
    }

    .homepage-instant-right-cart-button-more {
        font-size: 14px;
        text-decoration: none;
    }

    .homepage-instant>h3 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0.5px;
    }

    .homepage-instant {
        padding: 30px 0 20px;
    }

    .homepage-instant-view {
        width: 115px;
        font-size: 12px;
    }

    .homepage-instant-swiper {
        padding: 20px 0 60px;
    }

    .swiper-pagination-instant-container {
        padding: 0 20px;
        bottom: 35px;
    }

    /* Precision Section */
    .homepage-precision {
        flex-direction: column-reverse;
        margin: 0;
    }

    .homepage-precision-right {
        width: 100%;
        height: 390px;
    }

    .homepage-precision-left {
        height: auto;
        width: 100%;
        padding: 45px 20px;
    }

    .homepage-precision-left-content {
        max-width: 600px;
        margin: auto;
    }

    .homepage-precision-left-content h2 {
        font-size: 34px;
        line-height: 100%;
        letter-spacing: 0.5px;
        padding: 10px 0;
    }

    .homepage-precision-left-content h5 {
        font-size: 16px;
        line-height: 25.5px;
        letter-spacing: 0;
        padding: 0 0 10px;
        max-width: 100%;
    }

    .homepage-precision-left-content a {
        width: 183px;
        font-size: 13px;
    }

    /* Insights Section */
    .homepage-insights {
        margin: 0;
        padding: 35px 0 30px;
    }

    .homepage-insights h2 {
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0;
        padding: 0 20px;
        text-align: center;
    }

    .homepage-insights-view {
        font-size: 13px;
        width: 115px;
    }

    .homepage-insights-card>img {
        height: 430px;
        padding: 10px 0;
    }

    .homepage-insights-card h4 {
        padding: 0 0 10px;
    }

    .homepage-insights-swiper {
        padding: 20px 20px 85px;
    }

    .swiper-pagination-insights-container {
        padding: 0 20px;
        bottom: 35px;
    }
}





/* v4 new home page styles  */






/* Unique home banner styles (tel_ prefix) */
.tel_home_banner_section {
    width: 100%;
    height: 100vh;
    background-image: url("/assets/images/front-office/homepage/home-banner-4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: block;
    margin: -57px 0 0 0;
    padding: 40px;
}

/* inner container centers content but allows absolute placement */
.tel_home_banner_inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Left stacked title container */
.tel_banner_title_left {
    position: absolute;
    top: 18%;
    left: 0;
    /* transform: translateY(-0%); */
    text-align: left;
    color: #ffffff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Shared title line styles */
.tel_title_line {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 0.95;
}

/* PRECISION */
.tel_title_precision {
    font-size: 90px;
    line-height: 84px;
    letter-spacing: -1.12px;
}

/* IN EVERY — slightly translated to the right compared to PRECISION */
.tel_title_inevery {
    font-size: 90px;
    line-height: 84px;
    letter-spacing: -1.12px;
    margin-top: 6px;
    /* nudge to right to match screenshot */
    transform: translateX(345px);
}

.tel_title_inevery_last {
    font-size: 90px;
    line-height: 84px;
    letter-spacing: -1.12px;
    margin-top: 6px;
    /* nudge to right to match screenshot */
    transform: translateX(45rem);
}


/* Bottom-right subtitle box */
.tel_home_banner_bottom {
    position: absolute;
    right: 0;
    bottom: 6%;
    text-align: right;
    max-width: 420px;
    overflow: hidden;
}

/* Small subtitle */
.tel_banner_subtitle {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin: 0 0 12px 14px;
    text-align: start;
}

/* Underline below the subtitle (2px white border look) */
.tel_banner_underline {
    width: 388px;
    max-width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    margin-left: auto;
}

/* Responsive tweaks */
@media (max-width: 1200px) {

    .tel_title_precision,
    .tel_title_inevery,
    .tel_title_inevery_last {
        font-size: 68px;
        line-height: 64px;
    }

    .tel_title_inevery {
        transform: translateX(350px);
    }

    .tel_title_inevery_last {
        transform: translateX(600px);
    }
}










/* ==========================================
   SECTION 2 — Crafted for connoisseur
   ========================================== */

.tel_section_two {
    width: 100%;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;

}


.tel_section_two-box {
    max-width: 1200px;
    width: 100%;
}

.tel_section_two_container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}



.tel_s2_title_top {
    font-family: "InterFace Thin", sans-serif;
    font-weight: 400;
    font-size: 59.33px;
    line-height: 78px;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #7D7F6A;
    margin: 0;
}

.tel_s2_title_bottom {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 59.33px;
    line-height: 78px;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

/* RIGHT PARAGRAPH */
.tel_section_two_right {
    text-align: right;
    display: flex;
    align-items: center;
}

.tel_s2_paragraph {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #3F3F3F;
    margin: 0;
    width: 100%;
    max-width: 410px;
}

/* BOTTOM NAV */
.tel_section_two_nav {
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.tel_s2_nav_item {
    text-align: center;
    padding: 12px 27px;
    font-family: "InterFace", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 21%;
    color: #000;
    transition: border 0.3s ease;
    cursor: pointer;
}

/* Remove border for last item */
.tel_s2_nav_item:last-child {
    border-right: none;
}

.tel_s2_nav_select {
    display: none;
}

/* Hover Effect */
.tel_s2_nav_item:hover {
    border-bottom: 1px solid #9D9D9D;
}

.right-line {
    border-right: 1px solid #D1D1D1;
}

@media (max-width: 1024px) {
    .tel_section_two_nav {
        max-width: 100%;
        padding: 0 20px;
        margin-top: 40px;
        justify-content: center;
    }

    .tel_s2_nav_item,
    .right-line {
        display: none;
    }

    .tel_s2_nav_select {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 0.67px solid #000000;
        background: transparent;
        font-family: 'InterFace', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 21%;
        text-align: center;
        text-align-last: center;
        text-transform: uppercase;
        color: #000000;
        padding: 15px 0;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        cursor: pointer;
    }

    .tel_s2_nav_select:focus {
        outline: none;
    }
}










/* ==========================================
   PRODUCT SWIPER SECTION
   ========================================== */
.tel_products_section {
    width: 100%;
    text-align: center;
    padding: 0 0 20px 0;
}

/* SWIPER STRUCTURE */
.tel_products_swiper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 100px;
    position: relative !important;
}

.tel_products_swiper .swiper-pagination {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    width: auto !important;
}

.tel_product_card {
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}

/* Active center card */
.tel_product_card.swiper-slide-active {
    transform: scale(1.12);
    opacity: 1;
}

/* Product Image */
.tel_product_img_wrapper img {
    width: 300px;
    height: auto;
}

/* PANAMA Tag */
.tel_product_origin {
    margin-top: 15px;
    padding: 10px;
    font-family: "InterFace", sans-serif;
    font-size: 17px;
    line-height: 14.19px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: #000000B2;
    border: 0.88px solid #0000004D;
    display: inline-block;
}

/* Product Name */
.tel_product_title {
    margin-top: 12px;
    font-family: "InterFace", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

/* Price Row */
.tel_product_price_row {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: "InterFace", sans-serif;
    font-size: 18px;
    letter-spacing: 1.76px;
    color: #000;
}

.tel_product_price_row img {
    width: 20px;
}


/* Action Buttons */
.tel_product_actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tel_cart_btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 35px;
    height: 38px;
}

.tel_cart_btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tel_buy_btn {
    background: #112721;
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: "InterFace", sans-serif;
    display: flex;
    align-items: center;
}

/* ARROWS */
.tel_swiper_prev,
.tel_swiper_next {
    background-image: url('/assets/images/front-office/homepage/cir-arrow.svg');
    background-size: cover;
    width: 40px;
    height: 40px;
}

.tel_swiper_prev {
    transform: rotate(180deg);
}

/* PAGINATION */
.tel_swiper_pagination {
    padding: 5px 10px;
    background: #efefef;
    border-radius: 100px;
    width: auto !important;
    max-width: 1200px;
    display: inline-flex;
    justify-content: center;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 20px !important;
    right: auto !important;
    text-align: center;
}

.tel_swiper_pagination .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
}

.tel_swiper_pagination .swiper-pagination-bullet-active,
.tel_swiper_pagination .swiper-pagination-bullet-active-main {
    background: #000 !important;
    opacity: 1 !important;
}

/* VIEW ALL BUTTON */
.tel_view_all_btn {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 60px;
    font-family: "InterFace", sans-serif;
    text-transform: uppercase;
    font-size: 14.14px;
    letter-spacing: 17%;
    border: 1px solid #1A2621;
}











/* v4 new home page styles  */

/* Signature Collection Section */
.tel_signature_collection_section {
    width: 100%;
    padding: 100px 40px;
    overflow: hidden;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.tel_signature_swiper,
.tel_signature_swiper_2 {
    width: 100%;
    position: relative;
}

.tel_signature_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 50px;
}

.tel_signature_left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tel_signature_header_row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tel_signature_line {
    width: 100px;
    /* Adjust length as needed to match design "line then beside it" */
    height: 1px;
    background-color: #000000;
}

.tel_signature_subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 29px;
    line-height: 100%;
    letter-spacing: 0.14em;
    /* 14% */
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.tel_signature_title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 56px;
    /* 100% of 56px roughly? User said line-height: 56px */
    letter-spacing: -0.01em;
    /* -1% */
    vertical-align: middle;
    text-transform: uppercase;
    color: #010101;
    margin: 0 0 50px 0;
}

.tel_signature_desc {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #5C6865;
    margin: 0 0 80px 0;
    max-width: 500px;
}

.tel_signature_btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #000000;
    background: transparent;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14.14px;
    line-height: 25.5px;
    letter-spacing: 0.17em;
    /* 17% */
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tel_signature_btn:hover {
    background: #000000;
    color: #ffffff;
}

.tel_signature_right {
    width: 40%;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel_signature_right img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
    margin: -100px 0 0 0;
}

/* Custom Navigation Arrows */
.tel_signature_nav_container {
    position: absolute;
    right: 83px;
    bottom: 0;
    /* top: 0; */
    margin: auto;
    height: 56px;
    width: 273px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;

}

.tel_sig_prev,
.tel_sig_next,
.tel_sig_prev_2,
.tel_sig_next_2 {
    position: absolute;
    top: 50%;
    width: 50px;
    /* Adjust based on svg size */
    height: 50px;
    margin-top: -25px;
    z-index: 10;
    cursor: pointer;
    background-image: url('/assets/images/front-office/homepage/cir-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: auto;
}

.tel_sig_prev::after,
.tel_sig_next::after,
.tel_sig_prev_2::after,
.tel_sig_next_2::after {
    display: none;
    /* Hide default swiper icons */
}

.tel_sig_next,
.tel_sig_next_2 {
    right: 0;
}

.tel_sig_prev,
.tel_sig_prev_2 {
    right: 70px;
    /* Space between arrows */
    transform: rotate(180deg);
    /* Assuming arrow points right by default */
}

/* Responsive */
@media (max-width: 1024px) {
    .tel_signature_collection_section {
        padding: 100px 0;
    }

    .tel_signature_container {
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        text-align: start;
    }

    .tel_signature_left,
    .tel_signature_right {
        width: 100%;
    }

    .tel_signature_header_row {
        justify-content: center;
    }




}

/* Curated Collections Video Section */
.tel_curated_collections_section {
    position: relative;
    width: 100%;

    height: 333px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tel_curated_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tel_curated_overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    /* "inside it div max witdth 1200px" */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the title */
}

.tel_curated_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-items: center;
    /* Default center, will override for p */
}

.tel_curated_title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38.33px;
    line-height: 78px;
    letter-spacing: -0.01em;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-align: right;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
    /* semi-transparent black */
    z-index: 2;
}


.tel_curated_desc {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    text-align: right;
    /* "text alige right" */
    vertical-align: middle;
    color: #FFFFFF;
    margin: 0 0 0 auto;
    width: 100%;
    /* To allow text-align right to work across the container */
    max-width: 520px;
}





/* ===============================
   HOME FIFTH SECTION
================================ */

.tel-home-fifth-section {
    background: #E5E5DA;
    width: 100%;
    padding: 120px 0;
}

.tel-home-fifth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    padding: 0 40px;
}

/* -------------------------------
   LEFT SIDE
-------------------------------- */

.tel-home-fifth-left {
    flex: 1;
}

.tel-home-fifth-image {
    width: 100%;
    height: 300px;
    background-image: url("/assets/images/front-office/homepage/fifth-section-bg.jpg");
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}

.tel-home-fifth-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.tel-home-fifth-title {
    font-family: "InterFace Thin";
    font-weight: 400;
    font-size: 60px;
    line-height: 57px;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 30px;
}

.tel-home-fifth-description {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #5C6865;
    max-width: 520px;
}

/* -------------------------------
   RIGHT SIDE
-------------------------------- */

.tel-home-fifth-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.tel-home-fifth-stat {
    max-width: 420px;
}

.tel-home-fifth-number {
    display: block;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 55.83px;
    line-height: 83.74px;
    color: #1F1F1F;
}

.tel-home-fifth-stat-title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #332624;
    margin-bottom: 10px;
}

.tel-home-fifth-stat-desc {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #33262499;
}


/* ===============================
   OUR LAB SECTION
================================ */

.tel-our-lab-section {
    background: #F6F6F3;
    padding: 120px 0;
}

.tel-our-lab-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* -------------------------------
   HEADER
-------------------------------- */

.tel-our-lab-title {
    font-family: "InterFace Thin";
    font-weight: 400;
    font-size: 59.33px;
    line-height: 56px;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.tel-our-lab-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: #3F3F3F;
    max-width: 680px;
    margin: 0 auto 30px;
}

.tel-our-lab-btn {
    display: inline-block;
    border: 1px solid #1A2621;
    padding: 10px 30px;
    font-family: 'InterFace', sans-serif;
    font-size: 14.14px;
    line-height: 25.5px;
    letter-spacing: 17%;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
    margin-bottom: 60px;
}

.tel-our-lab-btn:hover {
    background: #1A2621;
    color: #fff;
}

/* -------------------------------
   SWIPER CARD
-------------------------------- */

.tel-our-lab-card {
    background: transparent;
    text-align: left;
    position: relative;
}

.tel-our-lab-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* BADGE */
.tel-our-lab-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'InterFace', sans-serif;
    font-size: 12px;
    letter-spacing: 2.72px;
    text-transform: uppercase;
    background: #FFFFFF;
    color: #000;
    padding: 4px 10px;
    border: 1.09px solid #0000001A;
    box-shadow: 0px 2px 4px #00000040;
}

/* CONTENT */
.tel-our-lab-date {
    font-family: "InterFace Thin";
    font-size: 14px;
    letter-spacing: 0.34px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.tel-our-lab-card-title {
    font-family: 'InterFace', sans-serif;
    font-size: 14px;
    line-height: 21.8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tel-our-lab-card-desc {
    font-family: "InterFace Thin";
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.34px;
}

/* -------------------------------
   SWIPER NAVIGATION
-------------------------------- */

.tel-our-lab-swiper-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-top: 35px;
}

.tel-our-lab-swiper-nav .tel-our-lab-prev,
.tel-our-lab-swiper-nav .tel-our-lab-next {
    position: static;
    width: 9.5px;
    height: 18px;
    margin: 0;
}

.tel-our-lab-swiper-nav .tel-our-lab-prev {
    background: url("/assets/images/front-office-v4/footer/arrow-left.svg") center/cover no-repeat;
}

.tel-our-lab-swiper-nav .tel-our-lab-next {
    background: url("/assets/images/front-office-v4/footer/arrow-right.svg") center/cover no-repeat;
}

.tel-our-lab-swiper-nav .tel-our-lab-prev::after,
.tel-our-lab-swiper-nav .tel-our-lab-next::after {
    display: none;
}

.tel-our-lab-pagination {
    position: static;
    background: #EFEFEF;
    padding: 5px 10px;
    border-radius: 100px;
    transform: translateX(0) !important;
}

.tel-our-lab-pagination .swiper-pagination-bullet-active-main {
    background: #000;
}









.tel_view_all_btn {
   color: #1A2621;
}




@media (max-width: 900px) {

    .tel_farm_content_container {
        padding: 0 25px;
    }

    .tel_our_story_top_row {
        gap: 40px;
    }

    .tel_our_story_section {
        padding: 50px 25px;
    }

    .tel_home_banner_section {
        padding: 0;
    }

    .tel_title_precision,
    .tel_title_inevery,
    .tel_title_inevery_last {
        font-size: 34px;
        line-height: 30px;
    }

    .tel_banner_title_left {
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: fit-content;
        height: fit-content;
    }

    .tel_title_precision {
        transform: translateX(-85px);
    }


    .tel_title_inevery {
        transform: translateX(20px);
    }

    .tel_title_inevery_last {
        transform: translateX(150px);
    }

    .tel_home_banner_bottom {
        right: 5%;
        bottom: 4%;
        max-width: 300px;
    }


    .tel_banner_subtitle,
    .tel_product_title {
        font-size: 16px;
        line-height: 21px;

    }






    .tel_section_two_container {
        flex-direction: column;
    }


    .tel_section_two {
        padding: 20px;
    }

    .tel_s2_title_top,
    .tel_s2_title_bottom {
        font-size: 25.33px;
        line-height: 35px;
    }


    .tel_section_two_right ,
    .tel_curated_title,
    .tel_curated_desc {
        text-align: left;
    }

    .tel_s2_paragraph {
        max-width: 100%;
        font-size: 13px;
        padding: 10px 0 0 0;
        line-height: 23px;
    }

    .tel_section_two_nav {
        margin: 32px auto 0 auto;
    }





.tel_curated_collections_section{
    height: 250px;
}



        .tel_curated_title {
        font-size: 25px;
        line-height: 1.2;
    }

    .tel_curated_desc  {
        font-size: 16px;
        max-width: 100%;
        margin: 0;
    }

   .tel_signature_subtitle  {
   font-size: 12px;
   }


.tel_signature_header_row {

    margin-bottom: 23px;

}


.tel_signature_title {
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 20px 0  ;
}



.tel_signature_collection_section {
    padding: 43px 0;

}



.tel_signature_desc {
   margin: 0 0 20px 0  ;
    font-size: 16px;
    line-height: 24px;
}


.tel_signature_btn{
        font-size: 11.14px;
    line-height: 10.5px;
}


.tel_signature_right img{
    margin: 0;
}


.tel_signature_nav_container {
    right: 17px;

}


.tel_producers_grid_item {
    height: 180px;
}



.tel_os_translate_down ,
.tel_os_translate_up {
    height: 400px;
}


.tel_our_story_circle span{
    font-size: 20px;
}


.tel_our_story_circle {
    width: 170px;
    height: 170px;
}





.tel-home-fifth-container{
        flex-direction: column;
        gap: 40px;
        padding: 0 25px;
}


.tel-home-fifth-section {
    padding: 50px 0;

}


.tel-home-fifth-image {

height: 200px;

}



.tel-home-fifth-title {
    font-size: 29px;
    line-height: 29px;
}


.tel-home-fifth-description {
    font-size: 14px;
    line-height: 22px;
}



.tel-home-fifth-number {
    font-size: 40px;
        line-height: 59.74px;
}

.tel-home-fifth-stat-title {

font-size: 16px;
}



.tel-home-fifth-stat-desc {
    font-size: 15px;
    line-height: 20px;
}


.tel-our-lab-section {
padding: 40px 0;

}



}

@media (max-width: 420px) {
    .tel_title_precision {
        transform: translateX(-50px);
    }

    .tel_title_inevery_last {
        transform: translateX(130px);
    }

    .tel_home_banner_bottom {
        right: 5%;
        bottom: 4%;
        max-width: 280px;
    }
}