/*==================================================
FONTS & ICONS
==================================================*/

@import 'fonts.css';

/*================================================*/










/*==================================================
THEMES
==================================================*/

:root
{
    --scroll-margin: inset 0 0 10px 10px rgba(0, 0, 0, 0.25);

    --max-width: 1160px;
    --margin: 20px;
    --padding: 10px;
    --banner-text: clamp(64px, 5vw, 96px);
    --ultra-text: clamp(32px, 5vw, 64px);
    --super-text: clamp(24px, 2.5vw, 32px);
    --big-text: clamp(16px, 1.5vw, 24px);
    --main-text: clamp(13px, 2vw, 16px);
    --second-text: clamp(11px, 2vw, 13px);
    --third-text: clamp(9px, 2vw, 11px);
    --icon: 16px;
    --btn: 16px;
    --nav-icon: 24px;
    --border-radius: clamp(20px, 1.5vw, 30px);
    --border-radius-round: 1024px;

    --bg1: #f1e5d9;
    --bg2: #f4f4f4;

	--border: 2px solid;
	--border-color: rgba(0,0,0,0.10);

	--text-color: #f1e5d9;
	--selected-text: #000;
	--selected-bg: rgba(0, 0, 0, 0.10);

    --main-color: #d1ac5f;
    --second-color: #ccc;
    --third-color: #000;
    --fourth-color: #fff;
    --fifth-color: #eee;

    --blue: #0b109e;
    --brown: #502c1d;
    --mid-brown: #281203;
    --dark-brown: #100701;
    --skyblue: #80d3f9;
    --gray: #ccc;
    --gold: #d1ac5f;
    --yellowgold: #f5bb56;
    --orange: #f27321;
    --cream: #f1e5d9;
    --pink: #e0bde6;
    --low-cream: #f1e5d9;
    --mid-cream: #efcaa8;
    --high-cream: #efa460;

    --transition: 0.25s;
}

