:root {
    --c-green-soft: #D9ECE6;
    --c-green-light: #C4F6C9;
    --c-menu-opts: #80BE8D;
    --c-green-title: #408E6C;
    --c-green-initiative: #2A5F25;
    --c-prim: #2F4535;
    --c-sec: #80BA8F;
    --c-lg: #EBECEF;
    --c-gray: #EFEFEF;
    --c-lmg: #999;
    --c-mg: #666;
    --c-mdg: #5D5D5D;
    --c-dg: #333;
    --c-xdg: #080808;
    --c-blue: #76B1FB;
    --c-cream: #FAF6F3;
    --soft-green: #F2F2F0;
    --c-text: #3F3F3F;
    --c-sp: #B7B7CF;
    --c-disabled: #B5B5B5;
    --c-green: #39A74A;
    --c-success: #68C048;
    --c-error: #D00;
    --fw-100: 100;
    --fw-200: 200;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;
    --fw-thin: 100;
    --fw-xlig: 200;
    --fw-lig: 300;
    --fw-reg: 400;
    --fw-med: 500;
    --fw-sem: 600;
    --fw-bold: 700;
    --fw-xbold: 800;
    --fw-black: 900;
    --fs-min: 16px;
    --fs-small: 14px;
    --fs-big: 16px;
    --ls-small: .06em;
    --ls-big: .07em;
    --ar: 1;
    --w-8: 12.5%;
    --w-7: calc(100% / 7);
    --w-6: calc(100% / 6);
    --w-5: 20%;
    --w-4: 25%;
    --w-3: calc(100% / 3);
    --w-2: 50%;
    --w-1: 100%;
    --max-width: 1200px;
    --secpad: 4rem;
    --swpad: 15%;
    --min-sw: 20px;
    --ff-prim: 'Open Sans',sans-serif;
    --ff-sec: 'Playfair Display',serif;
    --ff-kids: 'Red-Angus',sans-serif;
    --base-c: var(--c-text);
    --base-ff: var(--ff-prim);
    --base-fs: var(--fs-big);
    --base-fw: var(--fw-med);
    --base-ls: var(--ls-small)
}

@media (max-width: 768px) {
    h1 {
        font-size:2.6em
    }

    h2 {
        font-size: 1.2em
    }
}

@media (max-width: 768px) {
    *::-webkit-scrollbar {
        display:none;
        width: 0
    }

    * {
        -ms-overflow-style: none;
        scrollbar-width: none
    }
}

@media(max-width: 520px) {
    :root {
        --base-fs:var(--fs-min)
    }
}

* {
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

body {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: 1800px;
    overflow-x: hidden;
    color: var(--base-c);
    font-family: var(--base-ff),sans-serif;
    font-size: var(--base-fs);
    font-weight: var(--base-fw);
    min-height: 100vh
}

img {
    max-width: 100%
}

ul {
    margin: 0
}

h1,h2,h3,h4,h5,p {
    margin: 0;
    margin-block-start:0;margin-block-end:0;margin-inline-start:0;margin-inline-end:0}

h1 {
    font-size: 2rem;
    color: var(--c-prim);
    font-weight: 800;
    font-family: var(--ff-sec);
    text-align: left
}

h2 {
    font-size: 1.6rem;
    color: var(--c-green-title);
    font-weight: 800;
    font-family: var(--ff-sec);
    text-align: left
}

h3 {
    font-size: 1.2rem;
    color: var(--c-green-title);
    font-weight: 700;
    font-family: var(--ff-sec);
    text-align: left
}

h4 {
    font-size: 1rem;
    color: var(--c-green-title);
    font-weight: 700;
    font-family: var(--ff-sec);
    text-align: left
}

h5 {
    font-size: 1rem;
    color: var(--c-green-title);
    font-weight: 700;
    font-family: var(--ff-sec);
    text-align: left
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer
}

a,button,input,select,textarea {
    font-family: inherit
}

iframe {
    border: none;
    overflow: hidden
}

button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit
}

section {
    position: relative
}

.content-wrapper {
    padding-top: calc(var(--h-menu) - 1px);
    min-height: 90vh
}

.bk-sec {
    background: var(--c-sec)
}

.bk-sg {
    background: var(--soft-green)
}

.bk-gray {
    background: var(--c-lg)
}

.br-brand {
    border: 2px solid var(--c-prim)
}

.pre-wrap {
    white-space: pre-wrap
}

.p-pre-wrap p {
    white-space: pre-wrap;
    margin-top: .8rem
}

.nowrap {
    white-space: nowrap
}

.ta-center {
    text-align: center
}

.pt-2 {
    padding-top: 2rem
}

.pt-3 {
    padding-top: 3rem
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 2rem
}

.mb-1 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 2rem
}

.w100 {
    width: 100%
}

.h100 {
    height: 100%
}

.pointer {
    cursor: pointer
}

.ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.rotate-180 {
    transform: rotate(180deg)!important
}

.w-100 {
    width: 100%
}

.block {
    display: block
}

.rel {
    position: relative
}

.abs {
    position: absolute
}

.hidden {
    display: none
}

.dissapear {
    display: none;
    visibility: hidden
}

