* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/*
colors __________________________________

#EFF0F2 - solitude - light grey
#D12027 - fire engine red - bright red
#000 - black
#fff - white

fonts ____________________________________

font-family: work-sans, sans-serif;
font-weight: 400;
font-style: normal;

font-family: work-sans, sans-serif;
font-weight: 700;
font-style: normal;
*/

@font-face {
    font-family: Afrah-light;
    src: url("fonts/Afrah-Light.ttf");
}
@font-face {
    font-family: Afrah-regular;
    src: url("fonts/Afrah-Regular.ttf");
}
@font-face {
    font-family: Afrah-bold;
    src: url("fonts/Afrah-Bold.ttf");
}

body {
    background-color: #EFF0F2;
    font-family: work-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding-top: 5px;
    font-size: 100%;
}

h1 {
    font-weight: normal;
    font-family: Afrah-regular, serif;
    font-size: 3.125em;
}

h2 {
    font-size: 1.875em;
}

p {
    font-size: 1em;
}

a {
    text-decoration: none;
    color: #000;
}

header {
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header img {
    width: 110px;
}

nav {
    width: 30%;
    display: flex;
    justify-content: space-between;
    font-size: 0.75em;
}

nav a {
    padding-bottom: 5px;
}

nav .current {
    border-bottom: solid 2px #D12027;
}

nav a:hover {
    border-bottom: solid 2px #000;
}

.menu, #navigation {
    display: none;
}

.lang {
    border-left: 1px solid #cecece;
    padding: 0 0 0 15px;
}

.lang:hover {
    border-bottom: none;
    text-decoration: underline;
    color: #D12027;
}

footer {
    background-image: url("img/paper_strip01_footer.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 150px;
    padding-top: 150px;
    overflow: hidden;
    position: relative;
}

.content {
    position: relative;
    margin-top: 5px;
    overflow: hidden;
    min-height: 90vh;
    width: 75%;
    margin: auto;
    padding-bottom: 50px;
}

.home-content {
    width: 100%;
    max-height: 100vh;
}

.offset-border-straight {
    width: 100%;
    display: inline-block;
    position: relative;
}

.offset-border-straight img {
    display: block;
    width: 100%;
}

.top-content, .top-content-about {
    margin: 100px 0 130px 10%;
    position: relative;
}

/* body:before {
    content: "";
    background-image: url("img/paper_strip02-2.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    width: 50%;
    height: 25%;
    left: 0;
    top: 0;
    z-index: -2;
}*/

.top-content h1 {
    font-size: 35pt;
    margin-bottom: 30px;
}

.top-content p {
    width: 57%;
    line-height: 21px;
    font-size: 1.125em;
}

.strong-red {
    color: #D12027;
}

.video {
    width: 75%;   
    position: relative;
    z-index: 2;
    margin: auto;
    height: auto;
}

.title {
    width: 75%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.title h1 {
    font-size: 2em;
}

.title p, .top-content-story p {
    font-feature-settings: 'swsh';
}

.title div {
    background-image: url("img/paper_strip01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 850px;
    height: 200px;
    right: -347px;
    top: -135px;
    transform: rotate(-33.77deg);
    z-index: 1;
    padding: 90px 0 0 0;
    margin: 0 0 0 auto;
}

.title span {
    display: block;
    transform: rotate(33.77deg);
}

.button, .icons-info img {
    position: relative;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 12px 37px;
    color: #fff;
    font-family: Afrah, serif;
}

.button:after, .icons-info span:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 102%;
    height: 107%;
    background-color: #D12027;
    border-radius: 50px;
    right: 3px;
    top: 6px;
    z-index: -1;
    transition: all .2s ease-in-out;
}

.button:hover:after {
    right: -0.5px;
    top: -1px;
}

.button:hover {
    text-decoration: underline;
    cursor: pointer;
}

.container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.main-info {
    width: 80%;
    align-items: flex-end;
    margin-bottom: 150px;
}

.main-info > div {
    width: 35%;
    padding-bottom: 25px;
}

h2, h3 {
    margin-bottom: 15px;
}

.main-info img {
    width: 40%;
}

.specifications {
    display: flex;
    width: 50%;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #000;
    margin: 50px auto 100px auto;
    text-align: center;
    justify-content: space-around;
}

.specifications span p:first-child {
    font-weight: bold;
    margin: 0 0 10px 0;
}

.specifications span p:last-child {
    font-size: 0.875em;
}

.icons-info div {
    width: 20%;
    text-align: center;
}

.icons-info span, .top-content span {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
}

.icons-info span:after {
    width: 100%;
    height: 100%;
    background-color: #D12027;
    border-radius: 100%;
    right: 8px;
    top: 7px;
    z-index: -1;
}

.icons-info img {
    width: 150px; 
    height: 150px;   
    border: 2px solid #000;
    border-radius: 100%;
    padding: 20px;
}

.top-content-about {
    display: flex;
    align-items: flex-end;
}

.top-content-about div {
    margin-right: 40px;
}

.top-content-about h1 {
    margin-bottom: 10px;
}

.offset-border-straight:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 99%;
    height: 99%;
    border: solid 3px #D12027;
    right: 13px;
    top: 15px;
    z-index: -1;
}

.border-right:after {
    right: -14px;
}

.about-container {
    width: 80%;
    justify-content: space-between;
    padding: 0 0 30px 0;
}

.history, .winemaker {
    width: 46%;
    margin-top: 50px;
}

.history p, .winemaker p {
    margin-bottom: 20px;
}

.winemaker .button {
    display: inline-block;
    margin-top: 10px;
}

.top-content-story {
    width: 100%;
    margin: 100px 0;
}

.top-content-story img {
    display: block;
    width: 70%;
    margin: auto;
}

.top-content-story p {
    padding: 10px 0 0 44%;
}

.story-container {
    width: 80%;
    margin: auto;
}

.story-container .container {
    justify-content: space-between;
}

.intro-story .offset-border-straight, .pouch-know-more .offset-border-straight {
    width: 45%;
}

.intro-story {
    align-items: center;
}

.mind-blowing, .ecologic {
    display: block;
}

.mind-blowing {
    text-align: center;
}

.mind-blowing div {
    margin: auto;
}

.story-text {
    width: 45%;
    padding: 50px 0;
}

.pouch-know-more {
    align-items: flex-end;
}

.pouch-know-more .story-text {
    padding-bottom: 90px;
}

.pouch-know-more .button {
    display: inline-block;
    margin: 50px 0 0 0;
}

.story-container .offset-border-straight {
    margin-bottom: 70px;
}

.footer-content {
    display: flex;
    width: 75%;
    margin: auto;
    padding: 0px 30% 80px 0;
    position: relative;
}

.footer-links {
    display: flex;
}

.footer-links a:hover {
    color: #D12027;
    text-decoration: underline;
}

.footer-links div {
    padding-top: 33px;
}

.footer-links .site-map {
    margin: 0 80px;
}

.footer-content img {
    width: 20%;
    height: fit-content;
}

#elephant-footer {
    opacity: 0.2;
    width: 450px;
    height: auto;
    position: absolute;
    right: -120px;
    bottom: 20px;
}

