
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&family=Lexend+Giga:wght@100;200;300;400;500;600;700;800;900&family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

/* Root */
:root {
    --global-padding: 30px;
    --cinza-0: #33464F;
    --cinza-1: #455A64;
    --cinza-2: #546E7A;
    --cinza-25: #576F7A;
    --cinza-3: #78909C;
    --cinza-4: #B0BEC5;
    --cinza-5: #EFF2F3;
    --cinza-6: #EAEAEA;
    --azul:#391CEB;
    --rosa:#D500F9;
    --global-secondary-color: darkviolet;
    --bg-color: #FFF;
    --link-color: dodgerblue;
    --hover-color: deeppink;
    --border-color: #B0BEC5;
    --font-size: 16px;
}
/* RESET START*/
html {
    background-color: var(--bg-color);
    color: var(--cinza25);
}
  
html {
    font-size: var(--font-size);
    font-family: 'Source Serif Pro', serif;
    line-height: 1.5;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
}

html {
    box-sizing: border-box;
}
html{
    height: 100%;
}
body {
    height: 100%;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
}


img,
video {
height: auto;
max-width: 100%;
}

ul {
list-style: none;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
display: block;
}
/* RESET END */
.p-main-info-images.desktop-only {
    display: block;
}
.p-main-info-images.mobile-only {
    display: none;
}


/* HEADER START */
.header {
    height: 94px;
    background-color: #FFF;
}
.template-homepage .header {
    background-image: url("../images/altwines_frontpage.a2a2b091d8b7.jpg");
    background-size: auto, auto, cover;
    height: 70vh;
    background-repeat:no-repeat;
    background-position: center center;
}
.navbar-wrapper {
    display: block;
    width: 1220px;
    margin: 0px auto;
}
.navbar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 58px 0 0 0;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--cinza-2);
}
.hamburger.active .bar {
    color: #fff;
    background-color: #FFF;
}
.template-homepage .bar {
    color: #fff;
    background-color: #FFF;
}
.nav-link{    
    color: #FFF;
    font-family: 'Courier Prime', monospace;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: underline;
}
.nav-link.selected {
    font-family: 'Lexend Deca', sans-serif;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 7px;
    color: #FFF;
}
.nav-link:hover{
    color: var(--cinza-3);
    background-color: #FFF;
}
.nav-link.selected:hover{
    color: #FFF;
    background-color:transparent;
}
.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--cinza-2);
    opacity: 0.95;
    width: calc((100% - 1170px)/2);
    min-width: 490px;
    text-align: left;
    padding-left: calc((100% - 1170px)/2);
    height: calc(70vh);
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-menu.active {
    left: 0;
}

.nav-item {
    margin: 21px 0;
}
.nav-item.first {
    padding-top: calc(58px + 48px);
}
.hamburger-wrapper {
    display: flex;
    flex-direction: row;
    z-index: 1005;
}
.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1000;
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.hamburger-label {
    padding: 4px 25px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 16px;
    z-index: 10;
    cursor:pointer;
}
.hamburger-label {
    color: var(--cinza-2);
}
.hamburger-label .active {
    color: #FFF;
}
.template-homepage .hamburger-label {
    color: #fff;
    z-index: 1000;
}
.hamburger-label .menu-open {
    display: block;
}
.hamburger-label.active .menu-open {
    display: none;
}
.hamburger-label .menu-close {
    display: none;
}
.hamburger-label.active .menu-close {
    display: block;
    color: #FFF;
    z-index:1000;
}