.blue{color: var(--blue) !important;}
.brown{color: var(--brown) !important;}
.mid-brown{color: var(--mid-brown) !important;}
.dark-brown{color: var(--dark-brown) !important;}
.skyblue{color: var(--skyblue) !important;}
.gray{color: var(--gray) !important;}
.gold{color: var(--gold) !important;}
.yellowgold{color: var(--yellowgold) !important;}
.lowyellow{color: #ffd278 !important;}
.orange{color: var(--orange) !important;}
.cream{color: var(--cream) !important;}
.pink{color: var(--pink) !important;}
.low-cream{color: var(--low-cream) !important;}
.mid-cream{color: var(--mid-cream) !important;}
.high-cream{color: var(--high-cream) !important;}
.white{color: white !important;}
.black{color: black !important;}

.blue-bg{background-color: var(--blue) !important;}
.brown-bg{background-color: var(--brown) !important;}
.mid-brown-bg{background-color: var(--mid-brown) !important;}
.dark-brown-bg{color: white; background-color: var(--dark-brown) !important;}

.skyblue-bg{background-color: var(--skyblue) !important;}
.gray-bg{background-color: var(--gray) !important;}
.gold-bg{background-color: var(--gold) !important;}
.yellowgold-bg{background-color: var(--yellowgold) !important;}
.lowyellow-bg{background-color: #ffd278 !important;}
.orange-bg{background-color: var(--orange) !important;}
.cream-bg{background-color: var(--cream) !important;}
.pink-bg{background-color: var(--pink) !important;}
.low-cream-bg{background-color: var(--low-cream) !important;}
.mid-cream-bg{background-color: var(--mid-cream) !important;}
.high-cream-bg{background-color: var(--high-cream) !important;}
.white-bg{background-color: white !important;}
.black-bg{background-color: black !important;}
.wa-green-bg{background-color: #25d366 !important;}
.blue-gradient{background-image: linear-gradient(to bottom, var(--blue), var(--gold)) !important;}

.bluefill stop{stop-color: var(--blue);}
.brownfill stop{stop-color: var(--brown);}
.dark-brownfill{stop-color: var(--dark-brown);}
.skybluefill stop{stop-color: var(--skyblue);}
.grayfill stop{stop-color: var(--gray);}
.goldfill stop{stop-color: var(--gold);}
.yellowgoldfill stop{stop-color: var(--yellowgold);}
.orangefill stop{stop-color: var(--orange);}
.creamfill stop{stop-color: var(--cream);}
.pinkfill stop{stop-color: var(--pink);}
.low-creamfill stop{stop-color: var(--low-cream);}
.mid-creamfill stop{stop-color: var(--mid-cream);}
.high-creamfill stop{stop-color: var(--high-cream);}
.whitefill stop{stop-color: white;}
.blackfill stop{stop-color: black;}

/*================================================*/










/*==================================================
MAIN TAGS
==================================================*/

html
{
    line-height: 1;
}

html, body
{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
    border: 0;
    overflow-x: clip;
}

body
{
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    position: relative;
	font-size: var(--main-text);
	font-family: montserrat-light;
	color: var(--text-color);
    background-color: var(--dark-brown);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden overlay;
    -webkit-overflow-scrolling: touch;
    transition: var(--transition);
}

input, textarea, select
{
    width: 100%;
    height: 48px;
    position: relative;
    font-size: var(--main-text);
	font-family: montserrat-light;
	color: var(--text-color);
	background-color: transparent;
	outline: none;
	border: none;
	resize: none;
	box-sizing: border-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: var(--transition);
}

textarea
{
    height: 96px;
}

option
{
    padding: 10px;
    background-color: var(--mid-brown);
}

input[type="checkbox"], input[type="radio"]
{
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--big-text);
    border-radius: var(--border-radius-round);
}

input[type="checkbox"]:hover, input[type="radio"]:hover
{
    cursor: pointer;
    border-color: var(--third-color);
}

input[type='checkbox']:before, input[type="radio"]:before
{
    /*padding: 5px;*/
    color: transparent;
    font-family: 'icons';
    content: "\e902";
    font-weight: bold;
    border: 1px solid var(--second-color);
    border-radius: var(--border-radius-round);
}

input[type='checkbox']:checked:before, input[type="radio"]:checked:before
{
    color: var(--third-color);
    border-color: var(--third-color);
}

input[type='checkbox']:hover:before, input[type='radio']:hover:before
{
    
}

input[type='checkbox']:hover:checked:before, input[type='radio']:hover:checked:before
{
    color: var(--third-color);
    border-color: var(--third-color);
}

::placeholder
{
    color: var(--text-color);
    transition: var(--transition);
}

::selection
{
	color: var(--selected-text);
	background-color: var(--selected-bg);
}

span, img
{
	margin: 0;
	padding: 0;
	border: none;
    display: block;
}

h1, h2, h3, h4, h5, h6
{
    margin: 0;
	font-weight: normal;
}

a
{
    color: unset;
    text-decoration: none;
}

/*================================================*/










/*==================================================
TEMPLATE
==================================================*/

#body-grid
{
    margin: auto;
    display: grid;
    grid-template-areas: 
        "header"
        "main"
    ;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
}

#header
{
    grid-area: header;
    width: -webkit-fill-available;
    width: -moz-available;
    padding-top: env(safe-area-inset-top);
    /*padding-right: clamp(20px, 15%, 250px);*/
    display: grid;
    grid-template-areas: 
        "logo nav"
    ;
    grid-template-columns: auto 1fr;
    grid-template-rows: 100px;
    grid-gap: 20px;
    position: fixed;
    top: env(safe-area-inset-top);
    left: 0;
    z-index: 10;
    transition: height var(--transition), background var(--transition);
    /*-webkit-backdrop-filter: blur(100px);*/
    /*backdrop-filter: blur(100px);*/
}

#logo-container
{
    width: 100%;
    margin: 0 auto auto 0;
}

#logo
{
    width: 100%;
    height: auto;
    max-height: 180px;
    margin-right: auto;
    display: flex;
}
/*
#logo-mobile
{
    width: auto;
    height: 100%;
    max-height: 76px;
    margin-right: auto;
    display: none;
}
*/

#nav
{
    grid-area: nav;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    text-shadow: 0 2.5px 5px rgba(0, 0, 0, 0.25);
    /*backdrop-filter: blur(50px);*/
}

.nav-items
{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-white .nav-item
{
    color: white !important;
}

.nav-white .nav-item-bottom
{
    background-color: white !important;
}

.nav-item
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    position: relative;
    font-family: montserrat-medium;
    color: var(--text-color);
    font-size: var(--main-text);
    transition: var(--transition);
}

.nav-icon
{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: var(--nav-icon);
}

.nav-text
{
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-item-bottom
{
    width: 0;
    height: 7.5px;
    position: absolute;
    bottom: -15px;
    background-color: var(--main-color);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
}

.nav-item:not(.nav-active):hover, .nav-active, .subnav-item:not(.subnav-active):hover, .subnav-active
{
    color: var(--main-color);
    cursor: pointer;
}

.nav-active .nav-item-bottom, .subnav-active .nav-item-bottom
{
    width: 24px;
    opacity: 1;
}

.subnav
{
    margin: 30px auto;
    display: flex;
    align-items: center;
    gap: 30px;
    /*overflow-x: overlay;*/
    /*-webkit-overflow-scrolling: touch;*/
}

.subnav-item
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    position: relative;
    color: var(--main-color);
    font-size: var(--main-text);
    transition: var(--transition);
}





#mobile-nav
{
    grid-area: mobilenav;
    justify-content: flex-end;
    position: relative;
    z-index: 5;
    display: none;
}

#mobile-nav-close
{
    display: none;
}

#mobile-nav-open:hover, #mobile-nav-close:hover
{
    cursor: pointer;
}

.mobile-nav-item
{
    /*width: 100%;*/
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: var(--big-text);
}





#lang-nav
{
    grid-area: lang;
    margin: 20px 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: montserrat-medium;
    /*display: none;*/
    /*transition: var(--transition);*/
}

.lang-item
{
    padding: 10px;
    color: var(--text-color);
    font-size: var(--second-text);
    font-weight: bold;
    border: 1px solid transparent;
    /*border-radius: 10px;*/
    transition: var(--transition);
    display: none;
}

.lang-item:hover, .lang-active
{
    cursor: pointer;
    color: var(--second-color);
    border-color: var(--second-color);
}





.sm-block
{
    width: fit-content;
    /*margin: auto;*/
    padding: 30px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    /*
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 1;
    */
    color: var(--gold);
    background-color: var(--brown);
    border-radius: var(--border-radius-round);
    transition: var(--transition);
}

.sm-block:hover
{
    opacity: 1;
}

.sm-block-center
{
    margin: 10px auto;
    justify-content: center;
}

.sm-block-down
{
    width: fit-content;
    /*margin: auto;*/
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 1;
    color:  var(--brown);
    /*border:  2px solid var(--brown);*/
    border-radius: var(--border-radius-round);
    transition: var(--transition);
}

.sm-item
{
    font-size: var(--big-text);
}

.sm-footer-block
{
    width: fit-content;
    margin: 50px 0 0 0;
    padding: 10px 15px;
    display: flex;
    gap: 25px;
    color: var(--yellowgold);
    background-color: var(--brown);
    border-radius: var(--border-radius-round);
}





#main
{
    grid-area: main;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
    display: flex;
    position: relative;
    z-index: 1;
}

.screen
{
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    z-index: 0;
    border: none;
    text-align: center;
    /*
    -webkit-user-select: none;
    -moz-user-select: moz-none;
    -ms-user-select: none;
    user-select: none;
    */
}





footer
{
    width: auto;
}

.footer
{
    margin: 100px 0 0 0;
    position: relative;
    z-index: 1;
}

.footer-section
{
    margin: auto;
    padding: 0 20px 50px 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-cols
{
    max-width: 1080px;
    width: auto;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 100px;
    text-align: left;
}

.footer-col
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 20px;
}

.footer-col > *
{
    width: auto;
    text-align: left;
}

.footer-btn
{
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 10px;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--gold);
}

.footer-img
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.footer-copyrights
{
    margin: 40px 20px 0 20px;
}

.grid-footer
{
    grid-area: footer;
}





.ultra-title
{
    font-size: var(--ultra-text);
    font-weight: bold;
    font-family: montserrat-extrabold;
    position: relative;
}

.super-title
{
    font-size: var(--super-text);
    font-weight: bold;
    font-family: montserrat-extrabold;
    position: relative;
}

.big-title
{
    font-size: var(--big-text);
    font-weight: bold;
    font-family: montserrat-bold;
    position: relative;
}

.main-title
{
    font-size: var(--main-text);
    font-weight: bold;
    font-family: montserrat-bold;
    position: relative;
}

.second-title
{
    font-size: var(--second-text);
    font-weight: bold;
    font-family: montserrat-bold;
    position: relative;
}

.third-title
{
    font-size: var(--third-text);
    font-weight: bold;
    font-family: montserrat-bold;
    position: relative;
}

.ultra-text
{
    font-size: var(--ultra-text);
    position: relative;
}

.super-text
{
    font-size: var(--super-text);
    position: relative;
}

.big-text
{
    font-size: var(--big-text);
    position: relative;
}

.main-text
{
    font-size: var(--main-text);
    position: relative;
}

.second-text
{
    font-size: var(--second-text);
    position: relative;
}

.third-text
{
    font-size: var(--third-text);
    position: relative;
}

.fourth-text
{
    font-size: var(--fourth-text);
    position: relative;
}

.barbaro-font
{
    font-family: barbaro;
}





.section, .section-full, .section-news
{
    width: auto;
    height: auto;
    margin: auto 0;
    padding: 100px clamp(20px, 25%, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    text-align: left;
    transition: var(--transition);
}

.section-full
{
    /*
    height: -webkit-fill-available;
    height: -moz-available;
    */
    /*min-height: calc(100% - 100px);*/
    height: calc(100% - 100px);
    padding: 50px clamp(20px, 15%, 400px);
    gap: 50px;
    flex-shrink: 0;
    overflow: hidden;
}

.section-full:not(:first-of-type)
{
    position: relative;
    height: auto;
    min-height: 100% !important;
}

.section-news
{
    padding: 50px clamp(20px, 25%, 300px);
    justify-content: flex-start;
    gap: 100px;
}

.section-banner
{
    width: auto;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    transition: var(--transition);
}

.section-banner-block
{
    width: 40%;
    margin: 0 100px;
    display: grid;
    gap: 20px;
    position: absolute;
    left: 0;
    text-align: center;
}

.section-banner-flag-img
{
    max-width: 75px;
    width: auto;
    height: auto;
    margin: 20px auto;
}

.section-banner-block-half
{
    width: 50%;
    margin-block: 20px;
    color: white;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.grid-blocks
{
    height: auto;
    margin-block: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: 1fr;
    gap: 50px;
}

.grid-blocks-item
{
    height: auto;
}

.section-banner-logo
{
    max-width: 150px;
    width: auto;
    height: auto;
    margin: 20px auto;
}

.banner-blocks
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd278;
}

.banner-block
{
    max-width: 640px;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 50px;
}

.section-header
{
    width: auto;
    height: auto;
    padding: 0 clamp(20px, 25%, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.section-header-left
{
    width: 100%;
    height: auto;
    padding: 0 clamp(20px, 25%, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.section-header-block
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.section-header-svg
{
    width: auto;
    height: auto;
    margin: auto;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.section-header-svg svg
{
    width: 100%;
    height: auto;
}

.section-header-svg stop
{
    stop-color: white;
    transition: var(--transition);
}

.section-footer-svg
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    display: none;
}

.section-footer-svg svg
{
    width: 100%;
    height: auto;
}

.section-footer-svg stop
{
    transition: var(--transition);
}

.section-hidden
{
    display: none;
}

.section-fixed-bottom
{
    position: fixed;
    bottom: 0;
}

.background-fixed-cafe-oro1
{
    background-image: url(../img/products/fondo-cafe-oro1-1280.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: repeat-y;
    /*background-attachment: fixed;*/
}

.background-fixed-cafe-oro2
{
    background-image: url(../img/products/fondo-cafe-oro2-1280.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: repeat-y;
    /*background-attachment: fixed;*/
}

.background-fixed-cafe-oro3
{
    background-image: url(../img/products/fondo-cafe-oro3-1280.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: repeat-y;
    /*background-attachment: fixed;*/
}

.background-fixed-don-cafe1
{
    background-image: url(../img/products/fondo-don-cafe1-1280.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: repeat-y;
    /*background-attachment: fixed;*/
}

.opacity
{
    opacity: 0.5 !important;
}

.section-limit
{
    max-width: var(--max-width);
    margin: auto;
}

.section-content
{
    width: 100%;
    /*height: 100%;*/
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-content-center
{
    width: 100%;
    /*height: 100%;*/
    margin: auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-content-center-nomargin
{
    width: 100%;
    /*height: 100%;*/
    position: relative;
    z-index: 1;
    text-align: center;
}

.sticky-top
{
    position: sticky;
    top: 0;
}

.orange-outline
{
    border: 16px solid var(--orange);
}

.title-oval
{
    width: fit-content;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    color: var(--yellowgold);
    background-color: var(--mid-brown);
    border-radius: 100px;
}





.anim
{
    opacity: 0;
}

.video-container
{
    max-width: 720px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.video-block
{
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    position: relative;
    object-fit: cover;
    aspect-ratio:  16 / 9;
    overflow: hidden;
}

.video-block iframe, .video-block object, .video-block embed
{
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.video-full-container
{
    width: 100%;
    height: 100%;
    display: flex;
    /*flex-direction: column;*/
    justify-content: space-around;
    align-items: center;
    position: relative;
    border-radius: clamp(25px, 2.5vw, 50px);
    overflow: hidden;
    box-shadow: 0 50px 50px 0 rgba(0, 0, 0, 0.25);
}

.video-full-container *
{
    /*
    height: auto;
    border-radius: clamp(25px, 2.5vw, 50px);
    overflow: hidden;
    */
}

/*================================================*/










/*==================================================
BANNER
==================================================*/

.full-banner, .half-banner, .semifull-banner
{
    width: 100%;
    height: 100%;
    display: flex;
    /*flex-direction: column;*/
    justify-content: space-around;
    align-items: center;
    position: relative;
    border-radius: clamp(25px, 2.5vw, 50px);
    overflow: hidden;
    box-shadow: 0 50px 50px 0 rgba(0, 0, 0, 0.25);
}

.half-banner
{
    height: 50%;
}

.semifull-banner
{
    height: 70%;
}

.banner-fit
{
    aspect-ratio: 16 / 9;
}

.banner-presentation
{
    width: 100%;
    height: auto;
    margin: auto;
    position: relative;
}

.banner-info-block
{
    width: 50%;
    height: auto;
    padding: 40px;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-gap: 20px;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-align: left;
    color: var(--fourth-color);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    /*background-image: radial-gradient(circle at left, var(--main-color) 100%, transparent 100%);*/
    /*border-radius: 0 1000px 1000px 0;*/
    /*box-shadow: 50px 50px 50px 0 rgba(0, 0, 0, 0.5);*/
}

.banner-shadow
{
    width: 50%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    display: none;
}

.banner-info
{
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-text
{
    font-size: var(--big-text);
    font-family: montserrat-medium;
}

.banner-numbers
{
    display: flex;
    gap: 10px;
    font-size: var(--second-text);
}

.banner-num
{
    opacity: 0.25;
    transition: var(--transition);
}

.banner-num:hover, .banner-num-active
{
    opacity: 1;
}

.banner-bg
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    /*border-radius: 50px;*/
    overflow: hidden;
    z-index: -1;
}

.half-banner-bg
{
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.banner-bg-left
{
    width: auto;
    height: 100%;
    max-height: 360px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    /*border-radius: 50px;*/
    opacity: 0.25;
    overflow: hidden;
}

.banner-bg-right
{
    width: auto;
    height: 100%;
    max-height: 360px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    /*border-radius: 50px;*/
    opacity: 0.25;
    overflow: hidden;
}

.banner-bg-top
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 360px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-bg-bottom
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 360px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-bg-top-left
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 540px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-bg-top-right
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 540px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-bg-bottom-left
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 540px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-bg-bottom-right
{
    max-width: 480px;
    width: auto;
    height: auto;
    max-height: 540px;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    /*border-radius: 50px;*/
    overflow: hidden;
}

.banner-outline
{
    padding: 50px;
    height: calc(100% - 35%);
    border: 16px solid var(--orange);
}

.banner-blend
{
    mix-blend-mode: color-burn;
}

.banner-logo
{
    max-width: 320px;
    width: auto;
    height: auto;
}

.banner-fixed
{
    position: fixed;
    inset: 0;
    z-index: -1;
}

.banner-fixed-top-right
{
    object-position: top right;
}

.banner-arrow-down
{
    align-self: flex-start;
    font-size: var(--ultra-text);
    color: white;
    opacity: 0.5;
}

.banner-arrow-down:hover
{
    cursor: pointer;
}

.banner-arrow-down-small
{
    align-self: flex-start;
    font-size: var(--big-text);
    color: white;
}

.banner-arrow-down-small:hover
{
    cursor: pointer;
}

.text-center
{
    text-align: center;
}

.text-justify
{
    text-align: justify;
}

.swiper
{
    width: 100%;
    height: 100%;
}

.swiper-slide
{

}

.swiper-pagination
{
    width: auto !important;
    bottom: 40px !important;
    left: 0 !important;
    right: 0 !important;
}

.swiper-pagination-bullet
{
    width: 13px;
    height: 13px;
    background-color: white;
    opacity: 0.25;
}

.swiper-pagination-bullet-active
{
    background-color: white;
    opacity: 1;
}

/*================================================*/










/*==================================================
HOME
==================================================*/

.home-grid
{
    width: auto;
    height: calc(100% - 50px);
    padding: 0 clamp(20px, 15%, 250px) 50px clamp(20px, 15%, 250px);
    display: grid;
    grid-template-rows: 1fr auto;
    grid-auto-columns: auto;
    grid-gap: 50px;
    flex-shrink: 0;
    position: relative;
    /*
    width: auto;
    height: calc(100% - 100px);
    margin: auto 0;
    padding: 0 clamp(20px, 15%, 250px) 50px clamp(20px, 15%, 250px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
    */
}

.home-grid .super-title
{
    font-family: damion-regular;
}

.home-sections
{
    /*margin: auto 20px;*/
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}

.home-section
{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-block-info
{
    text-align: left;
}

.home-preview-img
{
    max-width: 180px;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}

/*================================================*/










/*==================================================
POSTS GRID
==================================================*/

.posts-grid
{
    width: 100%;
    height: 100%;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 50px;
}

.posts-grid:last-child
{
    margin-bottom: 0;
}

.post-header
{
    width: 100%;
    grid-column: 1 / -1;
    text-align: left;
}

.post-item
{
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    text-align: left;
    position: relative;
}

.post-item-half
{
    width: 50%;
}

.post-item-rounded
{
    padding: 30px;
    border-radius: var(--border-radius);
}

.post-item-subinfo
{
    margin-bottom: 50px;
}

.post-limit480
{
    max-width: 1024px;
}

.post-product
{
    display: grid;
    padding: 25px;
    grid-gap: 25px;
    text-align: left;
    position: relative;
    background-color: var(--mid-brown);
    border-radius: 50px;
}
/*
.post-product-hover:hover
{
    color: white;
    background-image: linear-gradient(to right bottom, #FDB901, #FF7F00);
}
*/

.post-card
{
    max-width: 260px;
    padding: 20px;
    display: grid;
    grid-gap: 30px;
    text-align: left;
    position: relative;
    background-color: var(--mid-brown);
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.post-box
{
    text-align: left;
    position: relative;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}

.post-box-info
{
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.post-box-info-flex
{
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.post-blox-padding
{
    padding: 30px;
}

.post-img
{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    overflow: hidden;
}

.post-img-square
{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.post-img-small
{
    max-height: 100px;
    width: auto;
    height: auto;
    margin: 20px 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.post-img-shadow
{
    position: relative;
    filter: drop-shadow(0px 25px 25px rgba(0, 0, 0, 0.25));
}

.post-img-480
{
    max-width: 480px;
    margin: auto;
}

.post-img-above
{
    position: relative;
}

.post-cat-title
{
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    color: var(--fourth-color);
    font-size: var(--super-text);
    font-family: montserrat-bold;
    text-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

.post-ultra-title
{
    color: var(--cream);
    font-size: var(--banner-text);
    font-family: montserrat-extrabold;
}

.post-info
{
    /*min-height: 180px;*/
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--dark-brown);
    border-radius: 50px;
    pointer-events: none;
    /*transition: var(--transition);*/
}

.post-info-extra
{
    max-width: 180px;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--border-radius);
}

.post-block
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-tag
{
    padding: 15px 20px;
    align-self: flex-start;
    font-size: var(--main-text);
    font-weight: bold;
    background-color: var(--mid-brown);
    border-radius: var(--border-radius-round);
}

.post-circle
{
    width: 72px;
    height: 72px;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--super-text);
    color: var(--gold);
    /*background-color: var(--gold);*/
    border-radius: var(--border-radius-round);
}

.post-icon
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-flex-row
{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.post-flex-col
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.post-row-to-col, .post-row-to-col-full
{
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    align-items: center;
    gap: 100px;
    /*flex: 1;*/
}

.flex-row-to-col
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    /*flex-wrap: wrap;*/
    gap: 150px;
    /*flex: 1;*/
}


.post-btn
{
    width: fit-content;
    height: auto;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--fourth-color);
    background-color: var(--gold);
    border-radius: var(--border-radius-round);
}

.post-btn-orange
{
    width: fit-content;
    height: auto;
    margin: 20px 0;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-family: montserrat-bold;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--mid-brown);
    background-color: var(--orange);
}

.post-btn-brown
{
    width: fit-content;
    height: auto;
    margin: 20px 0;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-family: montserrat-bold;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--yellowgold);
    background-color: var(--mid-brown);
}

.posts-grid-gallery
{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 25px;
}

.post-gallery-item:hover
{
    cursor: pointer;
}

.post-features
{
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-features-options
{
    display: flex;
    align-items: center;
    gap: 25px;
}

.post-features-option
{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--main-text);
    font-weight: bold;
}

.post-features-review
{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--big-text);
}

.post-title-bg
{
    padding: 20px;
    color: var(--mid-brown);
    background-color: var(--orange);
}

.post-footer
{
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    position: relative;
    color: var(--mid-brown);
    background-color: var(--cream);
    border-radius: 25px;
}

.post-footer-items
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.post-footer-item
{
    max-height: 100px;
    width: auto;
    height: auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.10);
}





.posts-grid-small
{
    width: 100%;
    height: 100%;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 25px;
}

.post-text-left
{
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background-color: var(--mid-brown);
    border-radius: 30px;
}

/*================================================*/










/*==================================================
PRODUCTS
==================================================*/

.product-img
{
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    pointer-events: none;

    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.20));
}

.product-info
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*transition: var(--transition);*/
}

/*================================================*/










/*==================================================
TIMELINE
==================================================*/

.timeline-container
{
    /*mix-blend-mode: screen;*/
}

.timeline-item
{
    display: flex;
    gap: 20px;
    text-align: left;
}

.timeline-title
{
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    flex-shrink: 1;
    text-align: center;
    font-size: var(--second-text);
    font-family: montserrat-bold;
    font-weight: bold;
    color: var(--dark-brown);
    background-color: var(--gold);
    border-radius: var(--border-radius);
}

.timeline-icon-group
{
    max-width: 150px;
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-icon
{
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    color: var(--gold);
    font-size: var(--super-text);
    border: 4px solid var(--gold);
    border-radius: var(--border-radius-round);
}

.timeline-line
{
    border-left: 2px solid var(--gold);
    height: 100%;
    align-self: auto;
}

.timeline-item:last-child .timeline-line
{
    display: none;
}

.timeline-group
{
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-info-group
{
    display: flex;
    gap: 30px;
}

.timeline-img
{
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
}

.timeline-text
{
    max-width: 480px;
    width: 100%;
    margin: 0;
    padding: 20px;
    justify-self: flex-start;
    align-self: flex-start;
    font-size: var(--main-text);
    /*font-weight: bold;*/
    /*color: var(--gold);*/
    /*border: 2px solid var(--gold);*/
    border-radius: var(--border-radius);
}

/*================================================*/










/*==================================================
CONTACT
==================================================*/

.contact-section
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 100px;
}

.contact-block
{
    width: 100%;
    text-align: left;
    border-radius: var(--border-radius);
}

.contact-block-info
{
    width: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    border-radius: var(--border-radius);
}

.contact-info
{
    margin-bottom: 20px;
}

.contact-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
    overflow: hidden;
}

.contact-flex
{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.contact-item
{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.contact-data
{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--main-text);
}

.contact-icon
{
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--big-text);
}

.contact-btn
{
    width: fit-content;
    margin: 20px 0;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--main-text);
    font-weight: bold;
    color: white;
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius-round);
}

.contact-btn:hover, .contact-upload-btn:hover
{
    cursor: pointer;
    color: var(--fourth-color);
    background-color: var(--main-color);
}

#contact-upload-btn
{
    display: none;
}

.contact-upload-btn
{
    width: fit-content;
    margin: 10px 0;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--main-color);
    background-color: var(--fifth-color);
    border-radius: var(--border-radius-round);
    transition: var(--transition);
}

.contact-field
{
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    transition: var(--transition);
}

.contact-field-error
{
    border-color: red;
}

.btn, .btn-out
{
    width: fit-content;
    height: auto;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: var(--main-text);
    font-weight: bold;
    color: var(--mid-brown);
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius-round);
    transition: var(--transition);
}

.btn-out
{
    color: var(--main-color);
    background-color: transparent;
}

.btn:hover, .btn-out:hover
{
    cursor: pointer;
    color: var(--mid-brown);
    background-color: var(--gold);
}

.gmap
{
    height: 300px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    /*box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.15);*/
}

.gmap iframe
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*================================================*/










/*==================================================
POPUPS
==================================================*/

.popup
{
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(0,0,0,0.5);
}

.popup-container
{
    max-width: 720px;
    max-height: 480px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: grid;
    grid-template-areas: 
        "popupheader"
        "popupmain"
        "popupfooter"
    ;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    background-color: var(--mid-brown);
    border-radius: var(--border-radius);
    box-shadow: 0 100px 100px -10px rgba(0,0,0,0.25);
    overflow: hidden;
}

.popup-content
{
    grid-area: popupmain;
    width: auto;
    height: auto;
    margin: var(--padding);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden overlay;
    -webkit-overflow-scrolling: touch;
    /*transition: var(--transition);*/
}

.popup-header
{
    grid-area: popupheader;
    margin: var(--margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 0;
    right: 0;
    z-index: 2;
    font-weight: bold;
    /*transition: var(--transition);*/
}

.popup-info
{
    width: 100%;
    height: 100%;
    margin: auto 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--big-text);
    /*transition: var(--transition);*/
}

.popup-info-left
{
    text-align: left;
}

.popup-icon
{
    padding: 10px;
}

.popup-icon:hover
{
    cursor: pointer;
}

.popup-footer
{
    grid-area: popupfooter;
    margin: var(--padding);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid:  20px;
    position: relative;
    z-index: 2;
    font-weight: bold;
    /*transition: var(--transition);*/
}

.popup-close
{
    font-size: var(--big-main);
    color: var(--text-color);
}

.popup-img
{
    max-width: fit-content;
    max-height: fit-content;
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: var(--border-radius);
}

/*================================================*/










/*==================================================
WEBKIT SCROLL
==================================================*/

::-webkit-scrollbar
{
	width: 10px;
	height: 0;
}

::-webkit-scrollbar-thumb
{
    border: 3px solid transparent;
	border-radius: var(--border-radius-round);
    box-shadow: var(--scroll-margin);
}

/*================================================*/










/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1280px)
{
    :root
    {
        --banner-text: clamp(64px, 5vw, 64px);
        --ultra-text: clamp(24px, 4vw, 48px);
        --super-text: clamp(24px, 2.5vw, 24px);
        --big-text: clamp(16px, 1.5vw, 16px);
        --main-text: clamp(13px, 2vw, 13px);
        --second-text: clamp(11px, 2vw, 13px);
        --third-text: clamp(9px, 2vw, 11px);
    }

    #body-grid
    {
        grid-template-rows: 70px 1fr;
    }

    #header
    {
        height: 70px;
        grid-template-rows: 70px 1fr;
    }

    #logo
    {
        max-height: 120px;
    }

    .nav-items
    {
        gap: 20px;
    }

    .subnav-industrial
    {
        padding: 10px;
        gap: 20px;
    }

    .subnav-industrial .subnav-item
    {
        font-size: var(--second-text);
    }

    .sm-block-down
    {
        padding: 10px 20px;
        gap: 40px;
        bottom: 20px;
        right: 20px;
        color: var(--brown);
        border: 2px solid white;
        background-color: white;
    }





    .home-grid
    {
        /*padding: 0 150px 50px 150px;*/
        grid-gap: 40px;
    }

    .home-sections
    {
        gap: 25px;
    }

    .home-section
    {
        gap: 20px;
    }

    .home-preview-img
    {
        max-width: 120px;
        height: 120px;
    }





    .section-header
    {
        padding: 0 clamp(20px, 25%, 200px);
    }

    .section
    {
        padding: 100px clamp(20px, 25%, 200px);
    }

    .section-news
    {
        padding: 50px clamp(20px, 25%, 200px);
        gap: 70px;
    }





    .posts-grid
    {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        grid-gap: 25px;
    }

    .post-info
    {
        padding: 20px;
        border-radius: clamp(20px, 2.5vw, 50px);
    }

    .post-circle
    {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px auto;
    }

    .post-img
    {
        border-radius: 35px;
    }

    .product-img, .product-img-c
    {
        max-width: 200px;
    }

    .product-info
    {
        min-height: 64px;
        top: -100px;
    }





    .banner-bg-left, .banner-bg-right
    {
        max-height: 180px;
    }

    .banner-logo
    {
        max-width: 240px;
    }

    .banner-bg-left,
    .banner-bg-right,
    .banner-bg-top,
    .banner-bg-bottom,
    .banner-bg-top-left,
    .banner-bg-top-right,
    .banner-bg-bottom-left,
    .banner-bg-bottom-right
    {
        max-width: 240px;
        max-height: 360px;
    }





    .post-recipe-list, .post-recipe-steps
    {
        padding: 25px;
        border-radius: 25px;
    }

    .post-features-options
    {
        top: 0;
    }





    .footer-cols
    {
        max-width: 640px;
        gap: 50px;
    }





    .orange-outline
    {
        border: 12px solid var(--orange);
    }

    .banner-outline
    {
        border: 12px solid var(--orange);
    }
}

@media (max-width: 1080px)
{
    #header
    {
        /*width: 100%;*/
        padding: 0;
    }

    #logo-container
    {
        /*padding: 0;*/
    }

    #logo
    {
        max-height: 64px;
    }





    .home-grid
    {
        /*padding: 0 50px 50px 50px;*/
        grid-gap: 40px;
    }





    .section-header
    {
        width: auto;
        margin: 20px auto 0 0;
        padding: 0 20px;
    }

    .section, .section-news
    {
        padding: 50px 20px;
        grid-gap: 50px;
    }

    .section-full
    {
        height: calc(100% - 60px);
        padding: 30px 20px;
    }





    .post-card
    {
        max-width: unset;
    }





    .banner-bg-left,
    .banner-bg-right,
    .banner-bg-top,
    .banner-bg-bottom,
    .banner-bg-top-left,
    .banner-bg-top-right,
    .banner-bg-bottom-left,
    .banner-bg-bottom-right
    {
        max-width: 180px;
        max-height: 240px;
    }





    .footer-cols
    {
        flex-direction: column;
        gap: 100px;
    }
}

@media (max-width: 1024px)
{
    .post-row-to-col
    {
        flex-wrap: wrap;
        gap: 50px;
    }

    .post-row-to-col-full
    {
        /*margin: auto;*/
        /*align-items: center;*/
        flex-wrap: wrap;
        gap: 0;
        /*flex: 0;*/
    }

    .post-row-to-col-full .post-ultra-title
    {
        font-size: 48px;
    }

    .post-row-to-col-full .post-item
    {
        width: auto;
        margin: auto;
    }

    .post-item-half
    {
        width: 100%;
    }

    .flex-row-to-col
    {
        gap: 25px;
    }

    .reverse-pos
    {
        order: 1;
    }
}

@media (max-width: 960px)
{
    #body-grid
    {
        grid-template-rows: 64px 1fr;
    }

    #header
    {
        height: 64px;
        grid-template-areas: 
            "logo mobilenav"
            "nav nav"
        ;
        grid-template-rows: 64px 1fr;
        grid-gap: 0;
        align-items: center;
    }

    .mobile-header
    {
        height: 100vh !important;
        background-color: var(--dark-brown);
    }

    #logo-container
    {
        height: 100%;
        /*padding: 0;*/
    }

    #logo
    {
        width: auto;
        height: 100%;
        max-height: 64px;
    }

    #logo-mobile
    {
        max-height: 48px;
    }

    #nav
    {
        height: 100%;
        margin-bottom: auto;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: overlay;
        -webkit-overflow-scrolling: touch;
    }

    .nav-items
    {
        width: auto;
        height: auto;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1;
        display: none;
    }

    #mobile-nav
    {
        display: flex;
    }

    .nav-show
    {
        display: flex !important;
    }

    .nav-hide
    {
        display: none !important;
    }

    #lang-nav
    {
        margin: 0;
    }

    .subnav
    {
        width: -webkit-fill-available;
        width: -moz-available;
        overflow: overlay hidden;
        -webkit-overflow-scrolling: touch;
    }

    .subnav-industrial
    {
        padding: 0 10px;
        top: 70px;
        /*bottom: calc(env(safe-area-inset-bottom) + 20px);*/
    }

    .sm-block
    {
        padding: 10px 15px;
        gap:  15px;
    }

    .sm-block-down
    {
        margin: auto;
        padding: 10px 20px;
        gap: 40px;
        bottom: 20px;
        left: 0;
        right: 0;
        color: var(--brown);
        border: 2px solid white;
        background-color: white;
    }





    .section-header-svg
    {
        top: calc(env(safe-area-inset-top) - 40px);
        /*top: -50px;*/
    }

    .section-footer-svg
    {
        /*position: fixed;*/
        /*bottom: -40px;*/
        /*bottom: 0;*/
    }

    .section-fixed-bottom
    {
        
        position: fixed;
        /*top: auto;*/
        bottom: -40px;
        /*bottom: auto;*/
    }

    .section-full
    {
        padding: 30px 20px;
        gap: 30px;
    }

    .section-banner-block-half{width: auto;}

    .section-banner-block
    {
        width: auto;
        margin: 0 20px;
    }

    .banner-blocks{flex-direction: column;}
    .banner-block
    {
        max-width: unset;
        margin: 20px;
    }





    .home-grid
    {
        padding: 0 20px;
        display: block;
        grid-gap: 20px;
    }

    .home-grid .full-banner
    {
        height: 90%;
        margin-bottom: 40px;
    }

    .home-sections
    {
        margin: 0;
        padding-bottom: calc(env(safe-area-inset-bottom) + 50px);
        flex-direction: column;
        gap: 50px;
    }

    .home-banner-btn
    {
        width: auto;
        margin: auto;
        justify-content: flex-end;
        position: absolute;
        bottom: 10px;
        right: 20px;
    }





    .banner-bg
    {
        /*object-position: right;*/
    }

    .banner-bg-products
    {

    }

    .banner-info-block
    {
        max-width: unset;
        width: auto;
        height: auto;
        padding: 20px;
        top: unset;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, transparent);
    }

    .banner-info
    {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .banner-info br
    {
        content: "";
    }

    .banner-info > br
    {
        display: none;
    }

    .banner-text
    {
        font-size: var(--main-text);
        font-family: montserrat-medium;
    }

    .banner-numbers
    {
        display: flex;
        gap: 10px;
        font-size: var(--second-text);
    }

    .banner-num
    {
        opacity: 0.25;
        transition: var(--transition);
    }

    .banner-num:hover, .banner-num-active
    {
        opacity: 1;
    }

    .swiper-pagination
    {
        width: auto !important;
        bottom: 10px !important;
        left: 20px !important;
    }

    .banner-logo
    {
        max-width: 180px;
    }

    .banner-bg-left,
    .banner-bg-right,
    .banner-bg-top,
    .banner-bg-bottom,
    .banner-bg-top-left,
    .banner-bg-top-right,
    .banner-bg-bottom-left,
    .banner-bg-bottom-right
    {
        max-width: 150px;
        max-height: 150px;
    }





    .timeline-group
    {
        padding-bottom: 50px;
    }

    .timeline-info-group
    {
        flex-direction: column;
    }

    .timeline-icon
    {
        width: 48px;
        height: 48px;
    }

    /*
    .timeline-img
    {
        width: -webkit-fill-available;
        width: -moz-fill-available;
    }
    */

    .timeline-text
    {
        width: auto;
    }





    .posts-grid
    {
        margin-bottom: 50px;
    }

    .post-features-options
    {
        flex-direction: column;
        align-items: flex-start;
        top: 0;
    }

    .post-info-extra
    {
        max-width: unset;
        width: -webkit-fill-available;
        width: -moz-fill-available;
    }

    .orange-outline
    {
        border: 8px solid var(--orange);
    }

    .banner-outline
    {
        border: 8px solid var(--orange);
    }





    .footer-cols
    {
        margin: auto 50px;
        gap: 50px;
    }
}

@media (max-width: 640px)
{
    .post-product
    {
        display: flex;
        align-items: center;
        border-radius: 25px;
    }

    .product-img, .product-img-c
    {
        max-width: 120px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }

    .product-info
    {
        width: calc(100% - 160px);
        height: auto;
        min-height: 75px;
        margin-left: auto;
        padding: 20px 20px 20px 80px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        top: 0;
        z-index: 0;
        text-align: left;
        border-radius: 25px;
    }
}

@media (max-width: 480px)
{
	
}

@media (max-width: 320px)
{

}

@media (prefers-color-scheme: light)
{
    :root
    {
        
    }
}

@media (prefers-color-scheme: dark)
{
    /*
    :root
    {
        --scroll-margin: inset 0 0 10px 10px rgba(255, 255, 255, 0.25);

        --bg1: #020321;
        --bg2: #020321;

        --text-color: #ccc;
        --selected-text: #ccc;
        --selected-bg: rgba(255, 255, 255, 0.10);

        --main-color: #ccc;
        --second-color: #ccc;
        --third-color: #ccc;
        --fourth-color: #ccc;
        --fifth-color: #333;

        --blue: #0b109e;
        --brown: #a3734f;
        --dark-brown: #5d2515;
        --skyblue: #80d3f9;
        --gray: #ccc;
        --gold: #dbb981;
        --cream: #f3eae1;
        --pink: #e0bde6;
    }

    .blue
    {
        color: #ccc !important;
    }

    .dark-brown
    {
        color: var(--brown) !important;
    }

    .white-bg
    {
        background-color: #000 !important;
    }

    .cream-bg
    {
        background-color: #333 !important;
    }

    .product-info
    {
        background-color: #333333;
    }

    .post-card
    {
        background-color: #333333;
    }

    .post-tag
    {
        background-color: #222;
    }
    */
}