/* Cannona CSS */

@font-face {
    font-family: 'Stag Sans Book';
    src: url('../fonts/StagSans-Book.woff2') format('woff2'),
        url('../fonts/StagSans-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stag Book';
    src: url('../fonts/Stag-Book.woff2') format('woff2'),
        url('../fonts/Stag-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stag Sans';
    src: url('../fonts/StagSans-Light.woff2') format('woff2'),
        url('../fonts/StagSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stag Sans';
    src: url('../fonts/StagSans-Medium.woff2') format('woff2'),
        url('../fonts/StagSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Stag Book', Arial, Helvetica, sans-serif, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Stag Sans Book', Arial, Helvetica, sans-serif, sans-serif;
    font-weight: normal;
}

ul {
    list-style-type: none;
}

header {
    height: 768px;
    background-image: url(../img/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

@media (max-width: 900px) {

    header {
        height: 600px;
    }
}

.navbar {
    /*
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    */
    background-color: transparent;
    padding: 20px 20px 0px;
    z-index: 999;
    transition: all .3s ease-in-out;
}

.navbar-container {
    width: 100%;
    max-width: 1070px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    position: relative;
}

.navbar.sticky {
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.9);
    padding: 20px 20px 0px;
    z-index: 999;
}

.navbar .logo {
    transition: all .3s ease-in-out;
}

.navbar.sticky .logo {
    max-width: 120px;
}

.menu {
    width: 100%;
    display: flex;
    position: relative;
}

.navbar.sticky .menu {
    padding-top: 0px;
}

.menu li a {
    display: inline-block;
    font-family: 'Stag Sans Book';
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    margin-right: 60px;
}

.menu li a::before {
    content:'';
    width: 0%;
    height: 2px;
    display: block;
    background-color: #D2BEA0;
    margin-bottom: 6px;
}

.menu li a:hover::before {
    width: 100%;
    transition: all .5s;
}

.lang-menu {
    position: absolute;
    right: 0;
    font-size: 16px;
    opacity: .5;
}

.icon {
    cursor: pointer;
    display: none;
}

.icon.close-btn {
    top: 20px;
    right: 30px;
    position: absolute;
}

.container {
    width: 100%;
    max-width: 1100px;
    padding: 0px 40px;
    margin: 0 auto;
}

@media (max-width: 1024px) {

    .menu {
        padding-top: 0px;
    }

}

@media (max-width: 900px) {

    body.disabledScroll {
        overflow: hidden;
    }

    .navbar {
        top: 0px;
    }

    .navbar-container {
        align-items: center;
        justify-content: space-between;
    }

    .lang-menu {
        position: unset;
        right: unset;
        font-size: 20px;
    }

    .icon {
        display: block;
        position: relative;
    }

    .icon.menu-btn {
        top: 5px;
    }

    .navbar.sticky .icon.menu-btn {
        top: 5px;
    }

    .icon.hide {
        display: none;
    }

    .menu {
        background: #000;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        display: block;
        padding: 40px 0px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        margin-top: 45px;
        margin-left: 50px;
    }

}

.header-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 125px auto 0;
    position: relative;
}

.header-title {
    font-size: 4.75em;
    color: #fff;
}

p.header-subtitle {
    font-size: 1.5em;
    color: #fff;
    max-width: 532px;
    margin-bottom: 90px;
    opacity: .8;
}

.arrow-icon {
    display: block;
    width: 40px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

@media (max-width: 900px) {

    .header-title {
        font-size: 2.75em;
    }

}

@media (max-width: 768px) {

    .header-title {
        font-size: 2.5em;
    }

}

@media (max-width: 480px) {

    p.header-subtitle {
        font-size: 1.3em;
        line-height: 28px;
        opacity: .8;
    }

}

@media (max-width: 420px) {

    .header-title {
        font-size: 2em;
    }

    p.header-subtitle {
        margin-bottom: 40px;
    }

}

p {
    font-size: 1.5em;
    line-height: 34px;
}

h2 {
    font-size: 3em;
    margin-bottom: 24px;
}

@media (max-width: 480px) {

    p {
        font-size: 1em;
        line-height: 22px;
    }

    h2 {
        font-size: 2em;
    }

}

#partners {
    padding: 60px 20px 100px;
}

#partners .section-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    color: #fff;
}

/* boje */

.gold-txt {
    color: #D2BEA0;
}

.gold-bg {
    background-color: #D2BEA04D;
}

.green-txt {
    color: #004420;
}

.green-txt.light {
    opacity: 0.8;
}

.green-bg {
    background-color: #004420;
}

.partners-grid {
    width: 100%;
    max-width: 750px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    align-items: center;
    place-items: center;
}

.partners-grid img {
    transition: all .3s;
}

.partners-grid img:hover {
    opacity: .7;
}

@media (max-width: 768px) {

    .partners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        row-gap: 10px;
    }    

    .partners-grid img {
        margin-bottom: 35px;
    }

}

@media (max-width: 480px) {

    #partners {
        padding: 50px 0;
    }

    .partners-grid {
        margin: 40px auto 0;
    }

}


#brands {
    padding: 40px 20px;
}