/* FOOTER START */
#footer {
    margin-top: auto;
    background-color: #FFF;
    color: black;
    width: 100%;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-wrapper {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, minmax(370px,1fr));
    grid-auto-rows: auto;
}
.f1 {}
.footer-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-nav {
    display: grid;
    grid-gap: 30px;
    grid-row-gap: 35px;
    grid-template-columns: repeat(2, minmax(170px,1fr));
    grid-auto-rows: auto;
}
.f-link-block {
}
.f-link-block a,
.f-link-block a:visited {
    font-family: 'Lexend Deca', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--cinza-2);
    text-decoration: underline;
    letter-spacing: 1.4px;
}
.f3 {}
#footer svg {
    height: 34px;
}
#footer .social-links{

}
#footer .social-links{
    width: 205px;
    padding: 68px 0 60px;
    display: grid;
    grid-gap: 60px 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    align-items: start;
}
#footer .social-links .social-wa {
    justify-self: self-end;
    padding-right: 5px;
}
#footer .social-links a{
    display: block;
}
#footer .social-links a.tw-logo svg {
    width: 33px;
}
#footer .social-links a.ig-logo svg {
    width: 33px;
}
#footer .social-links a.wa-logo svg {
    width: 34px;
}
#footer .social-links svg {
    fill:var(--cinza-1);
}
#footer h1.big {
    margin-top: auto;
    font-family: 'Courier Prime', monospace;
    font-size: 26px;
    color: var(--cinza-0);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 16px;
}
#footer h1.big .altwines_w {
    border-bottom: 2px solid var(--cinza-0);
    display: inline-block;
}
.footer-signature {
    background-image: url("../images/altw_final_rot15_grey.2cb0ce87b703.svg");
    background-repeat:no-repeat;
    background-position: top 30px right;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
}
.footer-company,
.footer-contacts {
    text-align: center;
}
.footer-company {
    font-family: 'Lexend Giga', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 29px;
    color: var(--cinza-3);
}
.footer-contacts {
    font-family: 'Courier Prime', monospace;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    margin: 29px 0 37px 0;
    color: var(--cinza-3);
}
.footer-country {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cinza-2);
}
.footer-aveiro {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--cinza-2);
}
/* FOOTER END */

/* ALTWINES */
.fonts {
    font-family: 'Courier Prime', monospace;
    font-family: 'Lexend Deca', sans-serif;
    font-family: 'Lexend Giga', sans-serif;
    font-family: 'Source Serif Pro', serif;
}
/* ALTWINES END */

/* LAYOUT START */
.section {
    display: block;
    width: 100%;
}
main {
    display: flex;
    padding: 0;
    flex-direction: column;
}
.section.home-recent-news {
    max-width: 1170px;
    padding: 71px 0 101px 0;
    margin: 0px auto;
}
.section.home-recent-news .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section.home-recent-news .button.find-our-wines {
    border: 1px solid var(--cinza-3);
}
.section.home-recent-news .button.find-our-wines:hover {
    background-color: var(--cinza-3);
    border-color: var(--cinza-3);
    cursor: pointer;
}
.divider-wp {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}
.divider {
    width: 71px;
    height: 1px;
    border-bottom: 1px solid var(--cinza-4);
    margin-top: 38px;
    margin-bottom: 30px;
}
.footer-signature .divider{
    margin-top: 68px;
    margin-bottom: 40px;
}
/* LAYOUT END */

/* PRODUCERS LIST START */
.section#producers-header {
    max-width: 1170px;
    padding: 0 0 10px 0;
    margin: 0px auto;
    background-color: #fff;
}
.title-logo-link {
    display: flex;
    flex-direction: row;
}

.section#producers .container {
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.section#producers {
    padding: 0 0 101px 0;
    margin: 0px auto;
    background-color: var(--cinza-5);
}
.section#producers .download-to-top {
    margin: 0 auto;
    padding-top: 101px;
}

.producers-list-header {
    display: flex;
    padding-top: 101px;
    width: 100%;
    align-items: center;
    flex-direction: column; 
}
#producers-header .header-logo {
    padding-right: 0;
}
#producers-header .header-logo-responsive {
    width: 220px;
}
.header-logo-desktop-only {
    display: block;
}
.header-logo-mobile-only {
    display: none;
}
.section#producers-header h2.title {
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 10px;
    padding-bottom: 40px;
    padding-left: 180px;
}
.section#producers-header .intro {
    font-family: 'Source Serif Pro', serif;
    font-size: 22px;
    line-height: 1.5;
    max-width: 667px;
    text-align: center;
    color: var(--cinza-25);
    padding-left: 180px;
}
#producers-list ul {
    padding-top: 40px;
    display: grid;
    grid-gap: 40px 30px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    align-items: start;
}
#producers-list ul li{
    background-color: white;
}
#producers-list ul a {
    text-decoration: none;
}
.producer-list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px 40px 10px;
}
.producer-list-header .appellations {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 2.5;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cinza-2);
    text-decoration: none;
}
.producer-list-header .title {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 1;
    padding: 10px 0;
    color: var(--cinza-0);
    text-decoration: none;
}
.producer-list-header .main-location {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 2.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-3);
    text-decoration: none;
}

/* PRODUCERS LIST END */