.footer-content a {
    display: block;
    margin-bottom: 18px;
    font-size: 0.875em;
    text-align: left;
}

.footer-copy {
    text-align: center;
    font-size: 0.75em;
    padding: 0 0 30px 0;
}

.newsletter {
    width: 60%;
    margin: 0 auto 80px auto;
}

.newsletter h2 {
    font-weight: normal;
    font-family: Afrah-regular, serif;
    font-size: 2.8em;
    text-align: center;
}

.newsletter p {
    width: 325px;
    margin: auto;
}

.newsletter .button {
    background-color: #D12027;
    margin: 30px 0 10px 0;
    width: 330px;
    font-weight: normal;
    font-family: Afrah-regular, serif;
    font-style: normal;
    font-size: 1.3em;
}

.newsletter .clear:last-of-type {
    text-align: center;
}

form > p {
    font-size: 0.85em;
    color: #999;
    text-align: center;
}

/* .email {
    padding: 15px;
    text-align: center;
    border-radius: 50px;
    color: #000;
    border: none;
    background: #EFF0F2;
}*/

/* --------- media queris ---------- */
@media (max-width: 1300px) {
    .home-content {
        max-height: 90vh;
    }
}

@media (max-width: 1200px) {
    nav {
        width: 40%;
    }
}

@media (max-width: 1100px) {
    .title {
        width: 100%;
    }

    .title div, .title span {
        position: unset;
        transform: none;
    }

    .title .button {
        z-index: 1;
    }

    .title div {
        padding: 70px 0 0 0;
        margin: auto;
        width: 100%;
        background-size: 100% 80%;
    }

}