.prevent-scroll {
    overflow-y: hidden
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.overlay-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1800;
    display: none
}

.overlay-screen.open {
    display: block
}

.of-cover {
    object-fit: cover
}

.bs-cover {
    background-size: cover
}

.circle {
    border-radius: 50%;
    overflow: hidden
}

.square {
    height: 0;
    padding-top: 100%
}

.sticky {
    position: sticky;
    top: var(--h-navbar);
    z-index: 100
}

@media (min-width: 993px) {
    .md-shown {
        display:none!important;
        visibility: hidden!important
    }
}

@media (min-width: 769px) {
    .sm-shown {
        display:none!important;
        visibility: hidden!important
    }
}

@media (max-width: 769px) {
    .sm-hidden {
        display:none!important;
        visibility: hidden!important
    }
}

@media (min-width: 577px) {
    .xs-shown {
        display:none;
        visibility: hidden
    }
}

@media (max-width: 576px) {
    .xs-hidden {
        display:none;
        visibility: hidden
    }
}

.sw {
    width: calc(100% - (2 * var(--swpad)));
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-width)
}

.padding-sub-title-1{
    padding-bottom: 20px;
}
.padding-title-1{
    padding-bottom: 100px;
}

.sec {
    padding-top: var(--secpad);
    padding-bottom: var(--secpad)
}

.su {
    padding-top: var(--secpad)
}

.sd {
    padding-bottom: var(--secpad)
}

.grid {
    --cgap: 2rem;
    --rgap: 2rem;
    display: grid;
    grid-template-columns: repeat(var(--cols),minmax(0,1fr));
    column-gap: var(--cgap);
    row-gap: var(--rgap)
}

.g1 {
    --cols: 1
}

.g2 {
    --cols: 2
}

.g3 {
    --cols: 3
}

.g4 {
    --cols: 4
}

.g5 {
    --cols: 5
}

.g6 {
    --cols: 6
}

.g7 {
    --cols: 7
}

.g8 {
    --cols: 8
}