/* PRODUCER START */
.section#producer {
    max-width: 1170px;
    padding: 0px 0 101px 0;
    margin: 0px auto;
}
.producer-header .title-logo-link {
    width: 100%;
    text-align: center;
}
.producer-meta-header {
    flex-grow: 1;
    padding-top: 62px;
}
.producer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}
.producer-header .header-logo{
    padding-right: 0px;
}
.producer-header .appellations {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 2.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cinza-25);
    text-decoration: none;
    padding-left: 180px;
}
.producer-header .title {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 1;
    padding-top: 23px;
    padding-bottom: 23px;
    letter-spacing: 7px;
    word-spacing: -10px;
    text-transform: uppercase;
    color: var(--cinza-0);
    text-decoration: none;
    text-align: center;
    padding-left: 180px;
}
.producer-header .title a {
    text-decoration: none;
    color: var(--cinza-0);
}
.producer-header .main-location {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-3);
    text-decoration: none;
    padding-left: 180px;
}

.producer-main-info {
    margin-top: 80px;
    display: flex;
    flex-direction: row-reverse;
}
.news-main {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-main-info-text {
    width: 43%;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-main  .p-main-info-text {
    width: 67%;
    padding-left: 0px;
}
.p-main-info-images {
    width: 57%;
    display: block;
}
.news-main .p-main-info-images {
    width: 100%;
}
h2.p-about {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-1);
}
.p-about-text {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.6;
    color: var(--cinza-25);
    padding: 15px 0 30px 0;
}
.p-about-text p {
    margin-bottom: 20px;
}
.p-main-info-text .read-more__link {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 2;    
    letter-spacing: 2px;
    text-decoration-line: underline;
    color: var(--cinza-0);
    text-transform: uppercase;
}
.producer-main-info .overview {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.producer-main-info .overview-text {
    font-family: 'Source Serif Pro', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 34px;
    line-height: 1.5;    
    letter-spacing: 2px;
    color: var(--cinza-2);
    padding-bottom: 30px;
    text-align: center;
}
.producer-main-info .overview-label {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-4);
}
.p-wines {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 67px 0 50px 0;
}
.wines-list ul {
    display: grid;
    grid-gap: 40px 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    justify-items: center;
}
.wines-list ul a {
    text-decoration: none;
}
.wines-list .wine-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}
.wines-list .wine-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding-top: 20px;
}
.wine-header .title {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 1;
    text-align: center;
    letter-spacing: 1px;
    color: var(--cinza-1);
}
.wine-header .variety {
    font-family: 'Lexend Deca', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    padding: 10px 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cinza-3);
}
.wine-header .appellation {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--cinza-1);
}
.country-map {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.country-map figure {
    padding-bottom: 40px;
}
.country-map-label {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 2.67;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-1);
    padding: 40px 0 20px 0;
}
.p-main-info-text .info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}
.p-main-info-text .info-block ul {
    text-align: center;
}
.p-main-info-text .info-block li {
    padding:10px;
}
.info-block .label {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10.5px;
    line-height: 3.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-3);
}
.info-block .text {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.75;    
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--cinza-0);
}
.p-main-info-text .website a {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    line-height: 2.5;    
    letter-spacing: 2px;
    text-decoration-line: underline;
    color: var(--cinza-0);
    text-transform: uppercase;
}
.p-main-info-text .website {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
/* PRODUCER END */

/* DOWNLOADS START */
.section.downloads {
    padding: 70px 0 100px 0;
    width: 100%;
    background-color: var(--cinza-5);
}
.downloads-wrapper {
    width: 890px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.download-cols{
    width: 890px;
    padding-top: 40px;
    display: grid;
    grid-gap: 100px 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    align-items: start;
}
.col-producer,
.col-sheet,
.col-bottle {
    text-align: center;
}
.downloads-wrapper h2 {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-1);
}
.download-all-files {
    padding: 34px 0 37px 0;
}
.download-cols .label {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10.5px;
    line-height: 3.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-3);
    padding-bottom: 16px;;
}
.download-cols ul a {
    font-family: Source Serif Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 2;
    color: var(--cinza-0);
}
.download-all-files a {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cinza-2);
}

/* DOWNLOADS END */