@media (max-width: 1000px) {
    nav {
        width: 60%;
    }

    .top-content, .top-content-about {
        margin: 100px 0 130px 0;
    }

    .main-info {
        width: 90%;
    }

    .specifications {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .icons-info {
        display: block;
    }

    .icons-info div {
        width: 50%;
        margin: auto;
        margin-bottom: 100px;
    }

    .main-info {
        width: 100%;
    }

    .story-container {
        width: 100%;
    }

    .mind-blowing {
        padding-left: 14px;
    }

    .ecologic {
        padding-right: 14px;
    }

    .footer-content img {
        width: 30%;
    }

    .footer-links .site-map {
        margin: 0 40px;
    }
}

@media (max-width: 780px) {
    .main-info {
        flex-direction: column-reverse;
        align-items: center;
        margin-bottom: 100px;
    }

    .main-info > div {
        width: 95%;
    }

    .main-info img {
        width: 60%;
        margin-bottom: 70px;
    }

    .top-content p {
        width: 100%;
    }

    .about-container {
        width: 100%;
        padding: 0 0 30px 18px;
    }

    #elephant-footer {
        display: none;
    }

    .newsletter .button {
        width: 330px;
    }

    .footer-content {
        display: block;
        width: 80%;
        padding: 0 0 80px 0;
    }

    .footer-content img {
        width: 30%;
        height: auto;
    }

    .footer-links .site-map {
        margin: 0 80px 0 0;
    }

    .footer-links {
        width: 70%;
        justify-content: space-between;
    }

    .footer-content a {
        margin-bottom: 25px;
    }
}

@media (max-width: 680px) {
    .top-content-about {
        width: 90%;
        margin: 100px 0 0 auto;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .about-content {
        width: 100%;
    }

    .about-content .offset-border-straight {
        width: 94%;
        align-self: flex-end;
        margin-bottom: 50px;
    }

    .about-container {
        width: 90%;
        margin: auto;
        display: block;
    }

    .history, .winemaker {
        width: 100%;
    }

    .history {
        margin-top: 80px;
    }

    .history .offset-border-straight {
        margin-top: 30px;
    }

    .winemaker {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    header {
       width: 85%;
    }
    
    nav {
        display: none;
    }

    footer {
        margin-top: 60px;
    }

    footer a {
        margin-bottom: 25px;
    }

    .menu {
        display: block;
        z-index: 50;
    }

    .menu img {
        width: 45px;
    }

    #navigation {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        width: 100vw;
        height: 100vh;
        background-color: #D12027;
        color: #fff;
        text-align: center;
        padding-top: 50%;
    }

    #navigation li {
        list-style-type: none; 
        margin-bottom: 40px;
        font-size: 1.5em;
    }

    #navigation li a {
        color: #fff;
    }

    .lang {
        border-left: none;
        border-top: 1px solid #cecece;
        padding: 10px 15px 0 15px;
    }

    .video {
        width: 100%;
    }

    .story-content {
        width: 100%;
    }

    .top-content-story {
        width: 90%;
        margin: 100px auto 60px auto;
    }

    .top-content-story p {
        width: 85%;
        padding: 0;
        margin: 20px auto;
        text-align: center;
    }

    .top-content-story img {
        width: 100%;
    }

    .intro-story {
        width: 90%;
        margin: 0 0 0 auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-story .offset-border-straight {
        width: 80%;
        align-self: flex-end;
    }

    .story-text {
        width: 90%;
    }

    .ecologic .story-text {
        margin: 0 0 0 auto;
        padding: 65px 5% 65px 0;
    }    

    .ecologic .offset-border-straight {
        margin: 0 auto 0 0;
        width: 90%;
    }

    .pouch-know-more {
        flex-direction: column;
    }

    .pouch-know-more .story-text {
        margin: 0 0 0 auto;
        padding-right: 5%;
    } 
    
    .pouch-know-more .offset-border-straight {
        margin: 0 auto 0 0;
        width: 90%;
    }

    .mind-blowing .offset-border-straight:after {
        display: none;
    }

    .specifications {
        width: 100%;
    }

    .newsletter {
        width: 80%;
    }

    .mind-blowing, .ecologic {
        padding-left: 0;
        padding-right: 0;
    }

    .ecologic {
        margin-bottom: 110px;
    }
}

@media (max-width: 440px) {
    .newsletter p, .newsletter .button {
        width: 100%;
        text-align: center;
    }

    .newsletter p {
        margin: unset;
    }
}