@import url('reset.css');
@import url('boot.css');

/*    TOP NAV    */
.top_nav {
    width: 100%;
    height: 50px;
    background-color: var(--background-color);
}

.top_nav-social,
.top_nav-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top_nav-social a {
    padding: 5px;
    color: var(--text-color);
    background-color: var(--neutral-color);
    border-radius: 5px;
}

.top_nav-social a:hover {
    color: var(--background-color);
    background-color: var(--primary-color);
}

.top_nav-news {
    color: var(--text-color);
    font-size: .9em;
    font-weight: var(--fw-light);
}

.top_nav-news strong {
    font-weight: var(--fw-medium);
}

.top_nav-actions select {
    color: var(--text-color);
    border: none;
    outline: none;
}

.top_nav-actions select:hover {
    color: var(--primary-color);
}

/*    HEADER NAV    */
.header_nav {
    width: 100%;
    height: 100px;
}

.header_nav>.container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header_nav-logo {
    width: 25%;
    display: flex;
    align-items: center;
}

.header_nav-logo img {
    width: 100%;
}

.header_nav-logo h1 {
    font-size: 1.8em;
    font-weight: var(--fw-bold);
    color: var(--primary-color);
    white-space: nowrap;
}

.header_nav-logo h1 span {
    color: var(--blue-color);
}

.header_nav-search {
    width: 50%;
    position: relative;
}

.header_nav-search input {
    height: 40px;
    padding: 10px;
    border: 1px solid #F7BE39;
    border-radius: 10px;
    outline: none;
    color: var(--text-color);
}

.header_nav-search button {
    width: 50px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    padding: 5px;
    color: var(--background-color);
    background-color: #F7BE39;
    border-radius: 0 10px 10px 0;
}

.header_nav-search button:hover {
    opacity: .8;
}

.header_nav-actions {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2em;
    margin-right: 10px;
}

.header_nav-actions .ri-heart-line,
.header_nav-actions .ri-shopping-bag-line {
    position: relative;
}

.header_nav-actions .ri-heart-line span,
.header_nav-actions .ri-shopping-bag-line span {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .4em;
    font-family: 'Poppins', sans-serif;
    color: var(--background-color);
    background-color: #F7BE39;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -10px;
}

.header_nav-actions a {
    font-size: 1.2em;
    color: #2A7C30;
}

.header_nav-actions a:hover {
    color: var(--text-color);
}

/*    MENU NAV    */
.menu_nav {
    width: 100%;
    height: 40px;
    position: relative;
    background-color: #2A7C30;
}

.menu_nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    height: 100%;
}

.menu_nav-item {
    height: 100%;
}

.menu_nav-item a {
    height: calc(100% - 5px);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--background-color);
    padding: 0 10px;
    margin-top: 5px;
    border-radius: 5px 5px 0 0;
}

.menu_nav-item>a:hover {
    background-color: #236628;
}

.menu_nav-item>a:active {
    background-color: #236628;
}

.active-menu {
    background-color: #236628;
}

.menu_nav-item:hover>.dropdown_panel {
    display: flex;
}

.dropdown_panel {
    width: 90%;
    height: 360px;
    display: none;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: .2s ease;
    z-index: 1;
}

.dropdown_panel-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dropdown_panel-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.dropdown_panel-title {
    width: 100%;
    padding-bottom: 10px;
    color: var(--text-color);
}

.dropdown_panel-item a {
    color: var(--text-color);
}

.dropdown_panel-item a:hover {
    color: var(--primary-color);
}

.dropdown_panel-banner img {
    width: 100%;
    border-radius: 10px;
}