/* WINE START */
.section#wine {
    max-width: 1170px;
    padding: 0px 0 101px 0;
    margin: 0px auto;
}
.wine-body {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
}
.wine-left {
    width: 66%;
    display: flex;
    flex-direction: column;
}
.wine-right {
    width: 34%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-wine-header .title {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 42px;
    line-height: 1;
    letter-spacing: 4.3px;
    color: var(--cinza-1);
}
.main-wine-header .description {
    font-family: 'Lexend Deca', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 2.4;
    padding: 16px 0 10px 0;;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cinza-3);
}
.main-wine-header .appellation {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: var(--cinza-1);
}
.wine-details {
    display: flex;
    align-items: flex-start;
    margin-top: 80px;
}
.wine-bottle {
    flex: 0 0 270px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
}
.info-block.info-details {
    flex: 1 1 470px;
}
.info-block.info-details li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 10px 0 30px 0;
    border-top: 1px solid var(--cinza-4);
}
.info-block.info-details .label {
    line-height: 2;
    flex: 0 0 170px;
}
.info-block.info-details .text {
    text-align: left;
}
.wine-right .info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}
.wine-right .info-block ul {
    text-align: center;
}
.wine-right .info-block li {
    padding:10px;
}
.wine-right .website a {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    line-height: 2.5;    
    letter-spacing: 2px;
    text-decoration-line: underline;
    color: var(--cinza-0);
    text-transform: uppercase;
}
.wine-right .website {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.section.overview {
    width: 100%;
    display: flex;
}
.section.overview .left {
    width: calc(((100vw - 1170px) / 2) + 800px);
    background-color: var(--cinza-4);
    display: flex;
    justify-content: flex-end;
    padding: 62px 0px 62px 0px;
}
.section.overview .left .label {
    flex: 0 1 700px;
    padding-right: 100px;
    text-align: center;
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-1);
}
.section.overview .left .text {
    flex: 0 1 700px;
    padding-top: 20px;
    padding-right: 100px;
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.6;
    color: var(--cinza-0);
}

.section.overview .right {
    width: calc(((100vw - 1170px) / 2) + 370px);
    background-color: var(--cinza-25);
    display: flex;
    justify-content: flex-start;
    padding: 62px 0px 62px 0px;
}
.overview-wrapper {
    width:800px;
}
.ratings-wrapper {
    width:200px;
    align-self: flex-start;
    padding-left: 70px;
}
.ratings-wrapper h2 {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 2;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-5);
}
.ratings-wrapper .metric {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 72px;
    line-height: 1;
    padding: 27px 0 13px 0;
    text-align: center;
    letter-spacing: 1.5px;
    color: var(--cinza-4);
}
.ratings-wrapper .text {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--cinza-5);
}
.ratings-wrapper .label {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.75;
    padding-top: 10px;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--cinza-4);
}

/* WINE END */