.g9 {
    --cols: 9
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.flex.start,.gflex.start {
    justify-content: flex-start
}

.flex.end,.gflex.end {
    justify-content: flex-end
}

.flex.align,.gflex.align {
    align-items: center
}

.gflex {
    --cgap: 2rem;
    --rgap: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: calc((var(--cgap) / 2) * -1);
    margin-right: calc((var(--cgap) / 2) * -1)
}

.gflex>* {
    padding-left: calc(var(--cgap) / 2);
    padding-right: calc(var(--cgap) / 2)
}

.percent>:nth-child(1) {
    width: var(--w1)
}

.percent>:nth-child(2) {
    width: var(--w2)
}

.percent>:nth-child(3) {
    width: var(--w3)
}

.percent>:nth-child(4) {
    width: var(--w4)
}

.percent {
    --w1: 50%;
    --w2: 50%
}

.nocgap {
    --cgap: 0
}

.norgap {
    --rgap: 0
}

.nogap {
    --cgap: 0;
    --rgap: 0
}

.form-flex {
    display: flex;
    flex-wrap: wrap;
    --cgap: 20px
}

.f2>*,.gflex.g2>* {
    width: var(--w-2)
}

.f3>*,.gflex.g3>* {
    width: var(--w-3)
}

.f4>*,.gflex.g4>* {
    width: var(--w-4)
}

.f5>*,.gflex.g5>* {
    width: var(--w-5)
}

.f6>*,.gflex.g6>* {
    width: var(--w-6)
}

.f7>*,.gflex.g7>* {
    width: var(--w-7)
}

.f8>*,.gflex.g8>* {
    width: var(--w-8)
}

.f7,.f8 {
    --cgap: 12px
}

.vflex {
    display: flex;
    flex-direction: column
}

.flex.center,.vflex.center {
    justify-content: center;
    align-items: center
}

.flex.start {
    justify-content: start
}

.vflex.start {
    align-items: start
}

.flex.between {
    justify-content: space-between
}

.flex.nofwrap,.gflex.nofwrap {
    flex-wrap: nowrap
}

.flex-grow {
    flex-grow: 1
}

.gflex.g4>*:nth-child(n+5) {
    padding-top: var(--rgap)
}

.gflex.g3>*:nth-child(n+4) {
    padding-top: var(--rgap)
}

.gflex.g2>*:nth-child(n+3) {
    padding-top: var(--rgap)
}

.gflex.g1>*:nth-child(n+2) {
    padding-top: var(--rgap)
}

@media (max-width: 1400px) {
    :root {
        --swpad:10%
    }
}

@media (max-width: 1200px) {
    .flex.lg-4>* {
        width:var(--w-4)
    }

    .flex.lg-3>* {
        width: var(--w-3)
    }

    .flex.lg-2>* {
        width: var(--w-2)
    }

    .flex.lg-1>* {
        width: var(--w-1)
    }

    .grid.lg-4 {
        --cols: 4
    }

    .grid.lg-3 {
        --cols: 3
    }

    .grid.lg-2 {
        --cols: 2
    }

    .grid.lg-1 {
        --cols: 1
    }

    .gflex.lg-4>* {
        width: var(--w-3)
    }

    .gflex.lg-3>* {
        width: var(--w-3)
    }

    .gflex.lg-2>* {
        width: var(--w-2)
    }

    .gflex.lg-1>* {
        width: var(--w-1)
    }

    .gflex.lg-4>*:nth-child(n+5) {
        padding-top: var(--rgap)
    }

    .gflex.lg-3>*:nth-child(n+4) {
        padding-top: var(--rgap)
    }

    .gflex.lg-2>*:nth-child(n+3) {
        padding-top: var(--rgap)
    }

    .gflex.lg-1>*:nth-child(n+2) {
        padding-top: var(--rgap)
    }

    .lg-rev {
        flex-direction: column-reverse
    }
}

@media (max-width: 992px) {
    :root {
        --swpad:7%
    }

    .flex.md-4>* {
        width: var(--w-4)
    }

    .flex.md-3>* {
        width: var(--w-3)
    }

    .flex.md-2>* {
        width: var(--w-2)
    }

    .flex.md-1>* {
        width: var(--w-1)
    }

    .grid.md-4 {
        --cols: 4
    }

    .grid.md-3 {
        --cols: 3
    }

    .grid.md-2 {
        --cols: 2
    }

    .grid.md-1 {
        --cols: 1
    }

    .gflex.md-4>* {
        width: var(--w-4)
    }

    .gflex.md-3>* {
        width: var(--w-3)
    }

    .gflex.md-2>* {
        width: var(--w-2)
    }

    .gflex.md-1>* {
        width: var(--w-1)
    }

    .gflex.md-4>*:nth-child(n+5) {
        padding-top: var(--rgap)
    }

    .gflex.md-3>*:nth-child(n+4) {
        padding-top: var(--rgap)
    }

    .gflex.md-2>*:nth-child(n+3) {
        padding-top: var(--rgap)
    }

    .gflex.md-1>*:nth-child(n+2) {
        padding-top: var(--rgap)
    }

    .form-flex.md-1>:not(:first-child),.form-flex.md-1>:not(:last-child) {
        padding: 0
    }

    .md-rev {
        flex-direction: column-reverse
    }
}

@media (max-width: 768px) {
    :root {
        --swpad:5%;
        --secpad: 3rem
    }

    .flex.sm-4>* {
        width: var(--w-4)
    }

    .flex.sm-3>* {
        width: var(--w-3)
    }

    .flex.sm-2>* {
        width: var(--w-2)
    }

    .flex.sm-1>* {
        width: var(--w-1)!important
    }

    .grid.sm-4 {
        --cols: 4
    }

    .grid.sm-3 {
        --cols: 3
    }

    .grid.sm-2 {
        --cols: 2
    }

    .grid.sm-1 {
        --cols: 1
    }

    .gflex.sm-4>* {
        width: var(--w-4)
    }

    .gflex.sm-3>* {
        width: var(--w-3)
    }

    .gflex.sm-2>* {
        width: var(--w-2)
    }

    .gflex.sm-1>* {
        width: var(--w-1)
    }

    .gflex.sm-4>*:nth-child(n+5) {
        padding-top: var(--rgap)
    }

    .gflex.sm-3>*:nth-child(n+4) {
        padding-top: var(--rgap)
    }

    .gflex.sm-2>*:nth-child(n+3) {
        padding-top: var(--rgap)
    }

    .gflex.sm-1>*:nth-child(n+2) {
        padding-top: var(--rgap)
    }

    .form-flex.sm-1>:not(:first-child),.form-flex.sm-1>:not(:last-child) {
        padding: 0
    }

    .sm-rev {
        flex-direction: column-reverse
    }

    .g2.sm-rev>:nth-child(1) {
        order: 2
    }

    .g2.sm-rev>:nth-child(2) {
        order: 1
    }

    .w-sm-xs {
        width: 60%;
        margin: 0 auto;
        display: block
    }
}

@media (max-width: 576px) {
    :root {
        --swpad:var(--min-sw)
    }

    .grid,.gflex {
        --cgap: var(--swpad)
    }

    .flex.xs-4>* {
        width: var(--w-4)
    }

    .flex.xs-3>* {
        width: var(--w-3)
    }

    .flex.xs-2>* {
        width: var(--w-2)
    }

    .flex.xs-1>* {
        width: var(--w-1)!important
    }

    .gflex.xs-4>* {
        width: var(--w-4)
    }

    .gflex.xs-3>* {
        width: var(--w-3)
    }

    .gflex.xs-2>* {
        width: var(--w-2)
    }

    .gflex.xs-1>* {
        width: var(--w-1)!important
    }

    .grid.xs-4 {
        --cols: 4
    }

    .grid.xs-3 {
        --cols: 3
    }

    .grid.xs-2 {
        --cols: 2
    }

    .grid.xs-1 {
        --cols: 1
    }

    .gflex.xs-4>*:nth-child(n+5) {
        padding-top: var(--rgap)
    }

    .gflex.xs-3>*:nth-child(n+4) {
        padding-top: var(--rgap)
    }

    .gflex.xs-2>*:nth-child(n+3) {
        padding-top: var(--rgap)
    }

    .gflex.xs-1>*:nth-child(n+2) {
        padding-top: var(--rgap)
    }

    .form-flex.xs-1>* {
        width: 100%!important
    }

    .form-flex.xs-1>:not(:first-child),.form-flex.xs-1>:not(:last-child) {
        padding: 0
    }

    .xs-rev {
        flex-direction: column-reverse
    }

    .w-sm-xs {
        width: 100%
    }
}

.tag {
    color: var(--c-prim);
    font-weight: 800;
    font-size: .8rem
}

.anchor {
    position: absolute;
    bottom: 0;
    height: calc(100% + var(--h-menu));
    width: 1px
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--base-c);
    letter-spacing: 0
}