#brands .section-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    color: #484848;
}

.brands-grid {
    width: 100%;
    max-width: 750px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brands-grid.col-4 {
    grid-template-columns: 1fr 1fr;
}

.brands-grid img {
    transition: all .3s;
}

.brands-grid img:hover {
    opacity: .7;
}

@media (max-width: 768px) {

    .brands-grid.col-4 {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    #brands {
        padding: 50px 0;
    }
    
}

#products {
    padding: 40px 0 0;
}

.products-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    color: #484848;
}

.txt-small {
    font-size: 20px;
}

@media (max-width: 480px) {

    .txt-small {
        font-size: 1em;
    }

}

.products-banner {
    width: 100%;
    max-width: 1366px;
    margin: 100px auto 30px;
}

.products-banner img {
    width: 100%;
    height: auto;
}


.visual-bg {
    background-image: url("../img/pattern.svg");
    background-repeat: no-repeat;
    background-position-x: 100%;
}

.visual-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
}

@media (max-width: 1220px) {

    .visual-bg {
        background-image: url("../img/pattern-small.svg");
        background-repeat: no-repeat;
        background-position-x: 100%;
        background-size: 317px 130px;
        padding: 0 20px;
    }

}

@media (max-width: 768px) {

    .products-banner {
        width: 100%;
        max-width: 1366px;
        margin: 80px auto 30px;
    }

    .visual-container {
        padding-top: 140px;
    }

}

@media (max-width: 480px) {

    .visual-bg {
        padding: 0;
    }

    .products-banner {
        width: 100%;
        max-width: 1366px;
        margin: 40px auto 30px;
    }


}

#hemp-snack {
    margin: 90px 0px 0;
    padding: 40px 20px 50px;
}

.hemp-snack-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    color: #484848;
}

#hemp-snack h2 {
    font-size: 2.25em;
    font-weight: bold;
}

#hemp-tea {
    padding: 40px 20px 0px;
}

.hemp-tea-container {
    width: 100%;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    color: #484848;
}

#hemp-tea h2 {
    font-size: 2.25em;
    font-weight: bold;
}

.products-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.products-grid img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    #hemp-snack {
        padding: 40px 0px 50px;
    }

    #hemp-tea {
        padding: 40px 0px 0px;
    }
    
}

footer {
    font-family: 'Stag Sans Book', Arial, Helvetica, sans-serif, sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    transition: all .3s ease-in;
}

footer h2 {
    font-size: 2.25em;
    font-weight: bold;
    margin-top: 0;
}

footer p {
    font-size: 1em;
    line-height: 16px;
    margin: 12px 0;
}

.contact-info {
    position: relative;
    left: -90px;
}

a.email {
    font-family: 'Stag Sans';
    font-size: 1.562em;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 35px;
}

a.email:hover {
    opacity: .8;
}

ul.footer-menu {
    margin: 0;
    padding: 0;
    position: relative;
    top: 20px;
    left: -40px;
}

ul.footer-menu li {
    margin-bottom: 20px;
}

ul.footer-menu li a {
    text-decoration: none;
    color: #004420;
    font-size: 20px;
}

ul.footer-menu li a:hover {
    text-decoration: underline;
}

footer .column {
    padding: 100px 0;
    height: 100%;
}

footer .column.c1,
footer .column.c2,
footer .column.c3 {
    background: url(../img/footer-bg.svg);
    background-repeat: repeat-y;
    background-position-x: center;
}

@media (max-width: 1300px) {

    footer .column.c2 {
        background: none;
    }

    .contact-info {
        left: 0;
    }

}

@media (max-width: 960px) {

    footer .column.c3 {
        background: none;
    }

    ul.footer-menu {
        left: 0;
        margin-left: 40px;
    }

}

@media (max-width: 768px) {

    footer .column.c1 {
        display: none;
    }

    ul.footer-menu {
        top: -50px;
        left: 0;
        margin-left: 0;
    }

    footer {
        grid-template-columns: 1fr;
        padding: 30px 40px 0;
        background: url(../img/footer-bg.svg);
        background-repeat: repeat-y;
        background-position-x: right;
    }

    footer .column {
        padding: 40px 0;
        height: auto;
    }

    footer .column.c3 {
        padding-bottom: 0;
    }

}

/* Scroll to top btn */
#scrollTop {
    display: none; /* Hidden by default */
    background-color: #8B8B8B;
    width: 50px;
    height: 50px;
    text-align: center;
    border: none;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    outline: none;
    cursor: pointer;
}
  
#scrollTop::-moz-focus-inner {
    border: 0;
}
  
#scrollTop:hover {
    background-color: #797979; 
}
  