/* TRADE START */
.section#trade {
    max-width: 1170px;
    padding: 0px 0 10px 0;
    margin: 0px auto;
    background-color: #fff;
}
.trade-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trade-header .title-logo-link {
    width: 100%;
    text-align: center;
}
.trade-meta-header {
    flex-grow: 1;
    padding-top: 62px;
}
.section#trade h2.title {
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 10px;
    padding-bottom: 40px;
    padding-left: 180px;
}
.section#trade .intro {
    max-width: 667px;
}
.trade-header .header-logo {
    padding-right: 0;
    height: 180px;
}
.section#trade  .read-more__link {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 2px;
    text-decoration-line: underline;
    color: var(--cinza-0);
    text-transform: uppercase;
}
.trade-sticky-header {
    display: grid;
    grid-template-columns: 1fr minmax(55px, 120px) minmax(55px, 120px) minmax(55px, 120px) minmax(55px, 120px);
    grid-auto-rows: 70px;
    grid-gap: 0px;
    align-items: center;
    border-top: 2px solid var(--cinza-1);
    border-bottom: 1px solid var(--cinza-1);
    margin-top: 58px;
    position: sticky;
    top: 0;
    background-color: #FFF;
}
.trade-sticky-header .lable {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 9px;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--cinza-3);
    text-transform: uppercase;
    padding: 8px;
}
.trade-sticky-header .lable.first {
    text-align: left;
}
.trade-producer-wrapper {
    border-top:1px solid var(--cinza-1);
    padding-top: 4px;

}
.trade-producer-header {
    background-color: var(--cinza-1);
    padding: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.trade-producer-header a {
    color: var(--cinza-5);
}
.trade-producer-name {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;   
}
.trade-producer-info,
.trade-producer-all {
    font-family: 'Source Serif Pro', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    width: 50%;    
}
.trade-producer-all {
    text-align: right; 
}

.trade-producer-wine:nth-child(even){background: var(--cinza-5);}
.trade-producer-wine:nth-child(odd) {background: #FFF;}

.trade-producer-wine {
    display: grid;
    grid-template-columns: 1fr minmax(55px, 120px) minmax(55px, 120px) minmax(55px, 120px) minmax(55px, 120px);
    grid-auto-rows: 70px;
    grid-gap: 0px;
    align-items: center;
    justify-items: center;
}
.trade-producer-wine > div {
    padding: 8px;
}
.trade-producer-wine > div:first-child{
    justify-self: left;
}
.trade-producer-wine a {
    font-family: sans-serif;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: var(--cinza-1);
}

/* TRADE END */

/* HEADER CONTENT START */
.hero {
    display: none;
}
.template-homepage .hero {
    height: 100%;
    display: flex;
    margin: 0 auto;
    width: 1220px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.header-logo {
    align-self: flex-end;
    padding-right: 15px;
    height: 250px;
}
.header-logo-responsive {
    width: 180px;
    height: auto;
}
h1.big {
    margin-top: auto;
    font-family: 'Courier Prime', monospace;
    font-size: 72px;
    color: #fff;
    letter-spacing: 24px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 42px;
}
h1.big .altwines_w {
    border-bottom: 3px solid white;
    display: inline-block;
}
.button {
    font-size: 16px;
    padding: 16px 30px;
    background-color: #fff;
    font-family: 'Lexend Deca', sans-serif;
    color: var(--cinza-0);
    text-transform: uppercase;
}
.button:hover {
    background-color: var(--cinza-3);
    border-color: var(--cinza-3);
    cursor: pointer;
}
.button.find-our-wines {
    margin: 68px 0 200px 0;
}
.home-recent-news .button.find-our-wines {
    margin: 68px 0 0 0;
}

.button.find-our-wines a {
    text-decoration: none;
    color: var(--cinza-0);
}
.button.find-our-wines:hover a {
    color: #FFF;
}
/* HEADER CONTENT END */

/* HOME START */
h3.section-label {
    font-family: 'Lexend Giga', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3.5px;
    color: var(--cinza-1);
}
h2.title {
    font-family: 'Courier Prime', monospace;
    font-size: 34px;
    line-height: 1;
    color: var(--cinza-0);
    font-weight: 400;
    text-align: center;
}
.higlight-description {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.6;
    color: var(--cinza-25);
    max-width: 60%;
    margin-top: 32px;
    text-align: center;
}
.section.feature-posts {
    padding: 70px 0 100px 0;
    width: 100%;
    background-color: var(--cinza-5);
}
.feature-posts-wrapper {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-posts-wrapper h2 {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cinza-1);
    padding-top: 28px;
}
.feature-posts-list ul {
    width: 1170px;
    padding-top: 20px;
    padding-bottom: 100px;
    display: grid;
    grid-gap: 40px 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    align-items: start;
}
.feature-posts-list ul li {
    background-color: #FFF;
    text-align: center;
}
.feature-posts-list ul a {
    text-decoration: none;
}
.feature-posts-list ul a.read-more {
    font-family: 'Courier Prime', monospace;
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 2px;
    text-decoration-line: underline;
    color: var(--cinza-0);
    text-transform: uppercase;
    display: block;
    padding: 10px 0 60px 0;
}
.feature-post-list-header {
    padding: 10px;
}
.feature-post-list-header .date {
    font-family: 'Lexend Giga', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 2.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cinza-3);
}
.feature-post-list-header .title {
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 1;
    padding: 10px 20px 20px 20px;
    color: var(--cinza-0);
}
.feature-post-list-header .text {
    font-family: 'Source Serif Pro', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.5px;
    color: var(--cinza-25);
    text-decoration: none;
}
/* HOME END */






/* MEDIA TABLET START */
@media all and (max-width: 1440px) {
    :root {
        --global-padding: 16px;
    }
    .higlight-description {
        max-width: 60%;
    }
    .navbar-wrapper {
        width: 1020px;
    }
    .template-homepage .hero {
        width: 1020px;
    }
    .nav-menu {
        width: calc((100% - 970px)/2);
        min-width: 490px;
        padding-left: calc((100% - 970px)/2);
        height: calc(70vh);
    }
    .section.home-recent-news {
        max-width: 970px;
    }
    .section#producers-header {
        max-width: 970px;
    }
    .section#producers .container {
        max-width: 970px;
    }
    .section#producer {
        max-width: 970px;
    }
    .section#wine {
        max-width: 970px;
    }
    .section.overview .left {
        width: calc(((100vw - 970px) / 2) + 700px);
    }
    .section.overview .left .label {
        flex: 0 1 600px;
    }
    .section.overview .left .text {
        flex: 0 1 600px;
    }
    .section.overview .right {
        width: calc(((100vw - 970px) / 2) + 270px);
    }
    .overview-wrapper {
        width:800px;
    }
    .ratings-wrapper {
        width:200px;
    }
    .feature-posts-wrapper,
    .feature-posts-list ul {
        width: 970px;
    }

    /* FOOTER START */

    .footer-wrapper {
        grid-gap: 0;
        grid-template-columns: 1fr;
    }
    .footer-nav {
        grid-gap: 16px;
        grid-row-gap: 34px;
        grid-template-columns: repeat(2, 1fr);
    }


    /* FOOTER END */
}
/* MEDIA TABLET END */