.breadcrumb a {
    color: var(--c-black);
    font-weight: var(--fw-bold)
}

.breadcrumb strong {
    color: var(--c-green)
}

.breadcrumb span {
    color: var(--c-lmg)
}

.breadcrumb>:nth-child(even) {
    margin: 0 8px;
    font-size: .8em
}

.nav-item {
    display: flex;
    align-items: center
}

.nav-item img~span {
    margin-left: .6em
}

.nav-item.login {
    font-size: .9em
}

@media (min-width: 993px) {
    .nav-item.login {
        flex-direction:column
    }

    .nav-item.login>span {
        display: block;
        margin-top: .2rem;
        margin-left: 0
    }
}

.nav-icons {
    display: flex;
    align-items: center
}

.nav-icons>* * {
    width: 100%
}

.nav-icons>*:not(:first-child) {
    margin-left: 12px
}

.close {
    --s: 26px;
    --b: 6px;
    --c: #000;
    --r: calc(1.4242 * 100%);
    width: var(--s);
    height: var(--s);
    position: relative
}

.close::after,.close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -21.21%;
    width: var(--r);
    height: var(--b);
    background: var(--c);
    border-radius: calc(var(--s) / 8)
}

.close::after {
    transform: translateY(-50%) rotate(45deg)
}

.close::before {
    transform: translateY(-50%) rotate(-45deg)
}

:root {
    --btn-shadow: 0px 0px 4px 4px rgba(0,0,0,.1)
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: .8em 1em;
    text-transform: uppercase;
    border-radius: .625em;
    font-weight: var(--fw-xbold);
    background: var(--c-sec);
    color: #FFF
}

.btn.hollow {
    background: transparent;
    color: var(--c-sec);
    transition: background-color .2s ease,color .2s ease;
    border: 2px solid var(--c-sec);
    box-shadow: var(--btn-shadow)
}

.btn.hollow:hover {
    background: var(--c-sec);
    color: #FFF
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 16px
}

.btn-wrapper.right .btn {
    width: 250px
}

.btn-wrapper.left {
    justify-content: flex-start
}

@media(max-width: 520px) {
    .btn-wrapper .btn {
        width:100%
    }

    .btn-wrapper.right .btn {
        width: 100%
    }
}

.btn-wrapper-grid .btn {
    display: block
}

.btn-wrapper-grid>:nth-child(3) .btn {
    visibility: hidden
}

@media(max-width: 992px) {
    .btn-wrapper-grid>:nth-child(3) .btn {
        visibility:visible
    }

    .btn-wrapper-grid>:nth-child(4) .btn {
        visibility: hidden
    }
}

@media(max-width: 768px) {
    .btn-wrapper-grid>:nth-child(3) .btn {
        visibility:hidden
    }

    .btn-wrapper-grid>:nth-child(4) .btn {
        visibility: visible
    }
}

.ar {
    position: relative;
    height: 0;
    padding-top: calc(1 / (var(--ar)) * 100%)
}

[data-video] {
    --ar: 16 / 9
}

.img-wrapper {
    position: relative;
    height: 0;
    padding-top: calc(1 / (var(--ar)) * 100%);
    overflow: hidden
}

.img-wrapper>img,.img-wrapper>picture,.img-wrapper>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.img-wrapper.ob-cover>img,.img-wrapper.ob-cover>picture {
    object-fit: cover
}

.img-wrapper.circle>img,.img-wrapper.circle>picture {
    border-radius: 50%
}