/*    SLIDER SECTION    */
.slider_section {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider_section-content {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider_section-item {
    position: relative;
    min-width: 100%;
    box-sizing: border-box;
}

.slider_section-item img {
    width: 100%;
    display: block;
}

.slider_section-text {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    padding: 10px;
    line-height: 1.2;
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
}

.slider_section-subtitle {
    font-size: 1em;
    font-weight: var(--fw-semibold);
    text-transform: capitalize;
    color: var(--background-color);
}

.slider_section-title {
    font-size: 3.4em;
    font-weight: var(--fw-extrabold);
    text-transform: uppercase;
    color: var(--background-color);
}

.slider_section-price {
    font-size: 1.2em;
    font-weight: var(--fw-semibold);
    color: var(--background-color);
}

.slider_section-price span {
    font-size: 1.8em;
}

.slider_section-text h2,
.slider_section-price span {
    color: var(--background-color);
}

/*    OFFERS SECTION    */
.offers_section {
    width: 100%;
    display: none;
    margin: 15px 0;
    margin-top: 50px;
}

.offers_section>.container {
    display: flex;
    gap: 15px;
}

.offers_section-list img {
    width: 100px;
    height: 100px;
}

.offers_section-item {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.offers_section-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.offers_section-title {
    font-size: 1em;
    font-weight: var(--fw-medium);
    color: var(--primary-color);
}

.offers_section-description {
    font-size: .8em;
    font-weight: var(--fw-light);
    color: var(--text-color);
}

.offers_section-currency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1em;
    font-weight: var(--fw-normal);
}

.previus_price {
    text-decoration: line-through;
    color: var(--text-color);
}

.previus_price sup,
.current_price sup {
    font-size: .55em;
}

.current_price {
    color: var(--primary-color);
    font-weight: var(--fw-medium);
}

/*    MAIN CONTENT */
.main_content {
    width: 100%;
    margin: 50px 0;
}

.main_content>.container {
    display: flex;
    gap: 15px;
}

/*    MAIN CONTENT SIDEBAR    */
.main_content-sidebar {
    width: 25%;
    min-width: 250px;
    /* overflow: auto hidden;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain; */
}

/*    ACCORDION SIDEBAR    */
.main_content-accordion,
.main_content-bestsellers,
.main_content-testimonials {
    width: 100%;
    margin-bottom: 30px;
    background-color: var(--neutral-color);
}

.main_content-accordion {
    background-color: var(--neutral-color);
}

.accordion-title,
.bestsellers_title,
.testimonials_title,
.showroom_content-title,
.content_newproduct-title {
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
    position: relative;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    color: #2A7C30;
}

.accordion-header.clicked {
    color: #2A7C30;
}

.accordion-header i {
    transition: opacity .3s ease, transform 0.5s ease;
}

.accordion-header i.hidden {
    opacity: 0;
    transform: scale(0.5);
}

.accordion-header p i {
    font-size: .9em;
}

.accordion-header>i {
    font-size: .7em;
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.accordion-content ul li {
    margin-bottom: 5px;
}

.accordion-content ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
}

.accordion-content ul li a:hover {
    color: var(--primary-color);
}

/*    BEST-SELLERS SIDEBAR    */
.main_content-bestsellers,
.main_content-testimonials {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bestsellers_title,
.testimonials_title {
    margin-bottom: 15px;
}

.bestsellers_item {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    overflow: hidden;
    padding: 10px;
}

.bestsellers_item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bestsellers_item-img {
    width: 80px;
}

.bestsellers_item-title {
    text-transform: uppercase;
    font-size: .8em;
    font-weight: var(--fw-medium);
    color: var(--primary-color);
}

.bestsellers_item-rating {
    font-size: .9em;
    color: var(--yellow-color);
}

.bestsellers_item-currency {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bestsellers_item-previus {
    font-size: .9em;
    text-decoration: line-through;
    color: var(--text-color);
}

.bestsellers_item-current {
    font-size: .9em;
    font-weight: var(--fw-semibold);
    color: var(--text-color);
}

/*    TESTIMONIALS SIDEBAR    */
.testimonials_content-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials_content-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials_item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 15px 40px 15px;
    background-color: var(--background-color);
}

.testimonials_item-img {
    width: 100px;
    border-radius: 50%;
}

.testimonials_item-name {
    font-size: 1.2em;
    font-weight: var(fw5);
    color: var(--text-color);
}

.testimonials_item-profession {
    font-size: 1em;
    font-weight: var(fw5);
    color: var(--text-color);
}

.testimonials_item-quotes {
    width: 30px;
}

.testimonials_item-msg {
    width: 80%;
    font-size: 1.2em;
    font-weight: var(fw3);
    font-style: italic;
    text-align: center;
    color: var(--text-color);
}

/*    SHOWROOM CONTENT    */
.main_content-showroom {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/*    SHOWROOM OFFER    */
.content_offer-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 30px;
    background-color: var(--background-color);
}

.content_offer-container > a {
    max-width: 50%;
}

.content_offer-img {
    width: 100%;
}

.content_offer-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.content_offer-title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    color: var(--primary-color);
}

.content_offer-rating {
    font-size: 1.2em;
    color: var(--yellow-color);
}

.content_offer-description {
    color: var(--text-color);
}

.content_offer-currency {
    display: flex;
    align-items: start;
    gap: 15px;
}

.content_offer-prev {
    font-size: 2em;
    font-weight: var(--fw-normal);
    text-decoration: line-through;
    color: var(--text-color);
}

.content_offer-current {
    font-size: 2em;
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
}

.content_offer-avaliable {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.content_offer-avaliable-txt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_offer-avaliable-bar {
    width: 100%;
    height: 16px;
    display: flex;
    align-items: center;
    padding: 0 3px;
    background-color: var(--border-color);
    border-radius: 8px;
}

.content_offer-avaliable-percent {
    max-width: 100% !important;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.content_offer-timer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    margin-top: 30px;
}

.content_offer-timer-counter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.content_offer-days,
.content_offer-hours,
.content_offer-minutes,
.content_offer-seconds {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    background-color: var(--border-color);
    border-radius: 10px;
}

.content_offer-days p:first-child,
.content_offer-hours p:first-child,
.content_offer-minutes p:first-child,
.content_offer-seconds p:first-child {
    font-size: 1.2em;
    font-weight: var(--fw-semibold);
}

.content_offer-days p:last-child,
.content_offer-hours p:last-child,
.content_offer-minutes p:last-child,
.content_offer-seconds p:last-child {
    font-size: .7em;
}

/*    NEW PRODUCTS SECTION    */
.content_newproduct {
    margin-bottom: 30px;
}

.content_newproduct-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.newproduct_box-item {
    width: calc(25% - 11.5px);
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.newproduct_box-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50px;
    right: -100px;
    transition: right 0.3s ease;
}

.newproduct_box-actions>a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-weight: var(--fw-normal);
    color: var(--text-color);
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.newproduct_box-actions>a:hover {
    color: var(--background-color);
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
}

.wish-active {
    color: var(--background-color) !important;
    background-color: var(--text-color) !important;
    border: 1px solid var(--text-color) !important;
}

.newproduct_box-flag {
    display: block;
    padding: 5px;
    color: var(--background-color);
    background-color: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.newproduct_box-alert {
    width: 130px;
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: var(--fw-semibold);
    position: absolute;
    transform: rotate(-45deg);
    top: 15px;
    left: -35px;
}

.newproduct_box-img {
    width: 100%;
    display: block;
}

.newproduct_box-img-hover {
    width: 100%;
    display: none;
}

.newproduct_box-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    justify-content: space-between;
}

.newproduct_box-title {
    text-transform: uppercase;
    font-size: 1em;
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
}

.newproduct_box-desc {
    line-height: 1.2;
    font-size: .8em;
    font-weight: var(--fw-normal);
    color: var(--text-color);
}

.newproduct_box-rating {
    font-size: 1.1em;
    color: var(--yellow-color);
}

.newproduct_box-currency {
    display: flex;
    align-items: start;
    gap: 15px;
}

.newproduct_box-prev {
    font-size: 1em;
    font-weight: var(--fw-semibold);
    text-decoration: line-through;
    color: var(--text-color);
}

.newproduct_box-current {
    font-size: 1em;
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
}

.newproduct_box-info>a {
    align-self: stretch;
    text-align: center;
    /* position: absolute;
    bottom: 15px; */
}

/*    FLOATING BAG    */
.floating_bag {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 5px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px 0 0 10px;
    position: fixed;
    top: 25%;
    right: 0;
}

/*    FOOTER SECTION    */
footer {
    width: 100%;
    background-color: #4E3B21;
    padding-top: 30px;
}

footer>.container {
    display: flex;
    align-items: stretch;
}

.footer_flex-box,
.footer_flex-contact {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 30px;

}

.footer_link-title {
    width: 100%;
    font-size: 1em;
    font-weight: var(--fw-semibold);
    color: var(--background-color);
    position: relative;
}

.footer_link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.footer_link p {
    font-size: .8em;
    line-height: 1.2;
    color: var(--primary-color);
}

.footer_link a {
    font-size: .8em;
    color: var(--primary-color);
}

.footer_link a:hover {
    color: #F7BE39;
}

.copyright {
    width: 100%;
    font-size: .9em;
    font-weight: var(--fw-normal);
    text-align: center;
    color: #2A7C30;
    background-color: #322719;
    margin-top: 50px;
    padding: 30px;
}

/*    MOBILE NAV    */
.navegate_mobile {
    width: 100%;
    max-width: 500px;
    display: none;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    padding: 5px 0;
    background-color: var(--neutral-color);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 100;
}

.mobile_btn {
    padding: 10px;
    font-size: 26px;
    color: var(--primary-color);
    position: relative;
}

.mobile_btn:hover {
    color: var(--text-color);
}

.mobile_btn .ri-heart-line,
.mobile_btn .ri-shopping-bag-line {
    position: relative;
}

.mobile_btn .ri-heart-line span,
.mobile_btn .ri-shopping-bag-line span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .4em;
    font-family: 'Poppins', sans-serif;
    color: var(--background-color);
    background-color: #F7BE39;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -10px;
}

/*    MENU MOBILE HIDDEN    */
.menu_mobile,
.mobile_category {
    width: 100%;
    height: 100vh;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.menu_mobile-content,
.mobile_category-content {
    width: 300px;
    height: 100vh;
    display: block;
    padding: 15px;
    background-color: var(--neutral-color);
    position: relative;
    overflow: auto;
}

.menu_mobile-btn,
.menu_category-btn {
    font-size: 1.4em;
    color: var(--primary-color);
    position: absolute;
    top: 15px;
    right: 15px;
}

.menu_category-btn {
    top: 10px;
}

.menu_mobile-title {
    width: 100%;
    font-size: 1.4em;
    font-weight: var(--fw-semibold);
    color: var(--primary-color);
    position: relative;
}

.menu_mobile-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
}

.menu_mobile-link {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.menu_mobile-link>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.menu_mobile-link>a:hover {
    color: var(--primary-color);
}

.menu_mobile-link.clicked>a {
    color: var(--primary-color);
}

.menu_mobile-link a i {
    transition: opacity .3s ease, transform 0.5s ease;
}

.menu_mobile-link a i.hidden {
    opacity: 0;
    transform: scale(0.5);
}

.menu_mobile-link-sub {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.menu_mobile-link-sub li a {
    padding: 10px 0;
    color: var(--text-color);
}

.menu_mobile-link-sub li a:hover {
    color: var(--border-color);
}

.menu_mobile-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.menu_mobile-region {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.menu_mobile-region>select {
    padding: 5px;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
}

.menu_mobile-social>a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 5px;
}

.menu_mobile-social>a:hover {
    color: var(--background-color);
    background-color: var(--primary-color);
}



/*    MEDIA QUERYS SMARTPHONES    */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    .mobilehide,
    .top_nav-actions {
        display: none;
    }

    .navegate_mobile {
        width: 95%;
        display: flex;
    }

    .top_nav-news {
        margin: 0 auto;
    }

    .header_nav {
        height: 150px;
        border: none;
    }

    .header_nav>.container.flexitem {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header_nav-logo {
        width: 50%;
    }

    .header_nav-search {
        width: 80%;
    }

    .slider_section {
        height: 300px;
        margin-top: 40px;
    }

    .slider_section-item img {
        width: 180%;
    }

    .slider_section-text {
        max-width: 250px;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
        line-height: 1.2;
        background-color: rgba(255, 255, 255, .1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 10px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slider_section-text h2,
    .slider_section-price span {
        font-size: 1.2em;
        color: var(--primary-color);
    }

    .slider_section-subtitle {
        color: var(--background-color);
    }

    .slider_section-price {
        font-size: 1em;
        color: var(--background-color);
    }

    .btn_standard-medium {
        padding: 10px;
        white-space: nowrap;
    }

    .main_content>.container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .main_content-sidebar,
    .main_content-showroom,
    .content_offer-img,
    .content_offer-info {
        width: 100%;
    }

    .content_offer-container {
        display: flex;
        flex-direction: column;
    }

    .content_offer-img {
        min-width: 100%;
    }

    .content_offer-info {
        align-items: center;
        text-align: center;
    }

    .content_offer-info>.btn_standard-medium {
        align-self: stretch;
    }

    .newproduct_box-item {
        width: 100%;
        max-width: none;
    }

    .newproduct_box-currency {
        font-size: 1.5em;
    }

    .newproduct_box-actions>a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
    }

    .newproduct_box-info {
        width: 100%;
    }

    .content_offer-timer,
    .content_offer-timer-txt {
        align-self: center;
    }

    .newproduct_box-info>.btn_standard-medium {
        align-self: stretch;
        text-align: center;
    }

    footer>.container {
        flex-wrap: wrap;
    }

    .footer_flex-box {
        width: 50%;
        display: flex;
        flex-direction: column;
    }

    .footer_flex-contact {
        width: 100%;
        margin-top: 30px;
    }
    

    .footer_flex-contact br {
        display: none;
    }

    .copyright {
        min-height: 130px;
        margin-top: 30px;
    }
}

/*    MEDIA QUERYS    */
@media (max-width: 810px) {
    .content_offer-container {
        display: flex;
        flex-direction: column;
    }

    .content_offer-img {
        min-width: 60%;
    }
}

/*    MEDIA QUERYS TABLETS   */
@media (min-width: 601px) and (max-width: 1024px) {
    .mobilehide {
        display: none;
    }

    .header_nav-logo {
        width: 30%;
    }

    .header_nav-search {
        width: 65%;
    }

    .navegate_mobile {
        display: flex;
    }

    .content_offer-img {
        width: 30%;
    }

    .content_offer-info {
        width: 70%;
    }

    .newproduct_box-info>.btn_standard-medium {
        align-self: stretch;
        text-align: center;
    }

    .newproduct_box-item {
        width: calc(50% - 7.5px);
        max-width: none;
    }

    .slider_section {
        height: 360px;
        margin-top: 40px;
    }

    .slider_section-item img {
        width: 130%;
    }

    /* .slider_section-text {
        left: 60px;
    } */

    .slider_section-text {
        /* max-width: 350px; */
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center;
        line-height: 1.2;
        background-color: rgba(255, 255, 255, .1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 10px;
        left: 60px;
    }

    .slider_section-text h2,
    .slider_section-price span {
        font-size: 1.5em;
        color: var(--primary-color);
    }

    .slider_section-subtitle {
        color: var(--background-color);
    }

    .slider_section-price {
        font-size: 1em;
        color: var(--background-color);
    }

    .btn_standard-medium {
        padding: 10px;
        white-space: nowrap;
    }

    .main_content>.container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .main_content-sidebar,
    .main_content-showroom,
    .content_offer-img,
    .content_offer-info {
        width: 100%;
    }

    .copyright {
        min-height: 130px;
        margin-top: 30px;
    }
}

/*    MEDIA QUERYS DESKTOP    */
@media (min-width: 1025px) and (max-width: 1345px) {
    .newproduct_box-item {
        width: calc(33% - 8.5px);
        max-width: none;
    }
}