/* MEDIA MOBILE */

@media all and (max-width: 960px) {
    :root {
        --global-padding: 16px;
    }
    .p-main-info-images.desktop-only {
        display: none;
    }
    .p-main-info-images.mobile-only {
        display: block;
    }
    .header-logo-desktop-only {
        display: none;
    }
    .header-logo-mobile-only {
        display: block;
    }


    /* FROM  1440 */
    .navbar-wrapper {
        width: 100%;
    }
    .template-homepage .hero {
        width: 100%;
    }
    .nav-menu {
        width: calc((100% - 970px)/2);
        min-width: 490px;
        padding-left: calc((100% - 970px)/2);
        height: calc(70vh);
    }
    .section.home-recent-news {
        max-width: calc(100vw - 32px);
    }
    .section#producers-header  {
        max-width: calc(100vw - 32px);
    }
    .section#producers .container {
        max-width: calc(100vw - 32px);
    }
    .section#producer {
        max-width: calc(100vw - 32px);
    }
    .section#wine {
        max-width: calc(100vw - 32px);
    }
    .section.overview {
        width: calc(100vw);
        flex-direction: column;
        margin: 0px auto;
    }
    .section.overview .left {
        max-width: calc(100vw);
        width: calc(100vw);
        justify-content: center;
    }
    .section.overview .left .label {
        flex: 0 1 100%;
        padding-right: 0px;
    }
    .section.overview .left .text {
        flex: 0 1 100%;
        padding-right: 0px;
        font-size: 14px;
        line-height: 1.75;
    }
    .section.overview .right {
        max-width: calc(100vw);
        width: calc(100vw);
        justify-content: center;
    }
    .overview-wrapper {
        max-width: 85%;
    }
    .ratings-wrapper {
        max-width:85%;
        padding-left: 0px;
    }
    .feature-posts-wrapper,
    .feature-posts-list ul {
        width: 344px;
    }
    .feature-posts-list ul {
        width: 344px;
        grid-template-columns: 1fr;
    }
    /* FROM 1440 END */

    .feature-posts-wrapper h2 {
        font-size: 12px;
        letter-spacing: 3.5px;
    }

    header {
        height: 75vh;
        min-height: 0;
    }
    .header {
        height: 80px;
    }
    .header-logo-responsive {
        max-width: 110px;
    }
    .hero {
        width:100%;
    }
    .navbar-wrapper {
        width: 87%;
        padding: 0 30px;
    }
    .navbar {
        padding: 48px 0 0 0;
    }
    .bar {
        display: block;
        width: 20px;
        height: 2px;
        margin: 4px auto;
    }
    .hamburger-label {
        font-size: 12px;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .nav-menu {
        width: 100%;
        height: 75vh;
        min-height: 75vh;
        left: -200%;
    }
    .nav-item {
        padding: 0 30px;
    }
    h1.big {
        font-size: 35px;
        letter-spacing: 6px;
        line-height: 25px;
    }
    h1.big .altwines_w {
        border-bottom: 2px solid white;
    }
    .button {
        font-size: 12px;
        padding: 10px 20px;
    }
    .section.home-recent-news {
        padding: 52px 15px 67px 15px;
    }
    .higlight-description {
        max-width: 100%;
    }
    /* HOME START */
    h3.section-label {
        font-size: 12px;
    }
    h2.title {
        font-size: 24px;
    }
    .higlight-description {
        font-size: 11px;
        line-height: 3.3;
    }
    .higlight-description p {
        font-size: 14px;
        line-height: 1.75;
    }
    .feature-post-list-header .date {
        font-size: 11px;
        line-height: 1;
        letter-spacing: 0.5px;
        padding: 0px 20px 15px 20px;
    }
    .feature-post-list-header .title {
        font-size: 24px;
        line-height: 1;
        padding: 10px 20px 20px 20px;
    }
    .feature-post-list-header .text {
        font-size: 14px;
        line-height: 1.75;
        letter-spacing: 0.5px;
    }
    .feature-posts-list ul a.read-more {
        font-size: 14px;
        line-height: 2.5;
        padding: 10px 0 40px 0;
    }
    .divider {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    /* HOME END */
    .section#producers-header {
        padding: 0px 0 10px 0;
    }
    .section#producers-header .title-logo-link {
        flex-direction: column-reverse;
    }
    .section#producers-header h2.title {
        font-size: 28px;
        letter-spacing: 6px;
        padding-bottom: 30px;
        padding-left: 0px;
    }
    .section#producers-header .intro {
        font-size: 16px;
        line-height: 1.5;
        max-width: 85%;
        text-align: center;
        color: var(--cinza-25);
        padding-left: 0px;
    }
    #producers-list ul {
        padding-top: 30px;
        grid-gap: 30px 16px;
        grid-template-columns: 1fr;
    }
    .producers-list-header {
        padding-top: 40px;
    }
    .producer-list-header {
        padding: 15px 10px 20px 10px;
    }
    .producer-list-header .appellations {
        font-size: 14px;
        line-height: 2.5;
        letter-spacing: 1.5px;
    }
    .producer-list-header .title {
        font-size: 24px;
        line-height: 1;
        padding: 10px 0;
    }
    .producer-list-header .main-location {
        font-size: 11px;
        line-height: 3.3;
    }
    .producer-header .title-logo-link {
        flex-direction: column-reverse;
    }
    .producer-header .appellations {
        font-size: 14px;
        line-height: 2.5;
        letter-spacing: 1.5px;
        padding-left: 0;
    }
    .producer-header .title {
        font-size: 28px;
        line-height: 1;
        padding-top: 23px;
        padding-bottom: 23px;
        letter-spacing: 6px;
        padding-left: 0;
    }
    .producer-header .main-location {
        font-size: 11px;
        line-height: 2.3;
        padding-left: 0;
    }
    #producers-header .header-logo,
    #producer .header-logo,
    #wine .header-logo,
    #trade .header-logo {
        height: auto;
    }
    .trade-header .title-logo-link {
        flex-direction: column-reverse;
    }
    /* FOOTER START */
    #footer {
        padding-bottom: 68px;
    }
    .footer-wrapper {
        grid-gap: 0;
        grid-template-columns: 1fr;
    }
    .footer-nav {
        grid-gap: 16px;
        grid-row-gap: 22px;
        grid-template-columns: repeat(2, 1fr);
    }
    .f-link-block a,
    .f-link-block a:visited {
        font-size: 12px;
    }
    .divider {
        width: 48px;
    }
    #footer svg {
        height: 25px;
    }
    #footer .social-links{
        padding: 60px 0 44px;
        width: 150px;
    }
    #footer .social-links a{
        display: block;
    }
    #footer .social-links a.tw-logo svg {
        width: 11.25;
        height: 25px;
    }
    #footer .social-links a.ig-logo svg {
        width: 25px;
        height: 25px;
    }
    #footer .social-links a.wa-logo svg {
        width: 25px;
        height: 25px;
    }
    #footer h1.big {
        font-size: 19px;
        letter-spacing: 3px;
        line-height: 15px;
    }
    #footer h1.big .altwines_w {
        border-bottom: 1.5px solid var(--cinza-0);
    }
    .footer-signature {
        background-image: url("../images/altw_final_rot15_grey_98.48c229af6ce4.svg");
        width: 130%;
    }
    .footer-company {
        font-size: 10px;
        line-height: 18px;
        margin-top: 16px;
    }
    .footer-contacts {
        font-size: 13px;
        line-height: 16px;
    }
    .footer-country,
    .footer-aveiro {
        font-size: 13px;
    }
    /* FOOTER END */

    /* PRODUCER START */
    .section#producer {
        padding: 0px 16px 50px 16px;
        margin: 0px
    }
    .producer-main-info {
        margin-top: 0px;
        display: flex;
        flex-direction: column;
    }
    .about .p-about {
        display: none;
    }
    .p-about-text {
        font-size: 16px;
        line-height: 1.5;
        padding: 15px 0 30px 0;
    }
    .p-main-info-text .read-more__link {
        font-size: 14px;
        line-height: 2.5;    
        letter-spacing: 2px;
    }
    .producer-main-info .overview-text {
        font-size: 24px;
        line-height: 1.4;    
        letter-spacing: 1.5px;
        padding-bottom: 30px;
    }
    .producer-main-info .overview-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .p-main-info-text {
        width: 100%;
        padding-left: 0px;
    }
    .p-main-info-images {
        width: 100%;
    }
    .wines-list ul {
        grid-gap: 40px 30px;
        grid-template-columns: 1fr;
    }
    .wine-header .title {
        font-size: 28px;
    }
    .wine-header .variety {
        font-size: 12px;
        line-height: 3;
        letter-spacing: 2px;
    }
    .wine-header .appellation {
        font-weight: 600;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
    .downloads-wrapper {
        width: 100%;
    }
    .download-cols{
        width: 100%;
        padding-top: 40px;
        grid-gap: 100px 30px;
        grid-template-columns: 1fr;
    }
    /* PRODUCER END */
    .section.downloads {
        padding:52px 0px 67px 0px;
    }
    /* WINE START */
    .section#wine {
        max-width: calc(100vw - 32px);
        padding: 0px 0 101px 0;
        margin: 0px auto;
    }
    #wine .producer-meta-header {
        display: none;
    }

    .wine-body {
        margin-top: 0px;
        flex-direction: column;
    }
    .wine-left {
        width: 100%;
        flex-direction: column;
    }
    .wine-right {
        width: 100%;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-wine-header {
        text-align: center;
    }
    .main-wine-header .title {
        font-size: 28px;
        letter-spacing: 6px;
    }
    .main-wine-header .description {
        font-size: 16px;
        line-height: 1;
        padding: 16px 0 0px 0;;
        letter-spacing: 1px;
    }
    .main-wine-header .appellation {
        display: none;
    }
    .wine-details {
        display: flex;
        align-items: center;
        margin-top: 60px;
        flex-direction: column;
    }
    .wine-bottle {
        flex: 0 0 calc(100vw - 32px);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        align-content: flex-start;
    }
    .info-block.info-details {
        flex: 1 1 470px;
        margin-top: 20px;
    }
    .info-block.info-details li {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
        padding: 10px 0 30px 0;
        border-top: 1px solid var(--cinza-4);
    }
    .info-block.info-details .label {
        line-height: 2;
        flex: 0 0 170px;
    }
    .info-block.info-details .text {
        text-align: left;
    }
    .wine-right .info-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 270px;
    }
    .wine-right .info-block ul {
        text-align: center;
    }
    .wine-right .info-block li {
        padding:10px;
    }
    .wine-right .website a {
        font-family: 'Courier Prime', monospace;
        font-style: italic;
        font-weight: normal;
        font-size: 14px;
        line-height: 2.5;    
        letter-spacing: 2px;
        text-decoration-line: underline;
        color: var(--cinza-0);
        text-transform: uppercase;
    }
    .wine-right .website {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .ratings-wrapper .text {
        font-size: 10px;
    }
    /* TRADE START */
    .section#trade {
        max-width: calc(100vw - 32px);
        padding: 0px 0 10px 0;
    }
    .trade-meta-header {
        padding-top: 0;
    }
    .section#trade h2.title {
        font-size: 28px;
        letter-spacing: 6px;
        padding-bottom: 30px;
        padding-left: 0px;
    }
    .section#trade .intro {
        max-width: calc(100vw - 32px);
        text-align: left;
    }
    .section#trade  .read-more__link {
        font-size: 14px;
        line-height: 2.5;
        letter-spacing: 2px;
    }
    .trade-sticky-header {
        grid-template-columns: 1fr minmax(50px, 50px) minmax(50px, 50px) minmax(50px, 50px) minmax(50px, 50px);

    }
    .trade-sticky-header .lable {
        font-size: 9px;
    }
    .trade-producer-name {
        font-size: 14px;
        line-height: 2.5;
        letter-spacing: 2px;
    }
    .trade-producer-info,
    .trade-producer-all {
        font-size: 13px;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    .trade-producer-wine {
        grid-template-columns: 1fr minmax(50px, 50px) minmax(50px, 50px) minmax(50px, 50px) minmax(50px, 50px);
    }
    .trade-producer-wine a {
        font-size: 13px;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    /* TRADE END */
    .nav-link{    
        font-size: 21px;
    }
    .nav-link.selected {
        font-size: 21px;
    }
    .news-main .p-main-info-text {
        width: 100%;
    }
}