.iframe-wrapper {
    --ar: 16 / 9;
    position: relative;
    height: 0;
    padding-top: calc(1 / (var(--ar)) * 100%);
    overflow: hidden
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.slick-prev:focus-visible,.slick-next:focus-visible {
    box-shadow: 0 0 0 1px #000
}

.big-carousel div:not(.nh) {
    line-height: 0;
    height: 100%
}

.big-carousel div *:not(div) {
    line-height: initial
}

.big-carousel {
    --btn: 20px
}

.big-carousel .slick-list {
    margin-left: -2px;
    margin-right: -2px;
    overflow: hidden
}

.big-carousel .slick-prev {
    left: 0
}

.big-carousel .slick-next {
    right: 0
}

.big-carousel .slick-prev,.big-carousel .slick-next {
    width: var(--btn);
    height: var(--btn)
}

.big-carousel .slick-slide {
    position: relative
}

.small-carousel .slick-slide>div,.small-carousel .slick-slide>div>div {
    height: 100%
}

.small-carousel .item {
    height: 100%
}

[data-notify] {
    font-size: .85em;
    font-weight: 700;
    text-align: center;
    display: none;
    width: 100%;
    padding-top: 12px;
    white-space: pre-wrap
}

[data-notify].error {
    color: var(--c-error)
}

[data-notify].success {
    color: var(--c-success)
}

[data-notify].box {
    color: #FFF;
    padding: 10px
}

[data-notify].error.box {
    background: var(--c-error)
}

[data-notify].success.box {
    background: var(--c-success)
}

.ldr-dots {
    --dw: 10px;
    --pos: calc(var(--dw) * 0.7);
    --dur: 0.6s;
    position: relative;
    width: calc(var(--dw) * 6);
    height: var(--dw)
}

.ldr-dots div {
    position: absolute;
    top: 0;
    width: var(--dw);
    height: var(--dw);
    border-radius: 50%;
    background-color: var(--c-prim);
    animation-timing-function: cubic-bezier(0,1,1,0)
}

.ldr-dots div:nth-child(1) {
    left: var(--pos);
    animation: ldr-dots1 var(--dur) infinite
}

.ldr-dots div:nth-child(2) {
    left: var(--pos);
    animation: ldr-dots2 var(--dur) infinite
}

.ldr-dots div:nth-child(3) {
    left: calc(var(--pos) * 4);
    animation: ldr-dots2 var(--dur) infinite
}

.ldr-dots div:nth-child(4) {
    left: calc(var(--pos) * 7);
    animation: ldr-dots3 var(--dur) infinite
}

@keyframes ldr-dots1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes ldr-dots3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes ldr-dots2 {
    0% {
        transform: translate(0,0)
    }

    100% {
        transform: translate(calc(var(--pos) * 3),0)
    }
}

.ldr-disk {
    width: 50px;
    height: 50px;
    position: relative
}

.ldr-disk>div {
    --color: #000;
    --border: 10px;
    --speed: 1s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: var(--border) solid var(--color);
    border-left: var(--border) solid transparent;
    animation: spin var(--speed) linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

form[data-form]>h2 {
    margin-bottom: 16px;
    text-align: left;
    color: var(--base-c);
    font-weight: var(--fw-med)
}

form>p {
    margin-bottom: 16px
}

input[type="text"],input[type="tel"],input[type="email"],input[type="url"],input[type="password"],select,textarea,.input-green {
    outline: none;
    width: 100%;
    padding: 6px 12px;
    background: transparent;
    font-size: inherit;
    font-weight: var(--base-fw);
    border: 2px solid var(--c-sec);
    border-radius: .4rem
}

input:focus,select:focus,textarea:focus,input.has-error:focus,select.has-error:focus,textarea.has-error:focus {
    border-color: #000
}

label+input[type="text"],label+input[type="tel"],label+input[type="email"],label+input[type="url"],label+input[type="password"],label+select,label+textarea {
    width: 100%
}

input[type="text"],input[type="tel"],input[type="email"],input[type="url"],input[type="password"],select,.input-green {
    height: 2.6rem
}

.d-none{
    display: none;
}

textarea {
    resize: none
}

.margin-bottom-20{
    margin-bottom: 20px;
}

fieldset>:not(:first-child) {
    margin-top: .6em
}

input::placeholder,textarea::placeholder,select {
    color: var(--c-sec)
}

input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

select:hover {
    cursor: pointer
}

select:disabled {
    color: var(--c-disabled)
}

select option:disabled {
    display: none
}

form .thumb {
    border: 2px solid var(--c-gray);
    width: 170px;
    background-color: #FFF;
    background-image: linear-gradient(45deg,lightgray 25%,transparent 25%,transparent 75%,lightgray 75%,lightgray),linear-gradient(45deg,lightgray 25%,transparent 25%,transparent 75%,lightgray 75%,lightgray);
    background-size: 16px 16px;
    background-position: 0 0,8px 8px
}

form .thumb img {
    display: none
}

.checkbox,.radio {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.checkbox input,.radio input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.checkbox {
    margin-top: 16px;
    font-size: 1rem
}

.checkbox label {
    margin: 3px 0 0 0
}

.checkbox span {
    color: var(--base-c)
}

.checkbox input:focus-visible~label,.radio input:focus-visible~label {
    box-shadow: 0 0 0 1px #000
}

.checkbox input:checked:focus~label {
    border-color: var(--color-darkblue)
}

.checkbox .marker,.radio .marker {
    width: 1.6rem;
    height: 1.6rem;
    min-width: 1.6rem;
    position: relative;
    border: 1.5px solid var(--c-green);
    box-shadow: 2px 2px 2px rgba(255,255,255,.2);
    border-radius: 6px;
    margin-right: 16px
}

.checkbox .marker .check,.radio .marker .check {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 35%;
    height: 70%;
    border: solid var(--c-green-title);
    border-width: 0 3px 3px 0;
    opacity: 0
}

.checkbox input:checked~.marker .check,.radio input:checked~.marker .check {
    opacity: 1
}

.checkbox span a {
    text-decoration: underline
}

.checkmark {
    position: relative;
    transform: rotate(45deg);
    width: 12px;
    height: 24px
}

.checkmark .short {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    transition: width 150ms;
    background: #FFF
}

.checkmark .long {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 0;
    width: 5px;
    transition: height 150ms;
    transition-delay: 150ms;
    background: #FFF
}

.checkmark.animate .short {
    width: 100%
}

.checkmark.animate .long {
    height: 100%
}

.radio label {
    cursor: pointer
}

.radio input:not(:checked)~label {
    border: 2px solid transparent
}

.radio input:checked~label {
    border: 2px solid var(--c-prim)
}

.btn.file {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: none;
    text-align: left;
    padding: 0;
    color: var(--c-gray)
}

.btn.file.image {
    flex-direction: row
}

.btn.file.image div {
    display: flex;
    flex-direction: column;
    padding-left: 16px
}

.btn.file img {
    width: 30px
}

.btn.file span:first-of-type {
    margin-bottom: 4px
}

.btn.file.image span:first-of-type {
    color: #000
}

.btn.file:not(.image) span:first-of-type {
    margin-top: 16px
}

.btn.file span:nth-of-type(2) {
    font-size: .8em
}

.btn.file.image span:nth-of-type(2) {
    font-size: 1em
}

[data-filename] {
    color: var(--c-prim);
    margin-top: 8px
}

.shell {
    position: relative
}

.shell span {
    position: absolute;
    left: 3px;
    top: 1px;
    color: #ccc;
    pointer-events: none;
    z-index: -1
}

.shell span i {
    font-style: normal;
    color: transparent;
    opacity: 0;
    visibility: hidden
}

input.masked,.shell span {
    padding-right: 10px;
    background-color: transparent
}

.form-flex>:not(:first-child) {
    padding-left: 8px
}

.form-flex>:not(:last-child) {
    padding-right: 8px
}

.form-flex>* {
    display: flex;
    flex-direction: column
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 1.2em;
    font-weight: var(--fw-bold);
    border: none;
    color: var(--c-prim);
    text-align: center
}

.lbl-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 6px 0
}

label {
    cursor: pointer
}

form label,form .label {
    font-weight: var(--fw-med);
    font-size: 1.1em;
    cursor: pointer
}

.lbl-cnt .optional,.lbl-cnt .optional {
    color: gray;
    font-size: .9em
}

.newsletter-form input {
    border-color: var(--c-success)
}

input.has-error,select.has-error,textarea.has-error {
    border-color: var(--c-error)
}

[data-label].has-error {
    border: none;
    color: var(--c-error)!important
}

[data-label].has-error::after {
    content: '\00a0*'
}

:root {
    --h-navbar: 5rem;
    --h-menu: var(--h-navbar);
    --nav-pad: 1.2em
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1600
}

#menu .current-nav>a,#menu .current-nav>button,#menu .current-nav>span {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: .4em;
    color: #C4F6C9;
}

.menu-active{
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: .4em;
    color: #C4F6C9;
}

.navbar {
    position: relative;
    height: var(--h-navbar);
    color: var(--c-menu-opts);
    background: var(--c-prim);
    margin: 0 auto
}

.navbar .inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 3
}

.navbar .inner-head {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: right;
    background-color: #FFF;
    height: var(--h-navhead)
}

.inner-head form {
    width: 35%
}

.nav-list {
    display: flex;
    height: 100%;
    letter-spacing: var(--ls-big);
    font-size: .8em
}

.nav-list * {
    font-weight: var(--fw-xbold)
}

.nav-list>li {
    position: relative;
    display: block;
    height: 100%
}

.nav-list>li>*:not(ul) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    white-space: nowrap
}

.nav-list>li>*:not(ul) {
    padding: 0 var(--nav-pad)
}

.nav-list:nth-child(1)>li>*:not(ul) {
    padding: 0
}

.nav-list:nth-child(3)>li:last-child>*:not(ul) {
    padding-right: 0
}

.nav-list .arrow {
    position: absolute;
    cursor: pointer;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(-21deg) skewX(45deg) scaleY(0.70711)
}

.nav-list .submenu {
    color: var(--c-prim);
    background: var(--c-menu-opts);
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    visibility: hidden
}

.nav-list .submenu.open {
    display: block;
    visibility: visible
}

.nav-list .submenu li>* {
    padding: var(--nav-pad);
    white-space: nowrap
}

.btn-search img {
    width: 26px
}

.btn-navbar {
    height: 100%;
    align-items: center;
    justify-content: center
}

.btn-cart img {
    width: 28px
}

.btn-navbar img {
    width: 30px;
    height: 22px
}

.btn-cart .count {
    border-radius: 8px;
    padding: 4px 6px;
    font-size: .8em;
    background: var(--c-prim);
    color: #FFF;
    position: absolute;
    top: 2px;
    right: -2px
}

#menu .arrow {
    display: none
}

@media (max-width: 992px) {
    :root {
        --h-navbar:3.6rem
    }

    .nav-list:nth-child(2),.nav-list:nth-child(3) {
        display: none;
        visibility: hidden
    }

    .nav-list img {
        max-height: 80%;
        object-position: left;
        object-fit: contain;
        width: auto!important;
        height: 80%
    }
}

#sidenav {
    z-index: 1400;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    color: #FFF;
    height: 0;
    transition: height .3s;
    visibility: hidden
}

#sidenav.open {
    height: 100%
}

#sidenav.visible {
    visibility: visible
}

#sidenav * {
    font-family: var(--ff-prim)
}

#sidenav-toggler .close,#sidenav-toggler.open img {
    --c: #fff;
    display: none;
    visibility: hidden
}

#sidenav-toggler.open .close,#sidenav-toggler img {
    display: block;
    visibility: visible
}

#sidenav>* {
    height: 100%;
    padding-top: var(--h-menu);
    background: var(--c-prim);
    display: flex;
    flex-direction: column
}

#sidenav .content {
    padding: 1.6rem 0;
    flex-grow: 1
}

#sidenav .list * {
    font-weight: 600
}

#sidenav .list li>*:not(.submenu) {
    padding: 1rem 0;
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center
}

#sidenav .list .nav-item {
    width: 100%
}

#sidenav .arrow {
    --s: .4em;
    --c: #FFF;
    width: 0;
    height: 0;
    border-left: var(--s) solid transparent;
    border-right: var(--s) solid transparent;
    border-top: calc((var(--s) * 2) * .866) solid var(--c);
    margin-left: auto
}

#sidenav .submenu {
    display: none;
    visibility: hidden
}

#sidenav .submenu.show {
    display: block;
    visibility: visible
}

footer {
    --sp: 4px;
    color: #FFF;
    font-size: .9em;
    background: var(--c-prim)
}

footer h5 {
    color: #FFF;
    font-family: var(--base-ff)
}

footer .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 0 48px 0;
    margin-right: -20px
}

footer .lists>* {
    margin-top: 36px;
    padding-right: 20px;
    flex-grow: 1
}

footer h5 {
    padding: 12px 0
}

footer .lists li a,footer .lists li span {
    word-break: break-word
}

footer .lists li {
    padding: var(--sp) 0
}

footer .nav-icons {
    min-width: 8rem;
    max-width: 12rem
}

footer img {
    max-width: 12rem
}

footer .lists .nav-icons:not(:first-child) {
    margin-top: 12px
}

footer .bottom {
    display: flex;
    justify-content: space-between;
    font-size: .9em;
    border-top: 1px solid #FFF;
    padding: 16px 0 12px 0
}

footer .bottom a:not(:last-child)::after {
    content: '|';
    padding: 0 10px
}

footer li.copy {
    padding-top: 48px
}

@media (max-width: 630px) {
    footer .lists li a[href*="mailto"] {
        white-space:pre-wrap;
        word-break: break-all
    }
}

@media (max-width: 576px) {
    footer {
        font-size:var(--fs-big)
    }

    footer .lists>* {
        flex-grow: 1
    }
}

.promo {
    background: #608C6D;
    opacity: .8;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: .4em 1em;
    color: #FFF
}

.header-cover {
    min-height: 8rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-style: italic;
    padding: 1.6em 0
}

.header-cover.bk * {
    color: #FFF
}

.header-cover .text-cont {
    position: relative
}

.header-cover .text-cont * {
    text-align: center
}

.header-title {
    line-height: .9em
}

.header-text {
    font-weight: var(--fw-sem);
    margin-top: .6em
}

.icon-title div {
    display: flex;
    justify-content: center
}

.icon-title img {
    width: 4em
}

.icon-title h2,.icon-title h1 {
    font-weight: 700;
    font-size: 1.2em;
    font-family: var(--ff-prim);
    text-align: center;
    font-style: normal;
    margin: .8em 0 1.2em 0
}

.blog-grid {
    --ar: 370 / 220;
    --rgap: var(--secpad)
}

.blog-grid h2 {
    font-size: 1.2em
}

.blog-grid li {
    display: flex;
    flex-direction: column;
    height: 100%
}

.blog-grid a img {
    border-radius: .6rem;
    overflow: hidden
}

.blog-grid .tag {
    margin-bottom: .8em
}

.blog-grid h3 {
    margin-bottom: 1rem
}

.blog-grid .intro {
    padding: 1em 0;
    margin-top: auto
}

.blog-grid p {
    --lines: 3;
    display: -webkit-box;
    line-clamp: var(--lines);
    box-orient: vertical;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines);
    min-height: calc(var(--lines) * 1.4em)
}

.blog-grid .btn {
    width: 100%;
    margin-top: auto;
    font-size: .9em
}

.article-params {
    display: flex;
    align-items: center;
    font-weight: var(--fw-sem);
    font-size: .85rem;
    color: var(--c-prim)
}

.article-params>*:not(:last-child)::after {
    content: 'I';
    padding: 0 .6em
}

.article-params img {
    width: .7em;
    margin-right: .2em
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--secpad)
}

.pagination ul {
    position: relative;
    margin-right: -10px
}

.pagination li>* {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px
}

.pagination li:not(.current) {
    border-bottom: 1px solid var(--c-gray)
}

.pagination .current {
    border-bottom: 3px solid var(--c-prim)
}

.pagination .disabled span {
    background: var(--c-disabled)
}

.pagination input {
    margin: 0 10px 0 0
}

.pagination label {
    padding: 0 10px
}

.pagination .dots {
    border: none;
    width: 18px
}

@media(max-width: 576px) {
    .pagination .arrow {
        display:none
    }
}

@media(max-width: 352px) {
    .pagination li>* {
        width:36px;
        height: 36px
    }
}

.like-bar {
    display: flex;
    justify-content: flex-end
}

.like-bar>* {
    padding: .6rem;
    background: var(--soft-green);
    margin-right: 1rem;
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em
}

.like-bar img {
    width: 1rem
}

[data-like] img {
    display: none;
    visibility: hidden
}

[data-like].fav .liked {
    display: block;
    visibility: visible
}

[data-like]:not(.fav) .not-liked {
    display: block;
    visibility: visible
}

.video-button {
    position: relative;
    width: 100%
}

.video-button .thumb {
    border-radius: .6rem
}

.video-button .icon {
    width: 20%
}

#video-player {
    --ar: 16 / 9;
    visibility: hidden;
    background: var(--c-prim);
    z-index: 2000;
    padding: 20px;
    display: flex;
    flex-direction: column
}

#video-player.open {
    visibility: visible
}

#video-player .close {
    --c: #FFF
}

#video-player .header {
    display: flex;
    justify-content: flex-end
}

#video-player .content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1
}

#video-player .video-cont {
    width: 100%;
    margin-top: -46px
}

#video-player .video {
    position: relative;
    height: 0;
    padding-top: calc(1 / (var(--ar)) * 100%)
}

#video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000
}

@media (orientation: landscape) {
    #video-player .video-cont {
        width:calc((100vh - 66px) * (16 / 9));
        margin-top: 0
    }
}


.descubre_post h1 {
    color: var(--c-green-title)
}

.descubre_post header {
    margin: 2rem 0 var(--secpad) 0;
    height: auto;
}

.descubre_post header p {
    margin: 1em 0;
    color: var(--c-prim);
    font-weight: var(--fw-sem)
}

.descubre_post .article-params {
    margin-bottom: 1rem
}

.descubre_post h1 {
    color: var(--c-green-title);
    font-size: 2em
}

.descubre_post article {
    max-width: 860px;
    margin: 0 auto
}

.descubre_post .content {
    font-family: var(--ff-prim);
    margin-top: 1em
}

.descubre_post .content p {
    white-space: pre-wrap;
    min-height: 22px;
}

.descubre_post .author {
    display: flex
}

.descubre_post .author .left {
    padding: 1.6em .9em 0 0;
    border-top: 3px solid var(--c-green-title)
}

.descubre_post .author img {
    --r: 6em;
    object-fit: cover;
    width: var(--r);
    height: var(--r);
    border-radius: 100%;
    overflow: hidden
}

.descubre_post .author .right {
    padding: 1.6em 0 0 .9em;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.descubre_post .author h4 {
    color: var(--base-c);
    font-style: italic;
    font-family: var(--vase-ff)
}

.descubre_post .author .job {
    color: var(--c-green-title)
}

.descubre_post #blog-section {
    background: var(--c-cream)
}

.descubre_post #blog-section h2 {
    margin-bottom: 1.6em;
    color: var(--c-prim);
    text-align: center;
    font-size: 2em
}

.descubre_post .article-cover {
    --ar: 1098 / 309;
    width: 100%;
    border-radius: .4em;
    overflow: hidden
}

.descubre_post .share-cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--c-prim)
}

.position-relative{
    position: relative;
}


.sw-full-w{
    width: 100%;
    max-width: 100%;
}

.share-links-floating a img{
    width: 25px;
}

.descubre_post .share-links {
    margin: 0 1em 0 .5em;
    padding: .4em 1em;
    background: var(--c-lg);
    border-radius: .4em;
    display: flex
}
.descubre_post .share-links.share-links-floating{
    display: none;
}
.share-links-floating{
    position: absolute;
    top: 37px;
    left: -128px;
    width: 176px;
    height: 40px;
    display: none;
    z-index: 20;
}

.descubre_post .article-cover+.share-cont .share-links {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.descubre_post .share-links>*:not(last-child) {
    margin-left: .4em
}

.descubre_post .share-links img {
    width: 1.4em
}
.slick-prev:before{
    background: url(/assets/site/img/arrow_blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: '' !important;
    width: 16px;
    height: 16px;
    display: block;
    transform: rotate(180deg);
}

.slick-next:before{
    background: url(/assets/site/img/arrow_blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: '' !important;
    width: 16px;
    height: 16px;
    display: block;
}

.profile-user-a{
    flex-direction: column;
    font-family: Open Sans;
    font-size: 12.8px;
    font-weight: 800;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: left;

}

.profile_menu{
    text-align: center;
    cursor: pointer;
}

.username-label{
    max-width: 120px;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    line-height: 12px;
    max-height: 37px;
}

.image_footer_container{
    width: 100%;
    text-align: center;
}
.image_footer{
    margin: 0 auto;
}

.video-button{
    cursor: pointer;
}

.no-absolute{
    position: relative !important;
}

.only_mobile{
    display: none;
}

.fix-home-height{
    padding-top: 20px;
}