:root {
    --verde-claro: #8cca7f;
    --tamanho-texto: 14px;
}

body {
    font-family: "Nunito sans", sans-serif;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    line-height: 1.5
}

body.body--static {
    height: 100%;
    overflow: hidden
}

@media only screen and (min-width:992px) {
    body.body--static {
        min-height: 100vh;
        overflow: auto;
        overflow-x: hidden
    }
}

.cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 10%;
    right: 10%;
    width: 80%;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 6px 10px 10px 8px rgba(0, 0, 0, 0.3);
}

.cookie-close {
    background-color: #777;
    border: none;
    color: white;
    border-radius: 2px;
    cursor: pointer;
    padding: 6px 14px;
}

.page-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden
}

main.main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

@media only screen and (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

img {
    max-width: 100%;
    height: auto
}

.button {
    display: inline-block;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 13px 45px;
    letter-spacing: .050em;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.button:hover {
    color: #333;
    background-color: var(--verde-claro)
}

.button--primary {
    border: 2px solid var(--verde-claro)
}

.button--filled {
    border: 2px solid var(--verde-claro);
    background: var(--verde-claro)
}

.button--filled:hover {
    color: #fff;
    border: 2px solid #282f34;
    background: #282f34
}

.button--white {
    color: #fff;
    border: 2px solid #fff
}

.button--white:hover {
    color: #333;
    background: #fff
}

.button-green {
    border: 2px solid #2eb872
}

.button-green:hover {
    color: #fff;
    background: #2eb872
}

.button--cyan {
    border: 2px solid #30e3ca
}

.button--cyan:hover {
    background: #30e3ca
}

.button--rounded {
    border-radius: 30px
}

.button--radius {
    border-radius: 5px
}

.border--white {
    border: 2px solid #fff!important
}

.border--white:hover {
    border: 2px solid var(--verde-claro)!important
}

.border--green {
    border: 2px solid var(--verde-claro)!important
}

.border--red {
    border: 2px solid #fd4040!important
}

section.section {
    position: relative;
    z-index: 0;
    padding: 70px 0
}

.historytimeline1 {
    background: url(../img/flechas.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 350px;
    background-position: 32px 120px;
    margin-top: 88px
}

ul.timeline {
    padding-left: 6%;
    padding-bottom: 10px
}

ul.timeline:before {
    position: absolute;
    left: 2%;
    top: 0;
    content: ' ';
    display: block;
    width: 4px;
    height: 100%;
    margin-left: -4px;
    background: #505050;
    background: -moz-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1e5799), color-stop(100%, #7db9e8));
    background: -webkit-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
    background: -o-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
    background: -ms-linear-gradient(top, rgba(80, 80, 80, 0) 0, #505050 8%, #505050 92%, rgba(80, 80, 80, 0) 100%);
    background: linear-gradient(to bottom, rgba(80, 80, 80, 0) 0, #617658 8%, #7fb566 92%, rgba(80, 80, 80, 0) 100%);
    z-index: 5
}

ul.timeline li {
    padding: 1em 0;
    font-weight: 400;
    font-size: 18px;
    list-style: none;
}

ul.timeline li span {
    font-weight: 700
}

ul.timeline li:before {
    position: absolute;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: 4px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid #655e3a;
    z-index: 10;
    left: 4px
}

@media only screen and (min-width:375px) {
    ul.timeline li:before {
        left: 0px
    }
}

@media only screen and (min-width:992px) {
    ul.timeline li:before {
        left: 16px
    }
}

ul.timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

@media only screen and (min-width:768px) {
    section.section {
        padding: 90px 0
    }
}

@media only screen and (min-width:992px) {
    section.section {
        padding: 120px 0
    }
}

@media only screen and (min-width:1200px) {
    section.section {
        padding: 140px 0
    }
}

.section-bg {
    display: none;
    position: absolute;
    z-index: -1
}

@media only screen and (min-width:1600px) {
    .section-bg {
        display: block
    }
}

.section-bg--fill {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.align-container {
    display: table;
    width: 100%
}

.align-container-item {
    display: table-cell;
    vertical-align: middle
}

.img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    font-family: "object-fit: cover; object-position: top center";
    z-index: -1
}

.img-contain {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: contain; object-position: center center";
    z-index: -1
}

.img--layout {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none
}

.img--aside {
    display: none;
    position: absolute;
    width: 25%;
    max-width: 500px;
    z-index: -1
}

@media only screen and (min-width:1200px) {
    .img--aside {
        display: inline-block
    }
}

.w-33 {
    width: 33%!important;
    max-width: 700px
}

.jarallax {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%
}

.heading-pre-title {
    display: inline-block;
    color: #848484;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase
}

.heading-title {
    letter-spacing: -.030em;
    margin-bottom: 20px;
    font-size: 32px;
    text-transform: uppercase
}

@media only screen and (min-width:992px) {
    .heading-title {
        font-size: 40px;
        line-height: 50px
    }
}

.heading-title span:nth-of-type(2) {
    font-weight: 300
}

.heading p {
    color: #777
}

.heading p:last-of-type {
    margin-bottom: 0
}

.heading.heading--center {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto
}

.heading.heading-style-2 .heading-pre-title::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 30px;
    margin-right: 10px;
    margin-bottom: 3px;
    background: var(--verde-claro);
    position: relative
}

.heading.heading-green .heading-pre-title::before {
    background: #2eb872
}

.heading.heading--cyan .heading-pre-title::before {
    background: #30e3ca
}

.margin-3 {
    margin: 3px!important
}

.bottom-15 {
    margin-bottom: 15px!important
}

.bottom-20 {
    margin-bottom: 20px!important
}

.bottom-30 {
    margin-bottom: 30px!important
}

.bottom-40 {
    margin-bottom: 40px!important
}

.bottom-50 {
    margin-bottom: 40px!important
}

@media only screen and (min-width:992px) {
    .bottom-50 {
        margin-bottom: 50px!important
    }
}

.bottom-70 {
    margin-bottom: 50px!important
}

@media only screen and (min-width:992px) {
    .bottom-70 {
        margin-bottom: 70px!important
    }
}

.offset-margin {
    margin-bottom: -50px!important
}

.offset-30 {
    margin-bottom: -30px!important
}

.offset-70 {
    margin-bottom: -70px!important
}

.no-margin-top {
    margin-top: 0!important
}

.no-margin-bottom {
    margin-bottom: 0!important
}

.left-3 {
    margin-left: -3px!important
}

.right-3 {
    margin-right: -3px!important
}

.width100 {
    width: 100%!important
}

.height100 {
    height: 100%!important
}

.top-30 {
    margin-top: 30px!important
}

.top-40 {
    margin-top: 40px!important
}

.top-50 {
    margin-top: 50px!important
}

.top-70 {
    margin-top: 70px!important
}

@media only screen and (min-width:1200px) {
    .bottom-lg-none {
        margin-bottom: 0!important
    }
}

.no-padding-top {
    padding-top: 0!important
}

.no-padding-bottom {
    padding-bottom: 0!important
}

.padding-bottom-70 {
    padding-bottom: 70px!important
}

.t50 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.l0 {
    left: 0
}

.r0 {
    right: 0
}

.t0 {
    top: 0
}

.color-green {
    color: var(--verde-claro)!important
}

.color-primary {
    color: #333!important
}

.color-white {
    color: #fff!important
}

.color-green {
    color: #2eb872!important
}

.color-cyan {
    color: #30e3ca!important
}

.background-white {
    background: #fff!important
}

.background-gray {
    background: #f3f4f5!important
}

.background-dark {
    background: #282f34
}

.background-green {
    background: var(--verde-claro)
}

.font--bold {
    font-weight: 700!important
}

.size-70 {
    font-size: 70px!important
}

.size-60 {
    font-size: 60px!important
}

.size-18 {
    font-size: 18px!important
}

.border-bottom {
    border-bottom: 1px solid #f8f8f8
}

.socials {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0
}

.socials-item:not(:last-of-type) {
    margin-right: 30px
}

.socials-link {
    color: #fff;
    font-size: 16px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.socials-link:hover {
    color: var(--verde-claro)
}

.socials--rounded .socials-item:not(:last-of-type) {
    margin-right: 15px
}

.socials--rounded .socials-link {
    display: inline-block;
    color: #333;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 32px
}

.socials--rounded .socials-link:hover {
    color: var(--verde-claro)
}

.promo-primary {
    position: relative;
    overflow: hidden;
    font-family: Quicksand, sans-serif
}

.promo-primary .align-container {
    height: 450px;
    padding: 80px 0
}

@media only screen and (min-width:992px) {
    .promo-primary .align-container {
        height: 500px
    }
}

@media only screen and (min-width:1200px) {
    .promo-primary .align-container {
        height: 550px
    }
}

@media only screen and (min-width:1367px) {
    .promo-primary .align-container {
        height: 650px;
        padding: 100px 0
    }
}

@media only screen and (min-width:1600px) {
    .promo-primary .align-container {
        height: 600px;
        padding: 120px 0
    }
}

.promo-primary-pre-title {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px
}

@media only screen and (min-width:768px) {
    .promo-primary-pre-title {
        margin-bottom: 10px
    }
}

.promo-primary-title {
    position: relative;
    color: #fff;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -.050em;
    text-transform: uppercase
}

@media only screen and (min-width:768px) {
    .promo-primary-title {
        font-size: 42px
    }
}

@media only screen and (min-width:1200px) {
    .promo-primary-title {
        font-size: 50px
    }
}

.promo-primary-title span:first-of-type {
    font-weight: 300
}

.promo-primary-title span,
.promo-primary-title span span {
    text-shadow: 0 1px 3px rgb(0 0 0 / 80%);
}

.promo-primary-title::before {
    content: "";
    display: block;
    height: 2px;
    width: 70px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: var(--verde-claro)
}

@media only screen and (min-width:768px) {
    .promo-primary-title::before {
        bottom: -20px
    }
}

.elements-title {
    margin-bottom: 40px
}

.elements-subtitle {
    font-size: 16px;
    margin-bottom: 15px
}

.form-elements {
    pointer-events: none
}

.button-elements .button {
    width: 190px;
    text-align: center
}

.button-elements .button:first-of-type {
    margin: 0 0 30px 0;
    display: block
}

@media only screen and (min-width:576px) {
    .button-elements .button:first-of-type {
        display: inline-block;
        margin: 0 30px 0 0
    }
}

.slick-dots {
    position: relative;
    z-index: 3;
    padding: 0;
    margin: 0;
    line-height: initial;
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important
}

.slick-dots li {
    padding-left: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    list-style: none;
    height: 18px;
    width: 18px;
    border: 2px solid transparent;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: initial
}

.slick-dots li::before {
    display: none
}

.slick-dots li:not(:last-of-type) {
    margin-right: 30px
}

.slick-dots li.slick-active {
    border: 2px solid var(--verde-claro);
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    padding: 0;
    border: none;
    outline: 0;
    background-color: #c7c7c7;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background-color: var(--verde-claro)
}

.slick-dots li.slick-active button {
    height: 6px;
    width: 6px
}

.dots-style-2 li.slick-active {
    border: 2px solid #2eb872
}

.dots-style-2 li button:hover,
.dots-style-2 li.slick-active button {
    background-color: #2eb872
}

.dots--style-3 li.slick-active {
    border: 2px solid #30e3ca
}

.dots--style-3 li button:hover,
.dots--style-3 li.slick-active button {
    background-color: #30e3ca
}

.logos-slider-item {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 120px
}

.logos-slider-dots {
    text-align: center
}

.logos-slider-dots .slick-dots {
    margin-top: 40px
}

.logos-slider-item img {
    width: 90%;
    max-width: 170px;
    max-height: 110px;
    height: auto
}

.logo-item {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 140px
}

.logo-item-img {
    max-width: 110px;
    height: auto
}

.logo-item--style-2 {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.logo-item--style-2:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.testimonials-slider-text {
    font-size: 18px;
    font-style: italic;
    margin-top: 10px
}

@media only screen and (min-width:992px) {
    .testimonials-slider-text {
        font-size: 20px
    }
}

.testimonials-slider-details {
    margin-top: 30px
}

.testimonials-slider-details::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 40px;
    background: var(--verde-claro);
    vertical-align: middle;
    margin-right: 15px
}

.testimonials-slider-name,
.testimonials-slider-position {
    font-size: 18px;
    font-weight: 700
}

.testimonials-slider-position {
    color: var(--verde-claro)
}

.action-block {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.action-block::before {
    content: "";
    display: block;
    padding-top: 30.49422%
}

.action-block-inner {
    color: #fff;
    padding: 80px 15px;
    width: 100%;
    max-width: 520px
}

.action-block-title {
    color: #fff
}

.action-block-title span:first-of-type {
    font-size: 30px;
    line-height: 30px;
    font-weight: 300
}

.action-block-title span:nth-of-type(2) {
    font-size: 48px;
    line-height: 48px
}

@media only screen and (min-width:992px) {
    .action-block-title span:nth-of-type(2) {
        font-size: 60px;
        line-height: 60px
    }
}

.action-block .img-bg {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.action-block:hover .img-bg {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.map-banner {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto
}

.map-banner .align-container {
    padding: 50px 0;
    height: 290px
}

.map-banner .button {
    margin-top: 25px;
}

.app-block {
    background: var(--verde-claro);
    padding: 30px
}

@media only screen and (min-width:992px) {
    .app-block {
        padding: 30px 30px 30px 100px
    }
}

.app-block p {
    color: #333
}

.app-block-icon {
    display: none;
    position: absolute;
    top: 28px;
    left: 40px;
    font-size: 55px;
    line-height: 63px
}

@media only screen and (min-width:992px) {
    .app-block-icon {
        display: inline-block
    }
}

.pilares,
.icon-item {
    margin-bottom: 50px
}

.pilares-img,
.icon-item-img {
    margin-bottom: 20px
}

.pilares-img img,
.icon-item-img img {
    height: 70px;
    max-width: 60%
}

.pilares-icon,
.icon-item-icon {
    font-size: 45px;
    margin-bottom: 15px
}

.pilares_titulo,
.icon-item-title {
    margin-bottom: 15px
}

.icon-item p:last-of-type {
    margin-bottom: 0
}

.terapy-item {
    display: block;
    padding: 30px 0;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    margin-bottom: 30px
}

.terapy-item-title {
    color: inherit;
    margin-bottom: initial;
    font-size: 16px;
}

.terapy-item-icon {
    font-size: 50px
}

.terapy-item:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px)
}

.info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    color: #fff;
    padding: 47px 20px;
    background: rgba(0, 0, 0, .6);
    min-height: 520px
}

@media only screen and (min-width:768px) {
    .info-box {
        padding: 67px 40px 47px 40px
    }
}

.info-box p {
    color: inherit;
    margin-bottom: 18px
}

.info-box .heading-pre-title {
    color: #fff
}

.info-box .heading-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 16px
}

.info-box-link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.info-box-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: var(--verde-claro);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.info-box-link:hover::after {
    width: 100%
}

.info-box--style-2 .info-box-link {
    color: #2eb872
}

.info-box--style-2 .info-box-link::after {
    background: #2eb872
}

.about-front .info-box {
    margin-top: 70px
}

@media only screen and (min-width:992px) {
    .about-front .info-box {
        margin-top: 0
    }
}

.about-front::before {
    display: none
}

@media only screen and (min-width:1200px) {
    .about-front::before {
        content: "";
        display: block;
        height: 100%;
        width: 38%;
        background: #f3f4f5;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1
    }
}

.about-front-bg {
    display: none
}

@media only screen and (min-width:1600px) {
    .about-front-bg {
        display: block;
        position: absolute;
        z-index: -1
    }
}

.brand-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px
}

.brand-item-img {
    display: inline-block;
    max-height: 70px;
    max-width: 100%
}

.img-box {
    position: relative
}

.img-box-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px
}

@media only screen and (min-width:992px) {
    .img-box-img {
        margin-bottom: 0
    }
}

.img-box .img--layout {
    display: none
}

@media only screen and (min-width:1200px) {
    .img-box .img--layout {
        display: inline-block
    }
}

.img-box-img::before {
    content: "";
    display: block;
    padding-top: 109.57447%
}

.text-box {
    position: relative;
    background: rgba(48, 227, 202, .2);
    overflow: hidden;
    color: #fff;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.text-box::before {
    content: "";
    display: block;
    padding-top: 148.27586%
}

.text-box-details {
    padding: 0 30px 0 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.text-box-title {
    color: inherit;
    margin-bottom: 25px
}

.text-box-count {
    font-size: 20px;
    font-weight: 300;
    opacity: 1
}

.text-box-text {
    max-height: 148px;
    padding: 0 0 28px 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.text-box:hover {
    background: rgba(48, 227, 202, .4)
}

.text-box:hover .text-box-details {
    -webkit-transform: translateY(0)!important;
    -ms-transform: translateY(0)!important;
    transform: translateY(0)!important
}

.text-box:hover .text-box-text {
    opacity: 1;
    margin-top: -10px
}

.donate-box {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: rgba(40, 47, 52, .42)
}

.donate-box-green {
    background: rgba(48, 227, 202, .2)
}

.donate-box::before {
    content: "";
    display: block;
    padding-top: 109.96564%
}

.donate-box-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    padding: 0 15px 35px 15px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media only screen and (min-width:992px) {
    .donate-box-inner {
        -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
        transform: translateY(25px);
        padding: 0 40px 35px 40px
    }
}

.donate-box .heading {
    margin-bottom: 18px
}

.donate-box .heading-pre-title {
    color: inherit;
    margin-bottom: 18px
}

.donate-box .heading-title {
    color: inherit;
    font-size: 30px;
    line-height: 1.2
}

.donate-box p {
    color: inherit
}

.donate-box-link {
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.donate-box-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.donate-box-link:hover::after {
    width: 100%
}

.donate-box-link:hover {
    color: #fff
}

.donate-box:hover .donate-box-link {
    opacity: 1;
    visibility: visible
}

.donate-box:hover .donate-box-inner {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.faq-item {
    margin-bottom: 50px
}

.faq-item-title {
    text-transform: uppercase;
    margin-bottom: 20px
}

.faq-item-title span:nth-of-type(2) {
    font-weight: 300
}

.error {
    color: #fff
}

.error .align-container {
    height: 600px
}

@media only screen and (min-width:768px) {
    .error .align-container {
        height: 700px
    }
}

@media only screen and (min-width:992px) {
    .error .align-container {
        height: 800px
    }
}

@media only screen and (min-width:1200px) {
    .error .align-container {
        height: 900px
    }
}

.error-title {
    font-size: 100px;
    font-weight: 900;
    line-height: 50px
}

@media only screen and (min-width:768px) {
    .error-title {
        font-size: 150px;
        line-height: 100px
    }
}

@media only screen and (min-width:992px) {
    .error-title {
        font-size: 200px;
        line-height: 150px
    }
}

@media only screen and (min-width:1200px) {
    .error-title {
        font-size: 250px;
        line-height: 200px
    }
}

.error-subtitle {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0
}

.error-text {
    font-size: 18px
}

.error .button {
    margin-top: 30px;
    padding-left: 70px;
    padding-right: 70px
}

.form label.error {
    color: #e83333;
    font-size: 14px;
    position: absolute;
    top: -25px;
    left: 15px
}

.form .alert {
    display: none;
    margin-top: 30px
}

.form-title {
    font-size: 18px;
    margin-bottom: 20px
}

.form-label {
    position: relative;
    margin: 0
}

.form-radio-label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    margin: 0
}

.form-field {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    margin-bottom: 30px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s
}

.form-field:focus {
    border: 2px solid var(--verde-claro)
}

.form-field:invalid {
    border: 2px solid #fd1717;
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-field:disabled {
    background: 0 0;
    opacity: .5
}

.form-message {
    min-height: 110px
}

.form-submit {
    display: inline-block;
    border: 2px solid var(--verde-claro);
    background: 0 0;
    font-weight: 700;
    padding: 16px 70px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.form-submit:hover {
    background: var(--verde-claro)
}

.form-rating-label {
    color: var(--verde-claro);
    cursor: pointer
}

.form-rating-label:not(:last-of-type) {
    margin-right: 3px
}

.form-rating-input {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.form-rating-input:checked~.form-rating-label {
    color: #d1d3d5
}

.form-count {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: #f8f8f8;
    overflow: hidden
}

.form-count .form-field {
    background: 0 0;
    border: none;
    width: 50px;
    padding: 0;
    text-align: center;
    color: #777
}

.form-minus,
.form-plus {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.form-minus::before,
.form-plus::after,
.form-plus::before {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background: #777;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.form-plus::after {
    width: 2px;
    height: 12px
}

.form-minus:hover::before,
.form-plus:hover::after,
.form-plus:hover::before {
    background: var(--verde-claro)
}

.form-count .form-submit {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
    background: var(--verde-claro);
    border: none
}

.form-count .form-submit .icon {
    font-size: 22px;
    margin-right: 10px
}

.form-count .form-submit span {
    padding-top: 3px
}

.form-count .form-submit:hover {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background: #393e42
}

.form input[type=number]::-webkit-inner-spin-button,
.form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.form input[type=number] {
    -moz-appearance: textfield
}

.form-checkbox-mask {
    height: 16px;
    width: 16px;
    background: #e1e1e1;
    position: absolute;
    top: 6px;
    left: 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.form-checkbox-mask::before {
    height: 2px;
    width: 8px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 7px;
    right: 3px
}

.form-checkbox-mask::after {
    height: 2px;
    width: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 8px;
    left: 3px
}

.form-checkbox-mask::after,
.form-checkbox-mask::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: #484334;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.form-input-checkbox {
    position: absolute;
    top: 6px;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden
}

.form-checkbox-label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    margin: 0
}

.form-input-checkbox:checked+.form-checkbox-mask {
    background: var(--verde-claro)
}

.form-input-checkbox:checked+.form-checkbox-mask::after,
.form-input-checkbox:checked+.form-checkbox-mask::before {
    opacity: 1
}

.form-radio-mask {
    height: 14px;
    width: 14px;
    border: 2px solid #999;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.form-radio-mask::after {
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.form-input-radio {
    position: absolute;
    top: 6px;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden
}

.form-input-radio:checked+.form-radio-mask::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
}

.form-input-radio:checked+.form-radio-mask {
    border: 2px solid var(--verde-claro)
}

.form-input-radio:checked:disabled+.form-radio-mask::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    background: #999
}

.form-input-radio:disabled+.form-radio-mask {
    border: 2px solid #999;
    background: #e1e1e1
}

.form-color-mask {
    position: absolute;
    top: 2px;
    left: 2px;
    border: 2px solid transparent;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.form-color-mask::before {
    height: 2px;
    width: 16px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 13px;
    right: 4px
}

.form-color-mask::after {
    height: 2px;
    width: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 16px;
    left: 8px
}

.form-color-mask::after,
.form-color-mask::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.form-color-label {
    position: relative;
    cursor: pointer;
    height: 38px;
    width: 38px;
    background: #a3a3;
    border-radius: 50%;
    margin: 0
}

.form-input-checkbox:checked+.form-color-mask {
    border: 2px solid #fff
}

.form-input-checkbox:checked+.form-color-mask::after,
.form-input-checkbox:checked+.form-color-mask::before {
    opacity: 1
}

.form .nice-select {
    color: #999;
    font-size: 16px;
    width: 100%;
    height: 58px;
    line-height: 56px;
    border-radius: 0;
    border: 2px solid #e1e1e1;
    padding: 0 20px;
    margin-bottom: 30px
}

.form .nice-select:focus {
    border: 2px solid var(--verde-claro)
}

.form .nice-select .list {
    width: 100%;
    margin-top: 15px;
    border: 2px solid var(--verde-claro);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 170px;
    width: 100%;
    overflow-y: scroll
}

.form .nice-select::after {
    right: 20px;
    height: 7px;
    width: 7px
}

.form .nice-select .option.focus,
.form .nice-select .option.selected.focus,
.form .nice-select .option:hover {
    background: #f9f7f6
}

.account-form {
    padding: 32px 15px 35px 15px;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .03);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .03);
    margin-bottom: 50px
}

@media only screen and (min-width:576px) {
    .account-form {
        padding: 42px 40px 45px 40px
    }
}

.account-form .form-button {
    width: 100%;
    margin: 25px 0
}

.account-form span {
    color: #999
}

.account-form .form-link {
    color: #333;
    text-decoration: underline
}

.account-form .form-link:hover {
    text-decoration: none
}

.map-section {
    padding: 0;
    position: relative
}

@media only screen and (min-width:992px) {
    .map-section {
        padding: 120px 0
    }
}

@media only screen and (min-width:1200px) {
    .map-section {
        padding: 140px 0
    }
}

#map {
    position: static;
    min-height: 300px
}

@media only screen and (min-width:768px) {
    #map {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0
    }
}

.contacts-banner {
    position: relative;
    color: #555;
    font-size: 14px;
    background: #fff;
    -webkit-box-shadow: 0 3px 20px 10px rgba(0, 0, 0, .05);
    box-shadow: 0 3px 20px 10px rgba(0, 0, 0, .05);
    padding: 30px 20px;
    z-index: 2;
    margin-bottom: 70px
}

@media only screen and (min-width:576px) {
    .contacts-banner {
        padding: 50px
    }
}

@media only screen and (min-width:768px) {
    .contacts-banner {
        -webkit-box-shadow: 0 3px 20px 10px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 20px 10px rgba(0, 0, 0, .2);
        margin: 50px 0
    }
}

@media only screen and (min-width:992px) {
    .contacts-banner {
        margin: 0
    }
}

.contacts-banner p:not(:last-of-type) {
    margin-bottom: 10px
}

.contacts-banner p:last-of-type {
    margin-bottom: 0
}

.contacts-banner a {
    display: inline-block;
    color: inherit;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.contacts-banner a:not(:last-of-type) {
    margin-right: 8px
}

.contacts-banner .icon {
    color: transparent;
    stroke: var(--verde-claro);
    font-size: 16px;
    margin-right: 5px
}

.search-form {
    position: relative;
    margin-top: 50px
}

@media only screen and (min-width:992px) {
    .search-form {
        margin-top: 0
    }
}

.search-form-input {
    width: 100%;
    background: #f3f4f5;
    border: none;
    padding: 17px 20px 17px 58px;
    font-size: 16px;
    color: #a3a3a3
}

.search-form-submit {
    height: 58px;
    width: 58px;
    border: none;
    background: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    outline: 0;
    color: #a3a3a3;
    font-size: 20px
}

.search-form-input:focus,
.search-form-submit:focus {
    outline: 0
}

.categories-list {
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 700
}

.categories-list-item {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.categories-list-item-active,
.categories-list-item:hover {
    color: #a3a3a3
}

.categories-list-item:not(:last-of-type) {
    margin-bottom: 20px
}

.categories-list-name {
    width: calc(100% - 60px)
}

.categories-list-count {
    width: 60px;
    text-align: right
}

.latest-item:not(:last-of-type) {
    margin-bottom: 20px
}

.latest-item-img {
    position: relative
}

.latest-item-img::before {
    content: "";
    display: block;
    padding-top: 100%
}

.latest-item-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px
}

.latest-item-title a {
    color: inherit;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.latest-item-title a:hover {
    color: inherit;
    opacity: .75
}

.latest-item-details {
    color: #a3a3a3;
    font-size: 14px
}

.latest-item-comments .icon {
    color: #d6d6d6;
    font-size: 12px;
    margin-right: 8px
}

.tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 700
}

.tags-item:not(:last-of-type) {
    margin-right: 15px;
    margin-bottom: 5px
}

.tags-link {
    color: inherit;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.tags-link:hover {
    color: var(--verde-claro)
}

.tags-link::before {
    content: "#"
}

.tags--style-2 .tags-item {
    display: inline-block;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    background: var(--verde-claro);
    text-decoration: none;
    padding: 5px 15px;
    margin-bottom: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.tags--style-2 .tags-item:not(:last-of-type) {
    margin-right: 10px
}

.tags--style-2 .tags-item:hover {
    color: var(--verde-claro);
    background: #333
}

.subscribe-block {
    background: #f3f4f5;
    padding: 20px 35px 30px 35px
}

.subscribe-form .form-field {
    background: 0 0
}

.subscribe-form .form-submit {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px
}

.benefits-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%
}

.member-form .form-message {
    height: 146px
}

.events-item {
    margin-bottom: 50px
}

.events-item-img {
    position: relative;
    background: rgba(0, 0, 0, .2);
    margin-bottom: 24px
}

.events-item-img::before {
    content: "";
    display: block;
    padding-top: 59.45946%
}

.events-item-title {
    margin-bottom: 8px
}

.events-item-date {
    background: var(--verde-claro);
    position: absolute;
    top: 0;
    left: 20px;
    padding: 15px 20px
}

.events-item-date span {
    display: block;
    font-weight: 700;
    text-transform: uppercase
}

.events-item-date span:first-of-type {
    font-size: 30px;
    line-height: 30px
}

.events-item-date span:nth-of-type(2) {
    font-size: 14px
}

.events-item-link {
    color: #333;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.events-item-link:hover {
    color: #333;
    opacity: .75
}

.events-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.rating-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.rating-list-item {
    color: var(--verde-claro)
}

.rating-list-item:not(:last-of-type) {
    margin-right: 8px
}

.rating-list-item--disabled {
    color: #d1d3d5
}

.table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    color: #777
}

.table strong {
    color: #333
}

.table-header {
    display: table-header-group;
    background: var(--verde-claro)
}

.table-body {
    display: table-row-group
}

.table-footer {
    display: table-footer-group
}

.table-row {
    display: table-row
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    padding: 15px 15px
}

@media only screen and (min-width:768px) {
    .table .table-cell {
        padding: 15px 20px
    }
}

.table-body .table-row:nth-of-type(odd) {
    background-color: #f3f4f5
}

.related-slider .slick-track {
    margin: 0 -3px
}

.related-slider .slick-slide {
    margin: 0 3px
}

.related-slider-dots {
    padding-bottom: 10px
}

.ticket-table .table-header {
    display: none
}

.ticket-table .table-row {
    display: block
}

.ticket-table .table-cell {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 15px
}

.ticket-table .table-cell:nth-of-type(odd) {
    background: #f3f4f5
}

.ticket-table .table-cell span {
    width: 60%;
    padding-left: 15px
}

.ticket-table .table-cell::before {
    content: attr(data-label);
    display: inline-block;
    color: #333;
    font-weight: 700;
    width: 40%;
    text-align: left;
    position: relative;
    z-index: 2
}

.ticket-table .table-cell::after {
    content: "";
    display: block;
    height: 100%;
    width: 40%;
    background: var(--verde-claro);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.ticket-table .table-body .table-row:not(:last-of-type) {
    margin-bottom: 30px
}

.ticket-table .table-body .table-row:nth-of-type(2n+1) {
    background: 0 0
}

@media only screen and (min-width:768px) {
    .ticket-table .table-body .table-row:nth-of-type(2n+1) {
        background: #f3f4f5
    }
    .ticket-table .table-cell span {
        width: none;
        padding: 0
    }
    .ticket-table .table-header {
        display: table-header-group
    }
    .ticket-table .table-row {
        display: table-row
    }
    .ticket-table .table-cell {
        display: table-cell;
        text-align: left;
        padding: 15px
    }
    .ticket-table .table-cell:nth-of-type(odd) {
        background: 0 0
    }
    .ticket-table .table-cell::after,
    .ticket-table .table-cell::before {
        display: none
    }
    .ticket-table .table-cell:first-of-type {
        width: 25%
    }
    .ticket-table .table-cell:nth-of-type(2) {
        width: 55%
    }
    .ticket-table .table-cell:nth-of-type(3),
    .ticket-table .table-cell:nth-of-type(4) {
        width: 10%
    }
}

.advantages-item {
    margin-bottom: 70px
}

.advantages-item-img {
    position: relative;
    margin-bottom: 20px
}

@media only screen and (min-width:992px) {
    .advantages-item-img {
        margin-bottom: 0
    }
}

.advantages-item-img::before {
    content: "";
    display: block;
    padding-top: 82.45614%
}

.advantages-item-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
    letter-spacing: -.050em;
    text-transform: uppercase;
    margin-bottom: 15px
}

@media only screen and (min-width:768px) {
    .advantages-item-title {
        font-size: 40px;
        line-height: 50px
    }
}

.advantages-item-title strong {
    font-weight: 700
}

.advantages-item .button {
    margin-top: 20px;
    padding-left: 70px;
    padding-right: 70px
}

.education-item-title {
    margin-bottom: 14px
}

.education-item-title a {
    color: #333;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.education-item-title a:hover {
    color: inherit;
    opacity: .7
}

.education-item .button {
    margin-top: 8px
}

.education-item-category {
    display: inline-block;
    color: #777;
    margin-bottom: 18px
}

.education-item-img {
    position: relative;
    margin-bottom: 30px
}

@media only screen and (min-width:768px) {
    .education-item-img {
        margin-bottom: 0
    }
}

.education-item-img::before {
    content: "";
    display: block;
    padding-top: 65.81081%
}

.education-item-date {
    background: var(--verde-claro);
    position: absolute;
    top: 0;
    left: 20px;
    padding: 15px 20px
}

.education-item-date span {
    display: block;
    font-weight: 700;
    text-transform: uppercase
}

.education-item-date span:first-of-type {
    font-size: 30px;
    line-height: 30px
}

.education-item-date span:nth-of-type(2) {
    font-size: 14px
}

.donation-item {
    margin-bottom: 70px
}

.donation-item-title {
    line-height: 40px;
    margin-bottom: 25px
}

.donation-item-title a {
    color: #333;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.donation-item-title a:hover {
    color: inherit;
    opacity: .7
}

.donation-item .button {
    margin-top: 19px
}

.donation-item-img {
    position: relative;
    margin-bottom: 40px
}

@media only screen and (min-width:992px) {
    .donation-item-img {
        margin-bottom: 0
    }
}

.donation-item-img::before {
    content: "";
    display: block;
    padding-top: 97.2973%
}

.animal-details-icon {
    font-size: 90px;
    line-height: .8
}

.animal-details-title {
    text-transform: uppercase;
    margin-bottom: 17px
}

.animal-details p:last-of-type {
    margin-bottom: 0
}

.tour-details-title {
    margin-bottom: 22px
}

.tour-details-section-title {
    text-transform: uppercase;
    line-height: 50px
}

.tour-details-section-title span {
    font-weight: 300
}

.tour-details-price {
    display: inline-block;
    color: var(--verde-claro);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px
}

.tour-details .list-icon {
    margin-top: 35px
}

.tour-details-inner-block:not(:last-of-type) {
    margin-bottom: 50px
}

.tour-details-tickets {
    padding-top: 70px;
    padding-bottom: 70px
}

@media only screen and (min-width:992px) {
    .tour-details-tickets {
        padding-top: 100px;
        padding-bottom: 0
    }
}

@media only screen and (min-width:1200px) {
    .tour-details-tickets {
        padding-top: 120px
    }
}

.tour-details-contacts {
    font-size: 14px;
    padding: 25px 30px 30px 30px;
    background: #f3f4f5
}

.tour-details-contacts p {
    margin-bottom: 0
}

.tour-details-contacts p:not(:last-of-type) {
    margin-bottom: 5px
}

.tour-details .socials {
    margin-top: 25px
}

.tour-details-contacts p a {
    color: inherit;
    white-space: nowrap;
    text-decoration: underline
}

.tour-details-contacts p a:hover {
    text-decoration: none
}

.list-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 700
}

.list-icon-item {
    position: relative;
    width: 50%;
    padding-left: 25px
}

@media only screen and (min-width:768px) {
    .list-icon-item {
        width: 33.333%
    }
}

.list-icon-item {
    margin-bottom: 15px
}

.list-icon-item::before {
    content: "";
    display: block;
    height: 18px;
    width: 18px;
    background-image: url(../img/check.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 3px
}

.popular-item {
    position: relative;
    display: block;
    padding: 21px 30px 22px 30px;
    overflow: hidden
}

.popular-item img {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.popular-item-title {
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s
}

.popular-item:hover .popular-item-title {
    color: var(--verde-claro)
}

.popular-item:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.popular-item:not(:last-of-type) {
    margin-bottom: 5px
}

.action-item {
    position: relative;
    text-align: center;
    min-height: 380px;
    padding: 40px 15px 50px 15px
}

.action-item-title {
    text-transform: uppercase;
    margin-bottom: 14px
}

.action-item-title span {
    font-weight: 300
}

.action-item-button {
    border: 2px solid #fff
}

.action-item-button:hover {
    background: #fff
}

.tours-slider .slick-slide {
    margin: 0 3px
}

.tours-slider .slick-list {
    margin: 0 -3px
}

.tours-slider-item {
    position: relative
}

.tours-slider-item::before {
    content: "";
    display: block;
    padding-top: 100%
}

.tours-slider-name {
    position: absolute;
    color: #fff;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 30px 30px 23px 30px
}

.tours-slider-dots {
    margin-top: 15px
}

@media only screen and (min-width:768px) {
    .tours-slider-dots {
        margin-top: 0
    }
}

.clipping-block {
    position: relative;
    background: rgba(40, 47, 52, .3);
    margin: 3px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.clipping-block:hover {
    background: rgba(40, 47, 52, .8)
}

.clipping-block::before {
    content: "";
    display: block;
    padding-top: 148.27586%
}

.clipping-block-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.clipping-block-title {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px
}

.clipping-block-link {
    position: relative;
    font-weight: 700;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    visibility: hidden;
    opacity: 0
}

.clipping-block-link::before {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--verde-claro);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.clipping-block-link:hover::before {
    width: 100%
}

.clipping-block:hover .clipping-block-details {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.clipping-block:hover .clipping-block-link {
    opacity: 1;
    visibility: visible
}

section.zoo-map {
    padding: 100px 0 70px 0
}

@media only screen and (min-width:768px) {
    section.zoo-map {
        padding: 150px 0 100px
    }
}

@media only screen and (min-width:992px) {
    section.zoo-map {
        padding: 200px 0 140px
    }
}

.zoo-map-img img {
    display: inline-block;
    width: 100%;
    height: auto
}

.campaign-item {
    margin-bottom: 50px
}

.campaign-item-img {
    position: relative;
    margin-bottom: 34px
}

.campaign-item-img::before {
    content: "";
    display: block;
    padding-top: 81.08108%
}

.campaign-item-detail p {
    font-size: 14px
}

.campaign-item-detail p:last-of-type {
    margin-bottom: 0
}

.campaign-item-title {
    margin-bottom: 7px
}

.campaign-item-title a {
    color: inherit;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.campaign-item-title a:hover {
    color: inherit;
    opacity: .75
}

.campaign-item .progress-bar {
    margin-top: 40px
}

.donation::before {
    content: "";
    height: calc(100% - 110px);
    display: block;
    width: 100%;
    background: #f3f4f5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

@media only screen and (min-width:992px) {
    .donation::before {
        width: 40%
    }
}

.donation-style-2::before {
    display: none
}

.slider-holder {
    padding: 0 15px
}

@media only screen and (min-width:1200px) {
    .slider-holder {
        padding: 0;
        overflow: hidden;
        margin-left: calc((100% - 1170px)/ 2)
    }
}

.slider-holder-wrapper {
    width: 100%;
    max-width: 1170px
}

@media only screen and (min-width:1830px) {
    .slider-holder--style-2 {
        margin-left: calc((100% - 1800px)/ 2)
    }
    .slider-holder--style-2 .slider-holder-wrapper {
        max-width: 1800px
    }
}

.donation-slider .info-box {
    background: rgba(0, 0, 0, .3);
    min-height: 560px
}

.donation-slider .slick-list {
    margin: 0 -3px
}

@media only screen and (min-width:1200px) {
    .donation-slider .slick-list {
        overflow: visible
    }
}

.donation-slider .slick-slide {
    margin: 0 3px
}

.donation-slider-dots {
    padding-bottom: 0;
    margin-top: 20px
}

@media only screen and (min-width:992px) {
    .donation-slider-dots {
        margin-top: 0;
        padding-bottom: 10px
    }
}

.img-item {
    margin-bottom: 50px
}

.img-item-img {
    position: relative;
    margin-bottom: 18px
}

.img-item-img::before {
    content: "";
    display: block;
    padding-top: 118.51852%
}

.img-item-text:last-of-type {
    margin-bottom: 0
}

.img-item-title {
    margin-bottom: 10px
}

.img-item-title a {
    color: inherit;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.img-item-title a:hover {
    color: inherit;
    opacity: .75
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 13px;
    background-color: #f9f7f6;
    border-radius: 50px
}

.progress-bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#52db79), to(#25c285));
    background-image: -o-linear-gradient(left, #52db79, #25c285);
    background-image: linear-gradient(to right, #52db79, #25c285);
    height: 100%;
    border-radius: 50px
}

.progress-bar-value {
    position: absolute;
    top: -27px;
    right: 0;
    color: #333;
    font-weight: 700
}

.video-trigger--about .video-trigger-icon {
    background: var(--verde-claro)
}

.video-trigger--about:hover {
    color: inherit
}

.video-trigger--primary {
    color: inherit;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.video-trigger--primary .video-trigger-icon {
    color: #333;
    display: inline-block;
    border: 2px solid var(--verde-claro);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    margin-right: 20px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.video-trigger--primary:hover .video-trigger-icon {
    background: var(--verde-claro)
}

.about-safari::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 75%;
    background: url(../img/about-safari_bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover
}

.about-safari-left,
.about-safari-right {
    display: none;
    position: absolute
}

@media only screen and (min-width:1600px) {
    .about-safari-left,
    .about-safari-right {
        display: block
    }
}

.about-safari-right {
    top: 50px;
    right: 0
}

.about-safari-left {
    top: 30%;
    left: 0
}

.about-safari-img {
    position: relative
}

.about-safari-img::before {
    content: "";
    display: block;
    padding-top: 46.15385%
}

.about-aquarium::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 75%;
    background: url(../img/about-aquarium-bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f4f6f7
}

.about-aquarium-img {
    position: relative
}

.about-aquarium-img::before {
    content: "";
    display: block;
    padding-top: 49.1453%
}

.animals-section-left,
.animals-section-right {
    display: none;
    position: absolute
}

@media only screen and (min-width:1600px) {
    .animals-section-left,
    .animals-section-right {
        display: block
    }
}

.animals-section-left {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0
}

.animals-section-right {
    right: 30px;
    top: 200px
}

.animal-title {
    margin-bottom: 0
}

.animal-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.animal-img img {
    height: 80px;
    width: auto
}

@media only screen and (min-width:576px) {
    .animal-img img {
        height: 115px
    }
}

.destination-slider .slick-list {
    margin: 0 -3px
}

@media only screen and (min-width:1200px) {
    .destination-slider .slick-list {
        overflow: visible
    }
}

.destination-slider .slick-slide {
    margin: 0 3px;
    opacity: .4;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    pointer-events: none
}

.destination-slider .slick-slide.slick-active {
    opacity: 1;
    pointer-events: initial
}

.destination-slider-dots {
    margin-top: 20px
}

@media only screen and (min-width:768px) {
    .destination-slider-dots {
        padding-bottom: 10px;
        margin-top: 0
    }
}

@media only screen and (min-width:992px) {
    .destination-slider-dots--front-2::after {
        content: "";
        display: inline-block;
        height: 1px;
        width: 75px;
        background: #c7c7c7;
        margin: 0 30px
    }
}

.destination-slider--style-2 .slick-list {
    overflow: hidden
}

.destination-slider--style-2 .slick-slide {
    margin: 0 3px;
    opacity: 1;
    pointer-events: auto
}

.destination-item {
    position: relative;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    z-index: 1
}

.destination-item::before {
    content: "";
    display: block;
    padding-top: 148.27586%;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.destination-item-count {
    position: absolute;
    top: 25px;
    left: 30px;
    color: #fff;
    font-weight: 700;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-transform: uppercase
}

.destination-item-count span:first-of-type {
    font-size: 40px;
    line-height: 1;
    opacity: .8
}

.destination-item-details {
    position: absolute;
    bottom: -55px;
    left: 0;
    width: 100%;
    padding: 25px 30px 35px 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.destination-item-title {
    color: #fff;
    margin-bottom: 0
}

.destination-item-link {
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    opacity: 1;
    margin-top: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.destination-item-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.destination-item-link:hover {
    color: #fff
}

.destination-item-link:hover::after {
    width: 100%
}

.destination-item-day {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase
}

.destination-item:hover {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
}

.destination-item:hover .destination-item-count {
    top: 55px
}

.destination-item:hover .destination-item-details {
    bottom: 0
}

.destination-item--style-2::before {
    background: rgba(46, 184, 114, .1)
}

.destination-item--style-2:hover::before {
    background: rgba(46, 184, 114, .5)
}

.destination-item--style-3 .destination-item-link {
    position: relative;
    font-weight: 500
}

.destination-item--style-3 .destination-item-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.destination-item--style-3 .destination-item-link:hover {
    color: #fff;
    opacity: 1
}

.destination-item--style-3 .destination-item-link:hover::after {
    opacity: .85
}

.destination-item--style-3::before {
    background: rgba(48, 227, 202, .2)
}

.destination-item--style-3:hover::before {
    background: rgba(48, 227, 202, .5)
}

.blogs-slider .slick-slide {
    margin: 0 3px
}

.blogs-slider .slick-list {
    margin: 0 -3px
}

@media only screen and (min-width:1200px) {
    .blogs-slider .slick-list {
        overflow: visible
    }
}

.blogs-slider-dots {
    margin-bottom: 50px
}

@media only screen and (min-width:768px) {
    .blogs-slider-dots {
        margin-bottom: 0
    }
}

.blogs-item {
    color: #fff;
    position: relative;
    background: rgba(40, 47, 52, .5);
    overflow: hidden
}

.blogs-item::before {
    content: "";
    display: block;
    padding-top: 110%
}

.blogs-item-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 20px 50px 20px;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media only screen and (min-width:576px) {
    .blogs-item-details {
        padding: 0 40px 50px 40px
    }
}

.blogs-item-date {
    color: var(--verde-claro);
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 15px
}

.blogs-item-title {
    color: inherit;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px
}

.blogs-item-title span {
    font-weight: 300
}

.blogs-item-comments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px
}

.blogs-item-comments .icon {
    margin-right: 10px;
    fill: none;
    stroke: #fff
}

.blogs-item-link {
    display: inline-block;
    position: relative;
    margin-top: 22px;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

@media only screen and (min-width:768px) {
    .blogs-item-link {
        margin-top: 42px
    }
}

.blogs-item-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--verde-claro);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.blogs-item-link:hover::after {
    width: 100%
}

.blogs-item p {
    color: #fff
}

.blogs-item p:last-of-type {
    margin-bottom: 0
}

.blogs-item:hover .blogs-item-details {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0)
}

.blogs-item:hover .blogs-item-link {
    opacity: 1
}

section.banner {
    width: 100%;
    max-width: 1580px
}

@media only screen and (min-width:1200px) {
    section.banner {
        margin: 90px auto 0 auto
    }
}

section.banner mark {
    padding: 0 10px;
    margin-left: -10px
}

section.banner .banner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none
}

@media only screen and (min-width:1200px) {
    section.banner .banner-img {
        display: block
    }
}

section.banner .button {
    color: #fff;
    margin-top: 45px
}

section.banner .button:hover {
    color: #333
}

.categorie-item {
    position: relative;
    text-align: center;
    margin-bottom: 50px
}

.categorie-item::before {
    content: "";
    display: block;
    padding-top: 110.74919%
}

.categorie-item-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 52px 15px 60px 15px
}

.categorie-item-pretitle {
    color: #848484;
    font-size: 12px;
    text-transform: uppercase
}

.categorie-item-title {
    text-transform: uppercase;
    margin-top: 8px
}

.categorie-item .button {
    margin-top: 20px;
    background: #fff;
    border: 2px solid #fff
}

.categorie-item .button:hover {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.cta-banner {
    position: relative;
    padding: 35px 30px 50px 30px;
    margin-top: 30px
}

@media only screen and (min-width:576px) {
    .cta-banner {
        padding: 35px 50px 50px 50px
    }
}

.cta-banner-title {
    text-transform: uppercase;
    font-weight: 300
}

.cta-banner-title span {
    font-weight: 700
}

.cta-banner .button {
    margin-top: 9px;
    padding: 7px 35px
}

.events-carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 85%;
    width: 100%;
    z-index: -1
}

.text-section-title {
    color: #2eb872;
    font-size: 140px;
    line-height: .65
}

@media only screen and (min-width:1200px) {
    .text-section-title {
        font-size: 210px
    }
}

.text-section-title span {
    font-size: 120px;
    font-weight: 300
}

@media only screen and (min-width:1200px) {
    .text-section-title span {
        font-size: 150px
    }
}

.text-section-text {
    color: #42564c;
    font-size: 42px;
    line-height: .7;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 20px
}

@media only screen and (min-width:1200px) {
    .text-section-text {
        font-size: 50px
    }
}

.fishes-slider .slick-list {
    margin: 0 -3px
}

@media only screen and (min-width:1200px) {
    .fishes-slider .slick-list {
        overflow: visible
    }
}

.fishes-slider .slick-slide {
    margin: 0 3px;
    opacity: .4;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    pointer-events: none
}

.fishes-slider .slick-slide.slick-active {
    opacity: 1;
    pointer-events: initial
}

.fishes-slider-dots {
    padding-bottom: 0;
    margin-top: 20px
}

@media only screen and (min-width:992px) {
    .fishes-slider-dots {
        padding-bottom: 10px;
        margin-top: 0
    }
}

.about-terrarium::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% + 300px);
    width: 100%;
    z-index: -2;
    background: url(../img/about-terrarium_layout.png)
}

header.header-intro {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    min-height: 60px;
    width: 100%;
    max-width: none;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
    padding: 10px 15px
}

@media only screen and (min-width:992px) {
    header.header-intro {
        padding: 0 0 0 35px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: 0 0
    }
    header.header-intro.header--fixed {
        background: #fff;
        -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
        box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06)
    }
}

header.header-intro.header--fixed .logo--light {
    display: none
}

header.header-intro.header--fixed .logo--dark {
    display: inline-block
}

header.header-intro .logo-img {
    height: 38px
}

header.header-intro .logo--dark {
    display: inline-block
}

header.header-intro .logo--light {
    display: none
}

@media only screen and (min-width:576px) {
    header.header-intro .logo-img {
        height: 45px
    }
}

@media only screen and (min-width:1367px) {
    header.header-intro .logo-img {
        height: 61px
    }
}

@media only screen and (min-width:992px) {
    header.header-intro .logo--dark {
        display: none
    }
    header.header-intro .logo--light {
        display: inline-block
    }
}

header.header-intro .button {
    padding: 0 45px;
    border: none
}

header.header-intro .main-menu-item .main-menu-link--highlighted {
    color: var(--verde-claro)!important
}

header.header-intro .main-menu-item .main-menu-link {
    color: #fff
}

header.header-intro .main-menu-item .main-menu-link:hover {
    color: var(--verde-claro)
}

header.header-intro .button {
    display: none;
    max-height: 70px;
    line-height: 70px
}

@media only screen and (min-width:992px) {
    header.header-intro .button {
        display: inline-block
    }
}

@media only screen and (min-width:1200px) {
    header.header-intro .button {
        max-height: 86px;
        line-height: 86px;
        width: 240px
    }
}

.intro-title {
    text-align: center
}

.intro-title span {
    font-weight: 400
}

header.header-intro.header--fixed .main-menu-item .main-menu-link {
    color: #333
}

header.header-intro.header--fixed .main-menu-item .main-menu-link:hover {
    color: var(--verde-claro)
}

.intro-promo {
    position: relative;
    min-height: 600px;
    padding: 130px 0
}

@media only screen and (min-width:768px) {
    .intro-promo {
        min-height: 600px;
        padding: 150px 0
    }
}

@media only screen and (min-width:992px) {
    .intro-promo {
        min-height: 700px;
        padding: 200px 0
    }
}

@media only screen and (min-width:1200px) {
    .intro-promo {
        min-height: 970px;
        padding: 254px 0
    }
}

.intro-promo-img {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0
}

@media only screen and (min-width:1200px) {
    .intro-promo-img {
        display: inline-block;
        width: 700px
    }
}

@media only screen and (min-width:1600px) {
    .intro-promo-img {
        width: 900px
    }
}

.intro-promo-pre-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px
}

.intro-promo-title {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    width: 100%;
    max-width: 750px
}

@media only screen and (min-width:992px) {
    .intro-promo-title {
        font-size: 50px
    }
}

@media only screen and (min-width:1200px) {
    .intro-promo-title {
        font-size: 60px
    }
}

.intro-promo-title span {
    font-size: 42px;
    font-weight: 400
}

@media only screen and (min-width:576px) {
    .intro-promo-title span {
        font-size: 50px
    }
}

.intro-promo-subtitle {
    color: #dbdce0;
    margin-top: 20px
}

.intro-promo-button {
    color: #fff;
    margin-top: 40px
}

.front-demos-bg {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none
}

@media only screen and (min-width:992px) {
    .front-demos-bg {
        display: inline-block
    }
}

.front-demos-container {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px
}

.demo-item {
    margin-bottom: 70px
}

.demo-item-img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 0 3px 15px 5px rgba(0, 0, 0, .04);
    box-shadow: 0 3px 15px 5px rgba(0, 0, 0, .04)
}

.demo-item-img::before {
    content: "";
    display: block;
    padding-top: 145.94595%
}

.demo-item-title {
    text-align: center;
    margin: 25px 0 0 0
}

.demo-item-link {
    background: var(--verde-claro);
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.demo-item:hover .demo-item-link {
    opacity: 1
}

.demo-item:hover .demo-item-img {
    -webkit-box-shadow: 0 3px 15px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 15px 5px rgba(0, 0, 0, .1)
}

.intro-features {
    overflow: hidden
}

.intro-footer {
    position: relative
}

.intro-footer-button {
    color: #fff;
    margin-top: 40px
}

.technologie-item {
    display: block;
    margin-bottom: 50px
}

.technologie-item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 120px;
    background: #f8f8f8;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.technologie-item-icon {
    color: #bfbfbf;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.technologie-item:hover .technologie-item-img {
    background: #bfbfbf
}

.technologie-item:hover .technologie-item-icon {
    color: #fff
}

.inner-pages .img-bg {
    height: 80%
}

.pages-slider-dots {
    margin-top: 40px
}

@media only screen and (min-width:992px) {
    .pages-slider-dots {
        padding-bottom: 6px;
        margin-top: 0
    }
}

.pages-slider .slick-track {
    padding: 15px 0
}

.pages-slider .slick-list {
    margin: 0 -15px
}

@media only screen and (min-width:1200px) {
    .pages-slider .slick-list {
        overflow: visible
    }
}

.pages-slider-item {
    padding: 0 15px
}

.pages-slider .demo-item-img::before {
    padding-top: 121.10092%
}

.aside-menu .main-menu-item .main-menu-link {
    color: #fff
}

.features-item-img {
    position: relative;
    margin-bottom: 20px
}

@media only screen and (min-width:992px) {
    .features-item-img {
        margin-top: -30px;
        margin-bottom: 0
    }
}

.featurest-item-img::before {
    content: "";
    display: block;
    padding-top: 110.03861%
}

::-moz-selection {
    color: #333;
    background-color: var(--verde-claro)
}

::selection {
    color: #333;
    background-color: var(--verde-claro)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-family: Quicksand, sans-serif;
    font-weight: 700
}

h1,
h2,
h3,
h4 {
    letter-spacing: -.050em
}

h5,
h6 {
    letter-spacing: 0
}

h1 {
    font-size: 70px
}

h2 {
    font-size: 50px
}

h3 {
    font-size: 40px
}

h4 {
    font-size: 30px
}

h5 {
    font-size: 25px
}

h6 {
    font-size: 18px
}

a {
    color: var(--verde-claro)
}

p {
    color: #555
}

mark {
    background: var(--verde-claro)
}

a:hover {
    color: var(--verde-claro);
    text-decoration: none
}

.link--green:hover {
    color: #2eb872
}

.text-filled {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    background-color: var(--verde-claro);
    padding: 15px 20px
}

@media only screen and (min-width:768px) {
    .text-filled {
        padding: 30px 40px 34px 40px
    }
}

@media only screen and (min-width:992px) {
    .text-filled {
        font-size: 20px;
        padding: 61px 70px 65px 70px
    }
}

.ordered-list,
.unordered-list {
    padding: 0;
    margin: 0
}

.unordered-list li {
    position: relative;
    list-style: none;
    padding-left: 25px
}

.unordered-list li::before {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    background-color: var(--verde-claro);
    position: absolute;
    top: 9px;
    left: 0
}

.unordered-list li:not(:last-of-type) {
    margin-bottom: 10px
}

.ordered-list li {
    counter-increment: list;
    list-style-type: none;
    position: relative;
    padding-left: 25px
}

.ordered-list li::before {
    content: counter(list) ".";
    color: var(--verde-claro);
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0
}

.ordered-list li:not(:last-of-type) {
    margin-bottom: 10px
}

.blockquote {
    padding: 0;
    position: relative
}

.blockquote-text {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    padding-left: 20px;
    border-left: 5px solid var(--verde-claro)
}

@media only screen and (min-width:768px) {
    .blockquote-text {
        font-size: 20px;
        padding-left: 40px
    }
}

.dropcap-text:last-of-type {
    margin-bottom: 0
}

.dropcap-text::first-letter {
    color: var(--verde-claro);
    float: left;
    font-size: 50px;
    font-weight: 700;
    margin: 7px 15px 0 15px
}

.two-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1
}

@media only screen and (min-width:576px) {
    .two-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2
    }
}

.three-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1
}

@media only screen and (min-width:576px) {
    .three-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2
    }
}

@media only screen and (min-width:992px) {
    .three-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3
    }
}

.four-columns {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1
}

@media only screen and (min-width:576px) {
    .four-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2
    }
}

@media only screen and (min-width:992px) {
    .four-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3
    }
}

@media only screen and (min-width:1200px) {
    .four-columns {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4
    }
}

@media only screen and (min-width:1200px) {
    section.typography {
        padding: 120px 0
    }
}

.typography .ordered-list {
    margin-top: 50px
}

@media only screen and (min-width:768px) {
    .typography .ordered-list {
        margin-top: 0
    }
}

.cta-block {
    position: relative;
    background: var(--verde-claro);
    padding: 50px 0
}

@media only screen and (min-width:992px) {
    .cta-block {
        padding: 65px 0
    }
}

.cta-block-title {
    text-transform: uppercase
}

.cta-block-title span {
    font-weight: 300
}

.cta-block .img-bg {
    z-index: 0
}

.cta-block-text {
    color: #333;
    margin-bottom: 0
}

.cta-block-text:not(:last-of-type) {
    margin-bottom: 20px
}

.cta-block-button {
    display: inline-block;
    color: inherit;
    font-weight: 700;
    background: #fff;
    padding: 18px 55px;
    margin-top: 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:992px) {
    .cta-block-button {
        margin-top: 0
    }
}

.cta-block-button:hover {
    color: #fff;
    background: #282f34
}

.cta-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: 30px
}

@media only screen and (min-width:576px) {
    .cta-form {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

@media only screen and (min-width:992px) {
    .cta-form {
        margin-top: 0
    }
}

.cta-form .form-field {
    margin: 0 0 30px 0;
    background: 0 0;
    border: 2px solid #333
}

@media only screen and (min-width:576px) {
    .cta-form .form-field {
        margin: 0 30px 0 0
    }
}

.cta-form .form-field::-webkit-input-placeholder {
    color: #333
}

.cta-form .form-field::-moz-placeholder {
    color: #333
}

.cta-form .form-field:-ms-input-placeholder {
    color: #333
}

.cta-form .form-field::-ms-input-placeholder {
    color: #333
}

.cta-form .form-field::placeholder {
    color: #333
}

.cta-form .form-submit {
    border: none;
    background: #333;
    color: #fff;
    padding: 18px 50px
}

.cta-form .form-submit:hover {
    background: #fff;
    color: #333
}

.alert {
    position: relative;
    border: none;
    margin-bottom: 0;
    padding: 15px 40px
}

@media only screen and (min-width:992px) {
    .alert {
        padding: 20px 60px
    }
}

@media only screen and (min-width:1200px) {
    .alert {
        padding: 25px 70px
    }
}

.alert:not(:last-of-type) {
    margin-bottom: 30px
}

.alert-text {
    color: inherit;
    font-size: 14px;
    margin-bottom: 0
}

@media only screen and (min-width:576px) {
    .alert-text {
        font-size: 16px
    }
}

@media only screen and (min-width:992px) {
    .alert-text {
        font-size: 18px
    }
}

@media only screen and (min-width:1200px) {
    .alert-text {
        font-size: 20px
    }
}

.alert strong {
    color: inherit
}

.alert-close {
    cursor: pointer;
    color: inherit;
    font-size: 14px;
    padding: 10px;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: .5;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

@media only screen and (min-width:992px) {
    .alert-close {
        right: 20px
    }
}

.alert-close:hover {
    opacity: 1
}

.alert-icon {
    font-size: 14px;
    position: absolute;
    left: 15px;
    top: 16px
}

@media only screen and (min-width:768px) {
    .alert-icon {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

@media only screen and (min-width:992px) {
    .alert-icon {
        left: 30px
    }
}

.alert.alert--success.alert--filled {
    color: #fff;
    background: #76b330
}

.alert.alert--attention.alert--filled {
    color: #fff;
    background: #308cb3
}

.alert.alert--warning.alert--filled {
    color: #fff;
    background: #e89d33
}

.alert.alert--error.alert--filled {
    color: #fff;
    background: #e83333
}

.alert.alert--success.alert--transparent {
    color: #76b330;
    border: 2px solid #76b330
}

.alert.alert--attention.alert--transparent {
    color: #308cb3;
    border: 2px solid #308cb3
}

.alert.alert--warning.alert--transparent {
    color: #e89d33;
    border: 2px solid #e89d33
}

.alert.alert--error.alert--transparent {
    color: #e83333;
    border: 2px solid #e83333
}

.accordion {
    background: #f3f4f5
}

.accordion:not(:last-of-type) {
    margin-bottom: 30px
}

.accordion-title-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px
}

@media only screen and (min-width:768px) {
    .accordion-title-block {
        padding: 10px 15px 10px 30px
    }
}

.accordion-title-block::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -2px
}

.accordion-title {
    margin-bottom: 0;
    width: calc(100% - 70px)
}

.accordion-close {
    position: relative;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%
}

@media only screen and (min-width:768px) {
    .accordion-close {
        height: 52px;
        width: 52px
    }
}

.accordion-close::after,
.accordion-close::before {
    content: "";
    display: inline-block;
    background: #cdcdce;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.accordion-close::before {
    height: 14px;
    width: 2px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.accordion-close::after {
    width: 14px;
    height: 2px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.accordion-close--active::before {
    opacity: 0
}

.accordion-close--active::after {
    background: var(--verde-claro)
}

.accordion-text-block {
    padding: 20px 15px 10px 15px;
    display: none
}

@media only screen and (min-width:768px) {
    .accordion-text-block {
        padding: 20px 30px 10px 30px;
        width: calc(100% - 70px)
    }
}

.accordion--bordered {
    border: 2px solid #f3f4f5;
    background: #fff
}

.accordion--bordered .accordion-title-block::after {
    background: #f3f4f5
}

.pagination {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    list-style: none
}

.pagination-item {
    margin: 0 4px;
    border: 2px solid #ededed;
    height: 40px;
    min-width: 40px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:768px) {
    .pagination-item {
        height: 50px;
        min-width: 50px
    }
}

.pagination-item:nth-of-type(5),
.pagination-item:nth-of-type(6) {
    display: none
}

@media only screen and (min-width:768px) {
    .pagination-item:nth-of-type(5),
    .pagination-item:nth-of-type(6) {
        display: initial
    }
}

.pagination-item-active,
.pagination-item:hover {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.pagination-item-active {
    pointer-events: none
}

.pagination-item--disabled {
    height: auto;
    min-width: auto;
    border: none;
    pointer-events: none;
    padding-bottom: 5px;
    margin: 0 11px
}

@media only screen and (min-width:768px) {
    .pagination-item--next,
    .pagination-item-prev {
        padding: 0 30px
    }
}

.pagination-item-prev {
    margin-right: 15px;
    margin-left: 0
}

.pagination-item--next {
    margin-left: 15px;
    margin-right: 0
}

@media only screen and (min-width:768px) {
    .pagination-item-prev {
        margin-right: 26px;
        margin-left: 0
    }
    .pagination-item--next {
        margin-left: 26px;
        margin-right: 0
    }
}

@media only screen and (min-width:768px) {
    .pagination-item-prev i {
        margin-right: 10px
    }
    .pagination-item--next i {
        margin-left: 10px
    }
}

.pagination-item i,
.pagination-item span {
    display: inline-block;
    color: #333;
    font-size: 14px;
    line-height: 36px;
    font-weight: 700
}

@media only screen and (min-width:768px) {
    .pagination-item i,
    .pagination-item span {
        line-height: 46px;
        padding:0 19px;
    }
}

.pagination-item--next span,
.pagination-item-prev span {
    display: none;
    padding:0;
}

@media only screen and (min-width:768px) {
    .pagination-item--next span,
    .pagination-item-prev span {
        display: initial
    }
}

.pagination--with-bg .pagination-item {
    background: #f3f4f5;
    border: 2px solid #f3f4f5
}

.pagination--with-bg .pagination-item:hover {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.pagination--with-bg .pagination-item-active {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.pagination--rounded .pagination-item {
    border-radius: 50%
}

.pagination--rounded .pagination-item:hover {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.pagination--rounded .pagination-item-active {
    background: var(--verde-claro);
    border: 2px solid var(--verde-claro)
}

.pagination--rounded .pagination-item--next,
.pagination--rounded .pagination-item-prev {
    padding: 0
}

.pagination--rounded .pagination-item-prev i {
    font-size: 18px;
    margin-right: 0
}

.pagination--rounded .pagination-item--next i {
    font-size: 18px;
    margin-left: 0
}

.counter-item {
    margin-bottom: 30px
}

.counter-item-number {
    font-size: 50px;
    line-height: 1.3;
    font-weight: 700;
    font-family: Quicksand, sans-serif
}

@media only screen and (min-width:992px) {
    .counter-item-number {
        font-size: 70px
    }
}

.counter-item-title {
    color: #41464a;
    margin-bottom: 0
}

.counter-item-icon .icon {
    font-size: 60px;
    margin-bottom: 15px
}

.counter-item-front .counter-item-title {
    font-size: 16px
}

.counter-item-front .counter-item-number {
    color: #282f34;
    font-size: 50px;
    line-height: 1.2
}

@media only screen and (min-width:1200px) {
    .counter-item-front .counter-item-number {
        font-size: 60px
    }
}

.counter-item-front-1 .counter-item-number {
    font-size: 36px
}

.counter-item-front-2 .counter-item-number {
    font-size: 46px
}

.counter-item-front-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.counter-item-front-3 .counter-item-icon {
    margin-bottom: 0
}

.counter-item-front-3 .counter-item-inner:first-of-type {
    width: 90px
}

.counter-item-front-3 .counter-item-inner:last-of-type {
    width: calc(100% - 90px)
}

.pricing-item--style-1 {
    overflow: hidden;
    margin-bottom: 50px
}

.pricing-item--style-1 .pricing-item-lower,
.pricing-item--style-1 .pricing-item-top {
    background: #f4f6f7
}

.pricing-item--style-1 .pricing-item-icon {
    color: #565b6e;
    display: inline-block;
    height: 140px;
    width: 140px;
    background: #fff;
    border-radius: 50%;
    font-size: 80px;
    line-height: 140px;
    margin-bottom: 25px
}

.pricing-item--style-1 .pricing-item-top {
    padding: 30px 0 15px 0;
    position: relative
}

.pricing-item--style-1 .pricing-item-top::after,
.pricing-item--style-1 .pricing-item-top::before {
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    background: #fff;
    position: absolute;
    bottom: -15px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.pricing-item--style-1 .pricing-item-top::before {
    left: -15px
}

.pricing-item--style-1 .pricing-item-top::after {
    right: -15px
}

.pricing-item--style-1 .pricing-item-lower {
    padding: 25px 0;
    border-top: 1px dashed #fff
}

.pricing-item--style-1 .pricing-item-subject {
    color: #333;
    font-size: 16px;
    font-weight: 700
}

.pricing-item--style-1 .pricing-item-price span {
    display: inline-block;
    vertical-align: middle
}

.pricing-item--style-1 .pricing-item-price span:first-of-type {
    color: #777;
    margin-right: 5px
}

.pricing-item--style-1 .pricing-item-price span:nth-of-type(2) {
    color: var(--verde-claro);
    font-size: 30px;
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    text-transform: uppercase
}

.pricing-item--white .pricing-item-lower,
.pricing-item--white .pricing-item-top {
    background: #fff
}

.pricing-item--white .pricing-item-top::after,
.pricing-item--white .pricing-item-top::before {
    background: #f3f4f5
}

.pricing-item--white .pricing-item-lower {
    border-top: 1px dashed #f3f4f5
}

.pricing-item--white .pricing-item-icon {
    background: #f3f4f5
}

.pricing-item--style-2 {
    color: #333;
    font-weight: 700;
    text-align: center;
    padding: 24px 30px 30px 30px;
    background: #f3f4f5
}

@media only screen and (min-width:992px) {
    .pricing-item--style-2 {
        text-align: left;
        padding: 17px 30px
    }
}

.pricing-item--style-2 .pricing-item-plan {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 0 20px 0
}

@media only screen and (min-width:992px) {
    .pricing-item--style-2 .pricing-item-plan {
        margin: 0
    }
}

.pricing-item--style-2 .pricing-item-price {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0
}

@media only screen and (min-width:992px) {
    .pricing-item--style-2 .pricing-item-price {
        margin: 0;
        height: 54px;
        line-height: 54px
    }
}

.pricing-item--style-2.pricing-item--selected {
    background: #fff
}

.breadcrumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.breadcrumbs-item {
    margin-bottom: 8px
}

.breadcrumbs-item+.breadcrumbs-item {
    padding-left: .5rem
}

.breadcrumbs-item+.breadcrumbs-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumbs-item .breadcrumbs-link {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.breadcrumbs-item .breadcrumbs-link:hover {
    color: var(--verde-claro)
}

.breadcrumbs-item-active {
    color: var(--verde-claro)
}

.breadcrumbs--with-line .breadcrumbs-item+.breadcrumbs-item::before {
    content: "—"
}

.breadcrumbs--with-dot .breadcrumbs-item+.breadcrumbs-item::before {
    content: "·"
}

.breadcrumbs--with-icon .breadcrumbs-item .fa {
    margin-right: 8px
}

.breadcrumbs--with-number {
    counter-reset: counter
}

.breadcrumbs--with-number .breadcrumbs-item {
    counter-increment: counter
}

.breadcrumbs--with-number .breadcrumbs-item .breadcrumbs-link::before {
    content: counter(counter);
    position: relative;
    top: -2px;
    display: inline-block;
    height: 15px;
    width: 15px;
    padding: 2px 3px 0 3px;
    margin-right: 8px;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
    border: 1px solid #333;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.breadcrumbs--with-number .breadcrumbs-item:not(:last-of-type)::after {
    padding-left: .5em
}

.breadcrumbs--with-number .breadcrumbs-item-active .breadcrumbs-link,
.breadcrumbs--with-number .breadcrumbs-link:hover::before {
    color: var(--verde-claro);
    border-color: var(--verde-claro)
}

.breadcrumbs--with-number .breadcrumbs-item-active a::before {
    border-color: var(--verde-claro)
}

.team-item {
    margin-bottom: 50px
}

.team-item-name {
    font-size: 18px;
    font-weight: 700;
    font-family: Quicksand, sans-serif;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.team-item-position {
    color: #777;
    margin: 13px 0
}

.team-item-socials {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.team-item-socials li a {
    font-size: 18px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.team-item-socials li a:hover {
    color: var(--verde-claro)
}

.team-item-socials li:not(:last-of-type) {
    margin-right: 20px
}

.team-item .link--facebook {
    color: #1c388c
}

.team-item .link--twitter {
    color: #1c90f3
}

.team-item .link--youtube {
    color: #e11717
}

.team-item--style-1 .team-item-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 23px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.team-item--style-1 .team-item-img::before {
    content: "";
    display: block;
    padding-top: 100%
}

.team-item--style-1:hover .team-item-img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.team-item--style-2 .team-item-img {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, .4);
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.team-item--style-2 .team-item-img::before {
    content: "";
    display: block;
    padding-top: 148.14815%
}

.team-item--style-2 .team-item-description,
.team-item--style-2 .team-item-socials {
    position: absolute
}

.team-item--style-2 .team-item-socials {
    background: #1d252b;
    top: 20px;
    left: 0;
    padding: 5px 20px;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.team-item--style-2 .team-item-socials a {
    color: #fff
}

.team-item--style-2 .team-item-socials .link--facebook:hover {
    color: #1c388c
}

.team-item--style-2 .team-item-socials .link--twitter:hover {
    color: #1c90f3
}

.team-item--style-2 .team-item-socials .link--youtube:hover {
    color: #e11717
}

.team-item--style-2 .team-item-description {
    padding: 30px;
    bottom: 0;
    left: 0
}

.team-item--style-2 .team-item-name {
    color: #fff
}

.team-item--style-2 .team-item-position {
    color: #fff;
    opacity: .6;
    margin: 8px 0 0 0
}

.team-item--style-2:hover .team-item-name {
    color: var(--verde-claro)
}

.team-item--style-2:hover .team-item-img {
    background: rgba(0, 0, 0, .6)
}

.team-item--style-2:hover .team-item-socials {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.team-item--style-3 .team-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    margin-bottom: 20px;
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

@media only screen and (min-width:992px) {
    .team-item--style-3 .team-item-img {
        margin-bottom: 0
    }
}

.team-item--style-3 .team-item-img::before {
    content: "";
    display: block;
    padding-top: 100%
}

.team-item--style-3 .team-item-position {
    margin-top: 0
}

.team-item--style-3:hover .team-item-img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.team-item--style-3:hover .team-item-name {
    color: var(--verde-claro)
}

.testimonials-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1
}

.testimonials-style-1 .testimonials-img {
    position: relative;
    width: 100%;
    max-width: 200px;
    background: rgba(0, 0, 0, .4)
}

.testimonials-style-1 .testimonials-img::before {
    position: relative;
    content: "";
    display: block;
    padding-top: 192.5%
}

.testimonials-style-1 .testimonials-img::after {
    content: "“";
    display: block;
    height: 100px;
    width: 60px;
    position: absolute;
    right: -15px;
    top: 15px;
    background: var(--verde-claro);
    font-size: 85px;
    font-weight: 300;
    padding-top: 15px;
    text-align: center
}

@media only screen and (min-width:1200px) {
    .testimonials-style-1 .testimonials-img::after {
        top: 50px;
        right: -30px
    }
}

.testimonials-style-1-dots {
    margin-bottom: 20px
}

@media only screen and (min-width:768px) {
    .testimonials-style-1-dots {
        margin-bottom: 0
    }
}

.testimonials--green .testimonials-img::after {
    color: #fff;
    background: #2eb872
}

.testimonials--green .testimonials-slider-details::before {
    background: #2eb872
}

.testimonials--cyan .testimonials-img::after {
    color: #262626;
    background: #30e3ca
}

.testimonials--cyan .testimonials-slider-details::before {
    background: #30e3ca
}

.testimonials--style-2 {
    position: relative;
    padding: 70px 0
}

.testimonials--style-2-dots {
    margin-bottom: 20px
}

@media only screen and (min-width:768px) {
    .testimonials--style-2-dots {
        margin-bottom: 0
    }
}

.testimonials--style-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    height: 100%;
    width: 100px;
    background: var(--verde-claro)
}

@media only screen and (min-width:1600px) {
    .testimonials--style-2::before {
        display: block
    }
}

.testimonials--style-2::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #f3f4f5;
    z-index: -1
}

@media only screen and (min-width:1600px) {
    .testimonials--style-2::after {
        width: calc(100% - 260px)
    }
}

.testimonials--style-2 .testimonials-icon {
    display: none;
    height: 75px;
    width: 60px;
    background: var(--verde-claro);
    font-size: 85px;
    font-weight: 300;
    padding-top: 10px;
    text-align: center
}

@media only screen and (min-width:1200px) {
    .testimonials--style-2 .testimonials-icon {
        display: block
    }
}

.testimonials--style-3 {
    padding: 30px 0
}

.testimonials--style-3-dots {
    margin-bottom: 20px
}

@media only screen and (min-width:768px) {
    .testimonials--style-3-dots {
        margin-bottom: 0
    }
}

.testimonials--style-3 .testimonials-img {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, .1)
}

.testimonials--style-3 .testimonials-img::before {
    position: relative;
    content: "";
    display: block;
    padding-top: 110.81081%
}

.testimonials--style-3 .testimonials-img::after {
    content: "“";
    display: block;
    height: 80px;
    width: 80px;
    background: var(--verde-claro);
    font-size: 85px;
    font-weight: 300;
    text-align: center;
    position: absolute;
    left: -15px;
    top: 20px
}

.tabs .r-tabs-accordion-title {
    text-align: center
}

.tabs p:last-of-type {
    margin-bottom: 0
}

.tabs-title {
    margin: 40px 0 10px 0
}

.tabs .fa {
    margin-right: 8px
}

.horizontal-tabs .r-tabs-anchor,
.horizontal-tabs-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #c3c3c3;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px
}

.horizontal-tabs .r-tabs-state-active {
    background: #f3f4f5
}

@media only screen and (min-width:769px) {
    .horizontal-tabs .r-tabs-anchor {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 25px 20px
    }
}

.horizontal-tabs .r-tabs-state-active a,
.horizontal-tabs-header a:hover {
    color: #333
}

.horizontal-tabs .r-tabs-panel {
    padding: 30px 15px
}

@media only screen and (min-width:769px) {
    .horizontal-tabs .r-tabs-panel {
        padding: 50px;
        background: #f3f4f5
    }
}

.vertical-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.vertical-tabs-header {
    width: 130px
}

@media only screen and (min-width:769px) {
    .vertical-tabs-content {
        width: calc(100% - 130px)
    }
}

.vertical-tabs .r-tabs-anchor,
.vertical-tabs-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #c3c3c3;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0;
    border-left: 3px solid transparent
}

.vertical-tabs .r-tabs-state-active a {
    background: #f9f7f6
}

@media only screen and (min-width:769px) {
    .vertical-tabs .r-tabs-state-active a {
        background: 0 0
    }
}

@media only screen and (min-width:769px) {
    .vertical-tabs .r-tabs-anchor {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 0 0 15px
    }
}

.vertical-tabs .vertical-tabs-header .r-tabs-state-active a,
.vertical-tabs-header a:hover {
    color: #333
}

.vertical-tabs .r-tabs-tab {
    display: block;
    padding: 15px 0
}

.vertical-tabs .r-tabs-state-active {
    background: #fff
}

@media only screen and (min-width:769px) {
    .vertical-tabs .r-tabs-state-active {
        background: #f3f4f5
    }
}

.vertical-tabs .r-tabs-panel {
    padding: 30px 0
}

@media only screen and (min-width:769px) {
    .vertical-tabs .r-tabs-panel {
        padding: 50px
    }
}

.hamburger {
    display: inline-block;
    height: 24px;
    cursor: pointer;
    -webkit-transition: opacity, -webkit-filter .3s;
    transition: opacity, -webkit-filter .3s;
    -o-transition: opacity, filter .3s;
    transition: opacity, filter .3s;
    transition: opacity, filter .3s, -webkit-filter .3s
}

@media only screen and (min-width:992px) {
    .hamburger {
        display: none
    }
}

.hamburger:hover {
    opacity: .7
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 24px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    position: absolute;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block
}

.hamburger-inner::before {
    top: -6px
}

.hamburger-inner::after {
    bottom: -6px
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
    background-color: #fff
}

.hamburger.is-active .hamburger-inner {
    background-color: transparent
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner::after {
    top: 0;
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg)
}

.menu-dropdown {
    display: initial;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    background: rgba(0, 0, 0, .3);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:992px) {
    .menu-dropdown {
        display: none
    }
}

.menu-dropdown-inner {
    position: fixed;
    width: auto;
    height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.menu-dropdown--active {
    visibility: visible;
    opacity: 1
}

.menu-dropdown--active .menu-dropdown-inner--active,
.menu-dropdown--active .menu-dropdown-inner:first-of-type {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.screen {
    position: relative;
    width: 320px;
    min-height: 100%;
    padding: 100px 15px 50px 15px;
    background-color: #1e252b
}

.screen-start {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.screen--inactive {
    -webkit-filter: grayscale(1);
    filter: grayscale(1)
}

.screen.screen-sub {
    padding: 80px 15px 50px 15px
}

.screen-heading {
    position: relative;
    color: rgba(255, 255, 255, .87);
    padding-bottom: 12px;
    margin-bottom: 27px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.screen-heading::after {
    content: "";
    display: block;
    height: 1px;
    width: calc(100% + 30px);
    background: #303d48;
    position: absolute;
    bottom: 0;
    left: -15px
}

.screen-back {
    color: rgba(255, 255, 255, .87);
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 5px 30px;
    cursor: pointer;
    text-align: center;
    position: relative
}

.screen-back .icon {
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.screen-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase
}

.screen-item,
.screen-item:hover,
.screen-link,
.screen-link:hover {
    color: rgba(255, 255, 255, .87)
}

.screen-item span:first-of-type {
    width: 80%
}

.screen-item span:nth-of-type(2) {
    font-size: 12px
}

.screen-item:not(:last-of-type) {
    margin-bottom: 30px
}

.screen-item.item-active,
.screen-item.item-active .screen-link {
    color: #a3a3a3
}

.screen-item.item-active::after {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    background: var(--verde-claro);
    position: absolute;
    bottom: -6px;
    left: 0
}

.screen-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 24px 0 0 0;
    list-style: none
}

.screen-socials a {
    color: rgba(255, 255, 255, .87);
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    width: 56px
}

.screen-button {
    display: block;
    color: rgba(0, 0, 0, .87);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 26px 50px;
    margin-top: 16px;
    background: var(--verde-claro);
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.screen-button:hover {
    color: rgba(0, 0, 0, .87)
}

.menu-dropdown--front-2 .screen-button,
.menu-dropdown--front-2 .screen-item.item-active::after {
    background: #30e3ca
}

.menu-dropdown--front-2 .screen-button {
    color: #fff
}

.menu-dropdown--front-3 .screen-button,
.menu-dropdown--front-3 .screen-item.item-active::after {
    background: #2eb872
}

.menu-dropdown--front-3 .screen-button {
    color: #fff
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    left: 50%;
    width: 100%;
    max-width: 1336px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .20);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .20);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.header-top {
    position: relative;
    z-index: 10;
    padding: 10px 15px 0 15px;
    background: #fff;
    min-height: 60px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:576px) {
    .header-top {
        padding: 6px 15px 2px 15px
    }
}

@media only screen and (min-width:992px) {
    .header-top {
        padding: 0 0 0 30px
    }
}

.header-button {
    display: none;
    color: #181919;
    font-size: 14px;
    line-height: 68px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--verde-claro);
    height: 67px;
    width: 176px;
    text-align: center;
    margin-left: 65px;
    padding: 0 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:992px) {
    .header-button {
        display: inline-block
    }
}

@media only screen and (min-width:1367px) {
    .header-button {
        height: 78px;
        padding-top: 20px;
        line-height: 20px;
        margin-right: 8px;
    }
}

.header-button:hover {
    color: #fff;
    background: #282f34;
    text-decoration: none
}

.header-lower {
    display: none;
    position: fixed;
    z-index: 1;
    background: #1d252b;
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

@media only screen and (min-width:992px) {
    .header-lower {
        display: block
    }
}

.header-lower--fixed {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header-lower-inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.redes_sociais {
    padding: 0;
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none
}

.redes_sociais a {
    color: #fff;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.redes_sociais a:hover {
    text-decoration: none
}

.header-phones {
    color: #919ba2;
    font-size: 14px;
    margin-left: 35px
}

.header-phones a {
    display: inline-block;
    color: #919ba2;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.header-phones a:not(:last-of-type) {
    margin-right: 10px
}

.header-phones a:hover {
    opacity: .6
}

.item-facebook {
    background: #3c5a9a
}

.item-twitter {
    background: #1da1f2
}

.item-youtube {
    background: #f11819
}

.item-instagram {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#8b24a7), color-stop(30%), to(#d35252));
    background-image: -o-linear-gradient(#8b24a7, 30%, #d35252);
    background-image: linear-gradient(#8b24a7, 30%, #d35252)
}

.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333
}

.logo:hover {
    color: inherit;
    text-decoration: none
}

.logo-img {
    display: inline-block;
    height: 54px;
    width: auto
}

#videohome {
    height: 50vh;
}

@media only screen and (min-width:576px) {
    .logo-img {
        height: 60px;
        margin: 6px 0;
    }
}

@media only screen and (min-width:1367px) {
    .logo-img {
        height: 90px;
    }
    #videohome {
        height: 90vh;
    }
}

@media only screen and (max-width:991px) {
    #videohome {
        margin-top: 72px;
    }
}

@media only screen and (min-width:992px) {
    #videohome {
        height: 75vh;
    }
}

.logo-text {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: 15px
}

@media only screen and (min-width:576px) {
    .logo-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.logo-text span:first-of-type {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    font-family: Quicksand, sans-serif
}

@media only screen and (min-width:1367px) {
    .logo-text span:first-of-type {
        font-size: 20px;
        line-height: 25px
    }
}

.logo-text span:nth-of-type(2) {
    color: #b6b9bb;
    font-size: 10px;
    text-transform: uppercase
}

.lower-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0 25px
}

.lower-menu-item:not(:last-of-type) {
    margin-right: 30px
}

.lower-menu-link {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 10px 0 11px 0;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.lower-menu-link:hover {
    color: #8d9296;
    text-decoration: none
}

.lower-menu-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 1px;
    left: 0;
    background: var(--verde-claro);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.lower-menu-link:hover::after {
    width: 100%
}

.lang-select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.lang-select-item-active {
    cursor: pointer;
    position: relative;
    background: #282f34;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    padding: 10px 55px 10px 25px;
    min-width: 126px
}

.lang-select-item-active span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    position: relative
}

.lang-select-item-active span::after,
.lang-select-item-active span::before {
    content: "";
    display: block;
    width: 6px;
    height: 2px;
    background: #cfc4cc;
    position: absolute;
    top: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    pointer-events: none
}

.lang-select-item-active span::before {
    right: -27px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.lang-select-item-active span::after {
    right: -30px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.lang-select-item-active:hover span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.lang-select-item-active:hover span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.lang-select-sub-list {
    margin: 0;
    padding: 12px 30px 18px 30px;
    list-style: none;
    background: #1d252b;
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    width: 126px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.lang-select-sub-list::before {
    content: "";
    display: inline-block;
    border: 15px solid transparent;
    position: absolute;
    top: -15px;
    right: 33px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.lang-select-sub-list li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.lang-select-sub-list li a:hover {
    color: #c4c4c4
}

.lang-select-item-active:hover .lang-select-sub-list {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    visibility: visible
}

.lang-select-sub-list li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: var(--verde-claro);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.lang-select-sub-list li a:hover::after {
    width: 100%
}

.cart-trigger {
    position: relative;
    text-decoration: none;
    margin-right: 20px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    margin: 0 30px 0 25px
}

@media only screen and (min-width:992px) {
    .cart-trigger {
        margin: 0 0 0 30px
    }
}

.cart-trigger .icon {
    font-size: 24px;
    stroke: #333;
    color: transparent;
    -webkit-transition: stroke .3s;
    -o-transition: stroke .3s;
    transition: stroke .3s
}

.cart-trigger-count {
    display: inline-block;
    position: absolute;
    top: 0;
    right: -8px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    height: 19px;
    min-width: 19px;
    background: var(--verde-claro);
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.cart-trigger:hover .cart-trigger-count {
    color: #333
}

.cart-trigger:hover .icon {
    stroke: var(--verde-claro)
}

.cabinet-trigger {
    position: relative;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

@media only screen and (min-width:992px) {
    .cabinet-trigger {
        margin-left: 80px
    }
}

.cabinet-trigger .icon {
    font-size: 24px;
    stroke: #333;
    color: transparent;
    -webkit-transition: stroke .3s;
    -o-transition: stroke .3s;
    transition: stroke .3s
}

.cabinet-trigger:hover .icon {
    stroke: var(--verde-claro)
}

.header-f2 {
    -webkit-box-shadow: none;
    box-shadow: none
}

.header-f2 .logo--dark {
    display: inline-block
}

.header-f2 .logo--white {
    display: none
}

@media only screen and (min-width:992px) {
    .header-f2 .logo--dark,
    .header-f2 .lower--fixed .logo--white {
        display: none
    }
    .header-f2 .logo--white {
        display: inline-block
    }
    .header-f2 .lower--fixed .logo--dark {
        display: inline-block
    }
}

.header-f2 .logo-img {
    height: 38px
}

@media only screen and (min-width:576px) {
    .header-f2 .logo-img {
        height: 45px
    }
}

@media only screen and (min-width:1367px) {
    .header-f2 .logo-img {
        height: 50px
    }
}

.header-f2 .header-phones {
    margin-left: 15px
}

@media only screen and (min-width:1367px) {
    .header-f2 .header-phones {
        margin-left: 30px
    }
}

.header-f2 .header-lower {
    height: 0
}

@media only screen and (min-width:992px) {
    .header-f2 .header-lower {
        height: auto
    }
}

.header-f2 .header-lower::after {
    content: "";
    display: block;
    height: 1px;
    width: 100vw;
    background: #595959;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: .47
}

.header-f2 .header-phones,
.header-f2 .header-phones a {
    color: #fff
}

@media only screen and (min-width:992px) {
    .header-f2 .header-top {
        padding: 13px 15px 12px 15px
    }
}

@media only screen and (min-width:1367px) {
    .header-f2 .header-top {
        padding: 0 15px 0 30px
    }
}

.header-f2 .header-top {
    background: #fff
}

@media only screen and (min-width:992px) {
    .header-f2 .header-lower,
    .header-f2 .header-top,
    .header-f2 .lang-select-item-active {
        background: 0 0
    }
}

.header-f2 .header-button {
    height: 60px;
    line-height: 60px;
    background: #30e3ca
}

.header-f2 .header-button:hover {
    color: inherit;
    background: #78f7e5
}

.header-f2 .main-menu {
    margin-right: 45px
}

@media only screen and (min-width:1200px) {
    .header-f2 .main-menu {
        margin-right: 85px
    }
}

.header-f2 .main-menu-item .main-menu-link {
    color: #fff
}

.header-f2 .main-menu-item--has-child>.main-menu-link>span::after,
.header-f2 .main-menu-item--has-child>.main-menu-link>span::before {
    background: #fff
}

.header-f2 .lang-select-sub-list li a::after,
.header-f2 .lower-menu-link::after,
.header-f2 .main-menu-item .main-menu-link::before,
.header-f2 .main-menu-sub-list li a::after {
    background: #30e3ca
}

.header-f2 .lang-select-item-active {
    min-width: 100px;
    padding: 10px 45px 10px 25px
}

.header-f2 .lower--fixed {
    background: #fff;
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06)
}

.header-f2 .lower--fixed .main-menu-item .main-menu-link {
    color: #181919
}

.header-f2 .lower--fixed .main-menu-item--has-child>.main-menu-link>span::after,
.header-f2 .lower--fixed .main-menu-item--has-child>.main-menu-link>span::before {
    background: #181919
}

.header-f2 .lower--fixed .main-menu-item-active .main-menu-link {
    color: #a3a3a3
}

.header-f2 .lower--fixed .main-menu-item-active .main-menu-link>span::after,
.header-f2 .lower--fixed .main-menu-item-active .main-menu-link>span::before {
    background: #a3a3a3
}

.header-f3 .hamburger-inner,
.header-f3 .hamburger-inner::after,
.header-f3 .hamburger-inner::before {
    background: #fff
}

.header-f3 .header-lower {
    padding: 0 30px 0 0;
    height: 0
}

@media only screen and (min-width:992px) {
    .header-f3 .header-lower {
        height: auto
    }
}

.header-f3 .header-top {
    padding: 10px 15px 5px 15px;
    background: #282f34
}

@media only screen and (min-width:992px) {
    .header-f3 .header-top {
        padding: 20px 30px 20px 55px
    }
}

.header-f3 .lower-menu {
    padding: 0
}

.header-f3 .lang-select-item-active {
    background: #30373c
}

.header-f3 .lower-menu-link {
    color: #919ba2
}

.header-f3 .lower-menu-link:hover {
    color: #fff
}

.header-f3 .lower-menu-link::after,
.header-f3 .main-menu-item .main-menu-link::before,
.header-f3 .main-menu-sub-list li a::after {
    background: #2eb872
}

.header-f3 .redes_sociais a {
    height: auto;
    width: auto;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.header-f3 .redes_sociais a:hover {
    color: #2eb872
}

.header-f3 .redes_sociais li:not(:last-of-type) {
    margin-right: 23px
}

.header-f3 .lang-select-sub-list li a::after {
    background: #2eb872
}

.header-f3 .main-menu-item .main-menu-link {
    color: #fff
}

.header-f3 .main-menu-item--has-child>.main-menu-link>span::after,
.header-f3 .main-menu-item--has-child>.main-menu-link>span::before {
    background: #fff
}

.header-f3 .main-menu {
    margin-right: 45px
}

@media only screen and (min-width:1367px) {
    .header-f3 .main-menu {
        margin-right: 85px
    }
}

.header-f3 .header-button {
    height: 60px;
    line-height: 60px;
    background: #2eb872;
    color: #fff
}

.header-f3 .header-button:hover {
    background: #59da99
}

.header-f3 .lower--fixed {
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .06)
}

@media only screen and (min-width:992px) {
    .header-f3 .lower--fixed {
        padding: 12px 15px 12px 55px
    }
}

@media only screen and (min-width:1367px) {
    .header-f3 .lower--fixed {
        padding: 0 15px 0 55px
    }
}

@media only screen and (min-width:1600px) {
    .header-f3 {
        max-width: 1460px
    }
}

.header-f4 .header-button {
    margin-left: 70px
}

.main-menu {
    display: none;
    padding: 0;
    margin: 0
}

@media only screen and (min-width:992px) {
    .main-menu {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

.main-menu-item {
    list-style: none;
    position: relative
}

.main-menu-item:not(:last-of-type) {
    margin-right: 26px
}

@media only screen and (min-width:1200px) {
    .main-menu-item:not(:last-of-type) {
        margin-right: 40px
    }
}

.main-menu-item .main-menu-link {
    position: relative;
    display: inline-block;
    color: #181919;
    font-size: var(--tamanho-texto);
    font-weight: 700;
    padding: 25px 0 20px 0;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

@media only screen and (min-width:1367px) {
    .main-menu-item .main-menu-link {
        padding: 35px 0 30px 0
    }
}

.main-menu-item:hover .main-menu-link {
    color: #a3a3a3
}

.main-menu-item .main-menu-link::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background: var(--verde-claro);
    position: absolute;
    bottom: 3px;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.main-menu-item .main-menu-link--highlighted::before,
.main-menu-item:hover .main-menu-link::before {
    width: 100%
}

.main-menu-item--has-child .main-menu-link span {
    position: relative
}

.main-menu-item-active .main-menu-link {
    color: #a3a3a3
}

.main-menu-item-active .main-menu-link::before {
    width: 100%
}

.main-menu-sub-list {
    margin: 0;
    position: absolute;
    top: 100%;
    left: -35px;
    width: 235px;
    padding: 30px 35px 30px 35px;
    background-color: #1d252b;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.main-menu .sub-list-style-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    left: -100px;
    width: 330px
}

.main-menu-item--has-child:hover>.main-menu-sub-list {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible
}

.main-menu-sub-list li {
    position: relative;
    list-style: none
}

.main-menu .sub-list-style-2 li {
    width: 50%
}

.main-menu-sub-list li:not(:last-of-type) {
    margin-bottom: 10px
}

.main-menu-sub-list li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.main-menu-sub-list li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--verde-claro);
    margin-top: 4px;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.main-menu-sub-list li a:hover,
.main-menu-sub-list li.item-active a {
    color: #8d9296
}

.main-menu-sub-list li a:hover::after,
.main-menu-sub-list li.item-active a::after {
    width: 40px
}

.main-menu-item--has-child>.main-menu-link>span::after,
.main-menu-item--has-child>.main-menu-link>span::before {
    content: "";
    display: block;
    width: 6px;
    height: 2px;
    background: #181919;
    position: absolute;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.main-menu-item--has-child>.main-menu-link>span::before {
    right: -12px;
    top: 7px
}

.main-menu-item--has-child>.main-menu-link>span::after {
    right: -15px;
    top: 7px
}

.main-menu-item--has-child>.main-menu-link>span::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.main-menu-item--has-child>.main-menu-link>span::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.main-menu-item--has-child:hover>.main-menu-link>span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #8d9296
}

.main-menu-item--has-child:hover>.main-menu-link>span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #8d9296
}

.main-menu-item-active .main-menu-link>span::after,
.main-menu-item-active .main-menu-link>span::before {
    background: #8d9296
}

.promo {
    position: relative
}

.promo-anchor {
    text-decoration: none;
    display: none;
    width: 80px;
    min-height: 170px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0
}

@media only screen and (min-width:1600px) {
    .promo-anchor {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

.promo-anchor span {
    color: #1d252b;
    font-size: 14px;
    font-weight: 700;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin: auto;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.promo-socials {
    display: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 35px;
    right: 55px;
    list-style: none;
    z-index: 1
}

@media only screen and (min-width:1600px) {
    .promo-socials {
        display: initial
    }
}

.promo-socials li:not(last-of-type) {
    margin-bottom: 20px
}

.promo-socials a {
    color: #fff;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.promo-socials a:hover {
    color: #30e3ca
}

.promo-slider-title {
    font-size: unset
}

.promo-slider-subtitle {
    color: #fff
}

.promo-slider-nav {
    position: absolute;
    bottom: 195px
}

@media only screen and (min-width:768px) {
    .promo-slider-nav {
        position: absolute;
        bottom: 75px
    }
}

.promo-slider-nav::after {
    content: "";
    display: none;
    height: 1px;
    width: 180px;
    background: #3f4041;
    margin-left: 50px
}

@media only screen and (min-width:1200px) {
    .promo-slider-nav::after {
        display: inline-block
    }
}

.promo-slider-wrapper-1,
.promo-slider-wrapper-2,
.promo-slider-wrapper-3 {
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px)
}

.slick-current .promo-slider-wrapper-1,
.slick-current .promo-slider-wrapper-2,
.slick-current .promo-slider-wrapper-3 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.slick-current .promo-slider-wrapper-1 {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.slick-current .promo-slider-wrapper-2 {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s
}

.slick-current .promo-slider-wrapper-3 {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s
}

.promo-slider-button {
    padding: 14px 40px
}

@media only screen and (min-width:576px) {
    .promo-slider-button {
        padding: 17px 45px
    }
}

.promo-slider-item {
    position: relative
}

.promo-slider .align-container {
    height: 500px;
    padding: 120px 0 250px 0
}

@media only screen and (min-width:768px) {
    .promo-slider .align-container {
        height: 700px;
    }
}

@media only screen and (min-width:992px) {
    .promo-slider .align-container {
        height: 800px
    }
}

@media only screen and (min-width:1200px) {
    .promo-slider .align-container {
        height: 900px
    }
}

.promo-slider-item-style-2 {
    color: #fff;
    text-shadow: 0 4px 8px rgb(0 0 0 / 90%)
}

.promo-slider-item-style-2 .promo-slider-title {
    color: inherit
}

.promo-slider-item-style-2 .promo-slider-title span:first-of-type {
    font-size: 32px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: -.050em
}

@media only screen and (min-width:768px) {
    .promo-slider-item-style-2 .promo-slider-title span:first-of-type {
        font-size: 48px;
        line-height: 48px
    }
}

@media only screen and (min-width:1200px) {
    .promo-slider-item-style-2 .promo-slider-title span:first-of-type {
        font-size: 60px;
        line-height: 60px
    }
}

.promo-slider-item-style-2 .promo-slider-title span:nth-of-type(2) {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -.050em
}

@media only screen and (min-width:768px) {
    .promo-slider-item-style-2 .promo-slider-title span:nth-of-type(2) {
        font-size: 60px;
        line-height: 60px
    }
}

@media only screen and (min-width:1200px) {
    .promo-slider-item-style-2 .promo-slider-title span:nth-of-type(2) {
        font-size: 100px;
        line-height: 100px
    }
}

.promo-slider-item-style-2 .promo-slider-subtitle {
    line-height: 25px;
    margin-top: 28px;
    font-size: 22px
}

.promo-slider-item-style-2 .promo-slider-button {
    color: inherit;
    width: 100%;
    max-width: 190px;
    margin-top: 30px
}

.promo-slider-item-style-2 .promo-slider-button:hover {
    color: #1d252b
}

.promo-slider-item-style-3 {
    color: #fff;
    text-align: center
}

.promo-slider-item-style-3 .promo-slider-title {
    color: inherit;
    font-size: 36px;
    line-height: 1.4
}

@media only screen and (min-width:576px) {
    .promo-slider-item-style-3 .promo-slider-title {
        font-size: 42px;
        line-height: 52px
    }
}

@media only screen and (min-width:768px) {
    .promo-slider-item-style-3 .promo-slider-title {
        font-size: 50px;
        line-height: 55px
    }
}

@media only screen and (min-width:992px) {
    .promo-slider-item-style-3 .promo-slider-title {
        font-size: 60px;
        line-height: 65px
    }
}

@media only screen and (min-width:1200px) {
    .promo-slider-item-style-3 .promo-slider-title {
        font-size: 70px;
        line-height: 75px
    }
}

.promo-slider-item-style-3 .promo-slider-title span:nth-of-type(2) {
    font-weight: 400
}

.promo-slider-item-style-3 .promo-slider-subtitle {
    line-height: 25px;
    margin-top: 28px
}

.promo-slider-item-style-3 .promo-slider-button {
    color: inherit;
    width: 100%;
    max-width: 210px;
    margin-top: 30px;
    padding: 17px 45px
}

.promo-slider-item-style-3 .promo-slider-button:hover {
    color: #1d252b
}

.promo-slider-count {
    color: #fff;
    font-weight: 700
}

.promo-pannel {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1
}

@media only screen and (min-width:768px) {
    .promo-pannel {
        right: 0;
        left: auto
    }
}

@media only screen and (min-width:1200px) {
    .promo-pannel {
        right: calc((100% - 1200px)/ 2)
    }
}

@media only screen and (min-width:1600px) {
    .promo-pannel {
        right: calc((100% - 1380px)/ 2)
    }
}

.promo-pannel .weather-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px
}

.promo-pannel .weather-lower span {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-left: 10px
}

.promo-pannel-weather {
    display: none
}

@media only screen and (min-width:1200px) {
    .promo-pannel-weather {
        display: block;
        color: #777;
        font-size: 14px;
        width: 350px;
        background: #fff;
        padding: 35px 50px
    }
}

.promo-pannel-weather .icon {
    font-size: 24px
}

.promo-pannel-subject {
    display: block;
    color: #dcdcdc;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg)
}

@media only screen and (min-width:1600px) {
    .promo-pannel-subject {
        left: 22px
    }
}

.promo-pannel-count {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.promo-pannel-date {
    font-size: 14px;
    font-weight: 700;
    color: #a2a2a2!important
}

.promo-pannel-details {
    display: none;
    width: 100%;
    width: 420px;
    background: #282f34;
    padding: 30px 50px;
    color: #c9cdcf;
    font-size: 14px
}

@media only screen and (min-width:992px) {
    .promo-pannel-details {
        display: block
    }
}

@media only screen and (min-width:1200px) {
    .promo-pannel-details {
        width: 500px
    }
}

.promo-pannel-details p:not(:last-of-type) {
    margin-bottom: 5px
}

.promo-pannel-details p:last-of-type {
    margin-bottom: 0
}

.promo-pannel-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px
}

.promo-pannel-title a {
    color: inherit;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.promo-pannel-title a:hover {
    color: inherit;
    opacity: .7
}

.promo-pannel-link {
    color: #c9cdcf;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.promo-pannel-link:not(:last-of-type) {
    margin-right: 8px
}

.promo-pannel-link:hover {
    color: var(--verde-claro)
}

.promo-pannel p {
    color: inherit
}

.video-trigger {
    display: inline-block
}

.promo .video-trigger {
    position: relative;
    width: 280px;
    min-height: 170px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 25px
}

.promo .video-trigger::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(29, 37, 43, .7);
    z-index: 2
}

.promo .video-trigger img {
    z-index: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.promo .video-trigger-icon {
    color: #fff;
    position: relative;
    z-index: 2
}

.promo .video-trigger span {
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.promo .video-trigger i {
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 36px;
    margin-left: 80px;
    border: 2px solid #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.promo .video-trigger:hover i {
    background: var(--verde-claro);
    border-color: var(--verde-claro);
    color: #282f34
}

.promo .video-trigger:hover span {
    color: var(--verde-claro)
}

.promo .video-trigger:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.promo--front-2 .video-trigger:hover span {
    color: #fff
}

.promo--front-2 .video-trigger:hover i {
    background: #30e3ca;
    border-color: #30e3ca
}

.promo--front-2 .promo-pannel {
    right: auto;
    left: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.promo--front-2 .promo-pannel-details {
    display: none
}

@media only screen and (min-width:1200px) {
    .promo--front-2 .promo-pannel-details {
        display: block;
        position: relative;
        background: #fff;
        padding: 30px 35px 30px 75px;
        width: 550px
    }
}

@media only screen and (min-width:1600px) {
    .promo--front-2 .promo-pannel-details {
        padding: 30px 35px 30px 135px;
        width: 700px
    }
}

.promo--front-2 .promo-slider-nav {
    position: static
}

.promo--front-2 .promo-slider-nav-holder {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    bottom: 195px;
    left: 15px
}

@media only screen and (min-width:576px) {
    .promo--front-2 .promo-slider-nav-holder {
        bottom: 67px;
        right: 30px;
        left: auto
    }
}

@media only screen and (min-width:1200px) {
    .promo--front-2 .promo-slider-nav-holder {
        right: calc((100% - 1170px)/ 2)
    }
}

.promo--front-2 .promo-slider-nav::after {
    margin: 0 40px;
    width: 75px;
    background: #7c8394
}

.promo--front-2 .video-trigger {
    min-height: 170px;
    width: 290px;
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width:1200px) {
    .promo--front-2 .video-trigger {
        min-height: 220px
    }
}

.promo--front-2 .video-trigger::before {
    background-color: rgba(29, 37, 43, .3)
}

.promo--front-2 .video-trigger i {
    margin: 0 0 10px 0;
    border: 2px solid #222b2a;
    background: #222b2a
}

.promo--front-2 .video-trigger-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.promo--front-2 .video-trigger span {
    font-weight: 400
}

.promo--front-2 .promo-slider-count {
    display: none
}

@media only screen and (min-width:1200px) {
    .promo--front-2 .promo-slider-count {
        display: initial
    }
}

.promo--front-3 .promo-slider-count {
    display: none
}

@media only screen and (min-width:768px) {
    .promo--front-3 .promo-slider-count {
        display: inline
    }
}

.promo--front-3 .promo-slider-nav::after {
    display: none
}

@media only screen and (min-width:768px) {
    .promo--front-3 .promo-slider-nav::after {
        display: inline-block
    }
}

.promo--front-3 .button:hover {
    color: #fff
}

.promo--front-3 .promo-pannel {
    right: auto;
    left: 15px;
    bottom: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%
}

@media only screen and (min-width:1200px) {
    .promo--front-3 .promo-pannel {
        bottom: -40px;
        width: auto
    }
}

.promo--front-3 .video-trigger {
    min-height: 170px;
    width: 280px;
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width:1200px) {
    .promo--front-3 .video-trigger {
        min-height: 220px;
        width: 470px
    }
}

.promo--front-3 .video-trigger::before {
    background: rgba(29, 37, 43, .2)
}

.promo--front-3 .promo-slider-nav {
    position: static
}

.promo--front-3 .promo-pannel-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    width: 0
}

@media only screen and (min-width:768px) {
    .promo--front-3 .promo-pannel-details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 50px 70px;
        width: calc(100% - 280px);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media only screen and (min-width:1200px) {
    .promo--front-3 .promo-pannel-details {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        max-width: none;
        width: auto
    }
}

.promo--front-3 .video-trigger i {
    height: 56px;
    width: 56px;
    border: none;
    line-height: 56px;
    background: #2eb872
}

.promo--front-3 .video-trigger:hover i {
    background: #59da99
}

.promo--front-3 .video-trigger:hover span {
    color: #fff
}

.promo--front-3 .promo-slider-nav::after {
    width: 75px;
    margin: 0 40px
}

.promo--front-3 .promo-slider-nav {
    position: absolute;
    bottom: 195px;
    left: 0
}

@media only screen and (min-width:768px) {
    .promo--front-3 .promo-slider-nav {
        position: static
    }
}

.promo--front-4 .promo-slider-nav {
    bottom: 55px
}

@media only screen and (min-width:992px) {
    .promo--front-4 .promo-slider-nav {
        bottom: 75px
    }
}

.promo--front-4 .promo-slider-nav::after {
    display: none
}

.promo--front-4 .align-container {
    height: 500px;
    padding: 120px 0
}

@media only screen and (min-width:768px) {
    .promo--front-4 .align-container {
        height: 700px;
        padding: 200px 0
    }
}

@media only screen and (min-width:992px) {
    .promo--front-4 .align-container {
        height: 800px
    }
}

@media only screen and (min-width:1200px) {
    .promo--front-4 .align-container {
        height: 900px
    }
}

.promo-cta {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    z-index: 0;
    padding: 57px 30px 53px 30px
}

@media only screen and (min-width:992px) {
    .promo-cta {
        display: block
    }
}

.promo-cta-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 13px
}

.promo-cta-title span {
    font-weight: 700
}

.promo-cta-link {
    display: inline-block;
    position: relative;
    font-weight: 700
}

.promo-cta-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: var(--verde-claro);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.promo-cta-link:hover::after {
    width: 100%
}

.promo--front-5 .promo-pannel {
    right: auto;
    left: 0
}

.promo--front-5 .video-trigger {
    min-height: 130px;
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.promo--front-5 .promo-slider-nav {
    left: 15px;
    bottom: 170px
}

@media only screen and (min-width:768px) {
    .promo--front-5 .promo-slider-nav {
        bottom: 60px;
        right: 0;
        left: auto
    }
}

.promo--front-5 .promo-slider-nav::after {
    display: none
}

.promo--front-5 .promo-slider-nav::before {
    display: none
}

@media only screen and (min-width:768px) {
    .promo--front-5 .promo-slider-nav::before {
        content: "";
        display: inline-block;
        height: 1px;
        width: 180px;
        margin-right: 50px;
        background: rgba(255, 255, 255, .3)
    }
}

.promo--front-6 .promo-slider-nav {
    bottom: 50px
}

@media only screen and (min-width:576px) {
    .promo--front-6 .promo-slider-nav {
        right: 15px
    }
}

.promo--front-6 .promo-slider-nav::before {
    content: "";
    display: none;
    height: 1px;
    width: 180px;
    background: rgba(255, 255, 255, .3);
    margin-right: 50px
}

@media only screen and (min-width:768px) {
    .promo--front-6 .promo-slider-nav {
        bottom: 75px
    }
}

.promo--front-6 .promo-slider-nav::after {
    display: none
}

@media only screen and (min-width:768px) {
    .promo--front-6 .promo-slider-nav::before {
        display: inline-block
    }
}

.promo--front-6 .align-container {
    height: auto;
    padding: 120px 0
}

@media only screen and (min-width:768px) {
    .promo--front-6 .align-container {
        height: 700px;
        padding: 200px 0
    }
}

@media only screen and (min-width:992px) {
    .promo--front-6 .align-container {
        height: 800px
    }
}

@media only screen and (min-width:1200px) {
    .promo--front-6 .align-container {
        height: 900px
    }
}

.front-events {
    padding-bottom: 0!important
}

@media only screen and (min-width:1200px) {
    .front-events {
        padding-bottom: 140px!important
    }
}

.front-events-button {
    margin-top: 50px
}

.nearest-item {
    background: #fff;
    color: #777;
    -webkit-box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .03);
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, .03);
    padding-bottom: 25px
}

@media only screen and (min-width:768px) {
    .nearest-item {
        padding-bottom: 0
    }
}

.nearest-item:not(:last-of-type) {
    margin-bottom: 20px
}

.nearest-item-img {
    position: relative
}

.nearest-item .img-bg {
    z-index: 0
}

.nearest-item-img::before {
    content: "";
    display: block;
    padding-top: 64.03941%
}

.nearest-item-date,
.nearest-item-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 15px
}

.nearest-item-description {
    padding-top: 23px
}

@media only screen and (min-width:768px) {
    .nearest-item-date,
    .nearest-item-description {
        padding: 0
    }
}

.nearest-item-link {
    font-family: Quicksand, sans-serif
}

.nearest-item-date span:first-of-type,
.nearest-item-link {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.nearest-item-link:hover {
    color: #333;
    opacity: .75
}

.main-event {
    position: relative;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    margin-top: 70px;
    padding: 52px 30px 60px 30px
}

@media only screen and (min-width:768px) {
    .main-event {
        padding: 42px 70px 70px 50px
    }
}

@media only screen and (min-width:992px) {
    .main-event {
        padding: 62px 70px 70px 70px
    }
}

@media only screen and (min-width:1200px) {
    .main-event {
        padding: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        height: 100%;
        top: 0;
        right: 0;
        width: 41%;
        margin-top: 0
    }
}

.main-event-inner {
    width: 100%;
    max-width: 540px
}

.main-event .heading {
    margin-bottom: 20px
}

@media only screen and (min-width:1200px) {
    .main-event .heading {
        margin-bottom: 30px
    }
}

.main-event .heading .heading-pre-title,
.main-event .heading .heading-title {
    color: #fff
}

.main-event p {
    color: inherit
}

.main-event p:not(:last-of-type) {
    margin-bottom: 35px
}

.main-event-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 28px
}

@media only screen and (min-width:1200px) {
    .main-event-date {
        margin-top: 44px
    }
}

.main-event-date span:first-of-type {
    color: var(--verde-claro);
    font-size: 18px;
    font-weight: 700
}

.main-event-button {
    color: #fff;
    margin-top: 45px
}

@media only screen and (min-width:1200px) {
    .main-event-button {
        margin-top: 130px
    }
}

.gallery .filter-panel {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.gallery-button {
    margin-top: 70px
}

.gallery-masonry-item {
    -webkit-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s
}

.gallery-masonry-img {
    position: relative;
    display: block;
    overflow: hidden
}

.gallery-masonry-item .gallery-masonry-img img {
    -webkit-transform: scale(1.001);
    -ms-transform: scale(1.001);
    transform: scale(1.001);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s
}

.gallery-masonry-item:hover .gallery-masonry-img img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.gallery-masonry-description {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    padding: 18px 15px 15px 15px;
    -webkit-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s
}

@media only screen and (min-width:1200px) {
    .gallery-masonry-description {
        padding: 40px
    }
}

.gallery-masonry-description span:first-of-type {
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s
}

.gallery-masonry-description span:nth-of-type(2) {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s
}

.gallery-masonry-item--height-1::before {
    content: "";
    display: block;
    padding-top: 84.21053%
}

.gallery-masonry-item--height-2::before {
    content: "";
    display: block;
    padding-top: 84.21053%
}

.gallery-masonry-item--height-3::before {
    content: "";
    display: block;
    padding-top: 168.42105%
}

.gallery-masonry-item--height-4::before {
    content: "";
    display: block;
    padding-top: 42.10526%
}

.gallery-masonry-item:hover {
    background: rgba(253, 211, 64, .4)
}

.gallery-masonry-item:hover .gallery-masonry-description {
    background: var(--verde-claro)
}

.gallery-masonry-item:hover .gallery-masonry-description span:first-of-type {
    color: #4b4b4b
}

.gallery-masonry-item:hover .gallery-masonry-description span:nth-of-type(2) {
    color: #333
}

.gallery-masonry-item--green .gallery-masonry-description span:first-of-type {
    color: #2eb872
}

.gallery-masonry-item--green:hover {
    background: rgba(46, 184, 114, .4)
}

.gallery-masonry-item--green:hover .gallery-masonry-description {
    background: #2eb872
}

.gallery-masonry-item--green:hover .gallery-masonry-description span:first-of-type {
    color: #fff;
    opacity: .6
}

.gallery-masonry-item--green:hover .gallery-masonry-description span:nth-of-type(2) {
    color: #fff
}

.gallery-masonry-item--cyan .gallery-masonry-description span:first-of-type {
    color: #30e3ca
}

.gallery-masonry-item--cyan:hover {
    background: rgba(48, 227, 202, .5)
}

.gallery-masonry-item--cyan:hover .gallery-masonry-description {
    background: 0 0
}

.gallery-masonry-item--cyan:hover .gallery-masonry-description span:first-of-type {
    color: #30e3ca
}

.gallery-masonry-item--cyan:hover .gallery-masonry-description span:nth-of-type(2) {
    color: #fff
}

.gallery-masonry-item--cyan .gallery-masonry-img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: rgba(0, 44, 89, .3)
}

.gallery-masonry-item--cyan:hover .gallery-masonry-img {
    background: rgba(48, 227, 202, .03)
}

.video-frame {
    position: relative
}

.video-frame::before {
    content: "";
    display: block;
    padding-top: 51.28205%;
    background: rgba(29, 37, 43, .5);
    position: relative;
    z-index: 1
}

.video-frame .img-bg {
    z-index: 0
}

.video-frame-img-layout {
    display: none;
    position: absolute;
    bottom: -18%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1
}

@media only screen and (min-width:992px) {
    .video-frame-img-layout {
        display: inline-block
    }
}

.video-frame-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.video-frame-icon {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #1d252b;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:768px) {
    .video-frame-icon {
        height: 80px;
        width: 80px;
        line-height: 80px
    }
}

.video-frame-icon .fa {
    font-size: 20px;
    line-height: 50px
}

@media only screen and (min-width:768px) {
    .video-frame-icon .fa {
        line-height: 80px
    }
}

.video-frame-trigger:hover .video-frame-icon {
    background: var(--verde-claro);
    color: #fff
}

.video-frame-text {
    margin-top: 15px
}

.filter-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0
}

.filter-panel-item {
    position: relative;
    color: #333;
    font-weight: 700;
    list-style: none;
    padding: 10px 0;
    cursor: pointer;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.filter-panel-item-active {
    color: #a3a3a3
}

.filter-panel-item:not(:last-of-type) {
    margin-right: 30px
}

@media only screen and (min-width:992px) {
    .filter-panel-item:not(:last-of-type) {
        margin-right: 45px
    }
}

.filter-panel-item:hover {
    color: #a3a3a3
}

.filter-panel-item::after {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background: var(--verde-claro);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.filter-panel-item-active::after,
.filter-panel-item:hover::after {
    width: 100%
}

.filter-panel--style-2 .filter-panel-item {
    color: #a3a3a3
}

.filter-panel--style-2 .filter-panel-item::after {
    background: #2eb872
}

.filter-panel--style-2 .filter-panel-item-active,
.filter-panel--style-2 .filter-panel-item:hover {
    color: #333
}

.filter-panel--style-3 .filter-panel-item {
    color: #a3a3a3
}

.filter-panel--style-3 .filter-panel-item::after {
    background: #30e3ca
}

.filter-panel--style-3 .filter-panel-item-active,
.filter-panel--style-3 .filter-panel-item:hover {
    color: #333
}

.calendar-filter {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media only screen and (min-width:1200px) {
    .calendar-filter {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.calendar-date {
    margin-bottom: 15px
}

@media only screen and (min-width:992px) {
    .calendar-date {
        margin-bottom: 0
    }
}

.calendar-date span {
    display: block;
    font-family: Quicksand, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -.050em
}

.calendar-date span:first-of-type {
    font-size: 50px;
    line-height: 50px
}

.dates-filter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0
}

@media only screen and (min-width:1200px) {
    .dates-filter {
        margin: 0
    }
}

.dates-filter-current {
    font-size: 25px;
    font-weight: 700;
    margin: 0 25px
}

@media only screen and (min-width:576px) {
    .dates-filter-current {
        margin: 0 50px
    }
}

.dates-filter-next,
.dates-filter-prev {
    cursor: pointer;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.dates-filter-next:hover,
.dates-filter-prev:hover {
    color: var(--verde-claro)
}

.calendar-item {
    background: #f3f4f5;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.calendar-item:not(:last-of-type) {
    margin-bottom: 15px
}

.calendar-item-img {
    position: relative
}

.calendar-item-img::before {
    content: "";
    display: block;
    padding-top: 40.81633%
}

.calendar-item-img img {
    z-index: 0
}

.calendar-item-details {
    padding: 15px
}

.calendar-item-title {
    font-size: 18px;
    margin-bottom: 5px
}

.calendar-item-title a {
    color: inherit;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.calendar-item-title a:hover {
    color: var(--verde-claro)!important
}

.calendar-item-category {
    color: #777
}

.calendar-item-time {
    font-size: 20px;
    font-weight: 700;
    font-family: Quicksand, sans-serif;
    text-transform: uppercase;
    padding: 0 15px 0 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

@media only screen and (min-width:992px) {
    .calendar-item-time {
        padding: 0
    }
}

.calendar-item-link {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.calendar-item-link:hover {
    color: #fff
}

.calendar-item:hover {
    background: #1d252b
}

.calendar-item:hover .calendar-item-title a {
    color: #fff
}

.calendar-item:hover .calendar-item-time {
    opacity: 0;
    visibility: hidden
}

.calendar-item:hover .calendar-item-link {
    opacity: 1;
    visibility: visible
}

.blog-title {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.blog-title .fa {
    font-size: 20px
}

.blog-pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.blog-item {
    margin-bottom: 70px
}

@media only screen and (min-width:992px) {
    .blog-item {
        margin-bottom: 100px
    }
}

.blog-item-style-2 .blog-item-title {
    margin-top: 0
}

.blog-item-img {
    position: relative
}

.blog-item-img::before {
    content: "";
    display: block;
    padding-top: 45.45455%
}

.blog-item-date {
    position: absolute;
    top: 0;
    left: 15px;
    background: var(--verde-claro);
    padding: 10px 20px
}

@media only screen and (min-width:768px) {
    .blog-item-date {
        left: 30px;
        padding: 30px
    }
}

.blog-item-date span {
    display: block;
    font-weight: 700;
    font-family: Quicksand, sans-serif;
    text-transform: uppercase
}

.blog-item-date span:first-of-type {
    font-size: 32px;
    line-height: 32px
}

@media only screen and (min-width:768px) {
    .blog-item-date span:first-of-type {
        font-size: 40px;
        line-height: 40px
    }
}

.blog-item-title {
    margin: 25px 0 10px 0
}

.blog-item-title a {
    color: inherit;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.blog-item-title a:hover {
    color: inherit;
    opacity: .75
}

.blog-item-more {
    display: inline-block;
    color: inherit;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.blog-item-more:hover {
    color: var(--verde-claro)
}

.blog-item-comments {
    font-weight: 700
}

.blog-item-comments .icon {
    color: #d6d6d6;
    font-size: 12px;
    margin-right: 10px
}

.blog-item-comments span {
    color: #a3a3a3
}

.blog-item-details {
    margin-top: 45px
}

.blog-item-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-item-author-img {
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 15px
}

.blog-item-author-name {
    font-weight: 700
}

.blog-post-img {
    position: relative;
    overflow: hidden
}

.blog-post-img::before {
    content: "";
    display: block;
    padding-top: 61.49425%
}

.blog-post-description {
    color: #333;
    font-size: 14px;
    padding: 25px 0
}

.blog-post-description span {
    display: inline-block
}

.blog-post-date {
    font-weight: 700;
    margin-right: 30px
}

.blog-post-top {
    margin-bottom: 15px
}

.blog-post-title {
    margin: 50px 0 20px 0
}

.blog-post-details {
    font-size: 14px;
    padding: 20px 25px;
    margin: 35px 0 45px 0;
    background: var(--verde-claro)
}

@media only screen and (min-width:992px) {
    .blog-post-details {
        margin: 50px 0 0 0
    }
}

.blog-post-tag {
    display: inline-block;
    color: #333;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.blog-post-tag:not(:last-of-type) {
    margin-right: 8px
}

.blog-post-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 10px
}

@media only screen and (min-width:768px) {
    .blog-post-socials {
        margin-top: 0
    }
}

@media only screen and (min-width:992px) {
    .blog-post-socials {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.blog-post-socials li:not(:last-of-type) {
    margin-right: 10px
}

.blog-post-socials a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #333;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border: 2px solid #333;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.blog-post-socials a:hover {
    background: #333;
    color: var(--verde-claro)
}

.blog-post .comments {
    margin: 35px 0 55px 0
}

@media only screen and (min-width:768px) {
    .blog-post .comments {
        margin: 35px 0 75px 0
    }
}

.blog-post-category-holder {
    background: #f9f7f6;
    padding: 45px 40px;
    margin-bottom: 40px;
    margin-top: 40px
}

@media only screen and (min-width:768px) {
    .blog-post-category-holder {
        margin-top: 0
    }
}

@media only screen and (min-width:992px) {
    .blog-post-category-holder {
        margin-bottom: 60px
    }
}

.blog-post-category {
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 700
}

.blog-post-category li:not(:last-of-type) {
    margin-bottom: 17px
}

.blog-post-category a {
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.blog-post-category a:hover {
    color: green
}

.blog-post .recent-posts {
    margin-bottom: 40px
}

@media only screen and (min-width:992px) {
    .blog-post .recent-posts {
        margin-bottom: 63px
    }
}

.blog-post .archive-list {
    margin-bottom: 40px
}

@media only screen and (min-width:992px) {
    .blog-post .acrhive-list {
        margin-bottom: 60px
    }
}

.blog-post .text-filled {
    margin: 40px 0
}

.blog-post .tags {
    margin: 10px 0 15px 0
}

@media only screen and (min-width:992px) {
    .blog-post .tags {
        margin: 0
    }
}

.blog-post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-post-author-img {
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
    z-index: 0
}

.blog-post-author-img {
    display: none
}

@media only screen and (min-width:768px) {
    .blog-post-author-img {
        display: block
    }
}

.blog-post-author-name {
    width: calc(100% - 65px);
    font-weight: 700
}

.blog-post-likes {
    margin-right: 20px
}

.blog-post-comments-count,
.blog-post-likes {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700
}

.blog-post-comments-count .icon,
.blog-post-likes .icon {
    color: #988339;
    font-size: 14px;
    margin-right: 10px
}

.blog-post .ordered-list,
.blog-post .unordered-list {
    margin: 30px 0
}

.comments-trigger {
    display: inline-block;
    position: relative;
    color: #333;
    font-size: 18px;
    cursor: pointer
}

.comments-trigger::after,
.comments-trigger::before {
    content: "";
    display: block;
    width: 6px;
    height: 2px;
    background: #333;
    position: absolute;
    pointer-events: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.comments-trigger::before {
    right: -15px;
    top: 13px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.comments-trigger::after {
    right: -18px;
    top: 13px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.comments-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.comments-item:not(:first-of-type) {
    margin-top: 50px
}

.comments-item--sub {
    padding-left: 30px
}

@media only screen and (min-width:576px) {
    .comments-item--sub {
        padding-left: 50px
    }
}

@media only screen and (min-width:992px) {
    .comments-item--sub {
        padding-left: 70px
    }
}

.comments-item-img {
    display: none;
    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden
}

@media only screen and (min-width:576px) {
    .comments-item-img {
        display: initial
    }
}

.comments-item-description {
    width: 100%
}

@media only screen and (min-width:576px) {
    .comments-item-description {
        width: calc(100% - 70px)
    }
}

.comments-item-name {
    display: inline-block;
    font-weight: 700;
    letter-spacing: -.050em;
    margin-bottom: 10px
}

@media only screen and (min-width:768px) {
    .comments-item-name {
        margin-bottom: 0
    }
}

.comments-item-date {
    color: #b3b3b3;
    font-size: 14px
}

.comments-item-action {
    color: #a3a3a3;
    cursor: pointer;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.comments-item-action:hover {
    color: var(--verde-claro)
}

.comments-item-text {
    margin-top: 10px
}

.comments-item-text p:last-of-type {
    margin-bottom: 0
}

.comments .rate-count {
    display: inline-block;
    color: #777;
    margin-left: 10px
}

.event-details-img {
    position: relative;
    margin-bottom: 65px
}

.event-details-img::before {
    content: "";
    display: block;
    padding-top: 61.40351%
}

.event-details-title {
    text-transform: uppercase
}

.event-details-bg {
    display: none
}

@media only screen and (min-width:1200px) {
    .event-details-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%
    }
}

.event-details-bg img {
    width: 100%;
    height: auto
}

.cart {
    background: #fff
}

.cart-heading {
    border-bottom: 1px solid #f4f0ed;
    padding: 25px 15px 19px 15px
}

@media only screen and (min-width:576px) {
    .cart-heading {
        padding: 25px 40px 19px 40px
    }
}

.cart-lower {
    padding: 35px 15px 60px 15px
}

@media only screen and (min-width:576px) {
    .cart-lower {
        padding: 35px 40px 60px 40px
    }
}

.cart .coupon-form {
    margin-top: 36px
}

.cart-item {
    font-size: 16px;
    font-weight: 700;
    padding: 30px 20px;
    border-bottom: 1px solid #f4f0ed
}

@media only screen and (min-width:576px) {
    .cart-item {
        padding: 30px 40px
    }
}

.cart-item-count {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    width: 140px;
    color: #87817d;
    background: #f8f8f8;
    margin: 15px auto
}

@media only screen and (min-width:992px) {
    .cart-item-count {
        margin: 0 auto
    }
}

.cart-item-input {
    color: #87817d;
    width: 40px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background: #f8f8f8
}

.cart-item input[type=number]::-webkit-inner-spin-button,
.cart-item input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.cart-item input[type=number] {
    -moz-appearance: textfield
}

.cart-item .cart-item-minus,
.cart-item .cart-item-plus {
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 50px;
    width: 50px;
    text-align: center
}

.cart-item .cart-item-minus::before,
.cart-item .cart-item-plus::after,
.cart-item .cart-item-plus::before {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background: #777;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.cart-item .cart-item-plus::after {
    width: 2px;
    height: 12px
}

.cart-item .cart-item-minus:hover::before,
.cart-item .cart-item-plus:hover::after,
.cart-item .cart-item-plus:hover::before {
    background: var(--verde-claro)
}

.cart-item-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px auto
}

@media only screen and (min-width:992px) {
    .cart-item-product {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-width: none;
        margin: 0
    }
}

.cart-item-product-name {
    width: calc(100% - 91px);
    text-align: center;
    margin-top: 15px
}

@media only screen and (min-width:992px) {
    .cart-item-product-name {
        text-align: left;
        margin-top: 0
    }
}

.cart-item-product-name a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.cart-item-product-name a:hover {
    color: inherit;
    opacity: .75
}

.cart-item-product-img {
    position: relative;
    height: 76px;
    width: 76px;
    background: #f8f8f8
}

.cart-item-product-img img {
    z-index: 0
}

.cart-item-remove {
    display: inline-block;
    cursor: pointer;
    color: #ec454c;
    font-size: 12px;
    margin-top: 10px
}

@media only screen and (min-width:992px) {
    .cart-item-remove {
        margin-top: 0
    }
}

.cart-item-price span,
.cart-item-summa span {
    display: inline-block;
    color: #777;
    font-weight: 400
}

.cart-item-price span:first-of-type,
.cart-item-summa span:first-of-type {
    margin-right: 5px
}

.cart-totals {
    display: inline-block;
    text-align: left;
    font-weight: 700
}

.cart-totals-list {
    padding: 0;
    margin: 30px 0 0 0;
    list-style: none
}

.cart-totals-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.cart-totals-list li:not(:last-of-type) {
    margin-bottom: 14px
}

.cart-totals-list li span {
    display: inline-block
}

@media only screen and (min-width:576px) {
    .cart-totals-list li span:first-of-type {
        width: 200px
    }
}

.cart-totals-link {
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    padding: 0 30px;
    height: 60px;
    line-height: 60px;
    border: 2px solid var(--verde-claro);
    margin-top: 45px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.cart-totals-link:hover {
    background: var(--verde-claro)
}

.coupon-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 40px
}

@media only screen and (min-width:576px) {
    .coupon-form {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media only screen and (min-width:992px) {
    .coupon-form {
        margin-bottom: 0
    }
}

.coupon-form .form-field {
    width: 200px;
    margin-bottom: 0
}

.coupon-form .form-submit {
    width: 200px;
    margin-top: 10px;
    padding: 15px 30px
}

@media only screen and (min-width:576px) {
    .coupon-form .form-submit {
        width: auto;
        margin-top: 0;
        margin-left: 10px
    }
}

.main-slider {
    margin-bottom: 10px
}

.main-slider-item {
    vertical-align: top
}

.main-slider-img {
    position: relative;
    background: #f8f8f8
}

.main-slider-img img {
    z-index: 0
}

.main-slider-img::before {
    content: "";
    display: block;
    padding-top: 92.98246%
}

.nav-slider .slick-track {
    margin: 0 -5px
}

.nav-slider-item {
    vertical-align: top;
    padding: 0 5px
}

.nav-slider-img {
    position: relative;
    background: #f8f8f8;
    border: 3px solid transparent;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s
}

.nav-slider-img img {
    z-index: 0
}

.slick-current .nav-slider-img {
    border: 3px solid var(--verde-claro)
}

.nav-slider-img::before {
    content: "";
    display: block;
    padding-top: 96%
}

.comments-form .form-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 700
}

.comments-form .form-field {
    margin-bottom: 30px
}

.comments-form .form-message {
    height: 190px
}

.comments-form .form-rating {
    margin-bottom: 15px
}

.comments-form .form-rating strong {
    margin-right: 10px
}

.comments-form .form-submit {
    margin-top: 20px
}

section.pilares {
    background: url('../img/pilares-home.jpg') no-repeat;
}

.aside-holder {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    transform: translateX(-320px);
    width: 100%;
    height: 100%;
    max-width: 320px;
    overflow-y: scroll;
    z-index: 10;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden
}

@media only screen and (min-width:992px) {
    .aside-holder {
        position: static;
        max-width: none;
        overflow: auto;
        z-index: 0;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.aside-holder--visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.aside-holder .recent-posts {
    display: none
}

@media only screen and (min-width:992px) {
    .aside-holder .recent-posts {
        display: block
    }
}

.brand-filter {
    padding: 0;
    margin: 0;
    list-style: none
}

.brand-filter-item {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.brand-filter-item:not(:last-of-type) {
    margin-bottom: 9px
}

.brand-filter-item span:first-of-type {
    width: 85%
}

.brand-filter-item span:first-of-type::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--verde-claro);
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.brand-filter-item span {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.brand-filter-item span .icon {
    font-size: 25px;
    margin-right: 20px
}

.brand-filter-item-active {
    pointer-events: none
}

.brand-filter-item-active span {
    font-weight: 700
}

.brand-filter-item-active span:first-of-type::after,
.brand-filter-item:hover span:first-of-type::after {
    width: 50px
}

.range-slider .irs-from,
.range-slider .irs-max,
.range-slider .irs-min,
.range-slider .irs-single,
.range-slider .irs-to {
    display: none
}

.range-slider .irs-handle {
    height: 18px;
    width: 18px;
    top: 29px;
    border: 2px solid #e1e1e1;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--verde-claro);
    cursor: pointer
}

.range-slider .irs-handle:hover {
    background: var(--verde-claro)
}

.range-slider .irs-handle::after {
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%
}

.range-slider .irs-bar,
.range-slider .irs-line {
    background: #e1e1e1
}

.range-slider-values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px
}

.range-slider-input {
    height: 50px;
    width: 90px;
    border: 2px solid #e1e1e1;
    text-align: center;
    color: #999;
    font-size: 14px;
    font-weight: 700
}

@media only screen and (min-width:1200px) {
    .range-slider-input {
        width: 120px
    }
}

.filter-form {
    font-size: 14px
}

.filter-form .form-clear {
    display: inline-block;
    cursor: pointer;
    color: #333;
    font-weight: 700;
    width: 120px;
    padding: 16px 30px;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

@media only screen and (min-width:1200px) {
    .filter-form .form-clear {
        margin-top: 0
    }
}

.filter-form .form-clear:hover {
    color: #333;
    opacity: .7
}

.filter-form .form-submit {
    padding: 16px 30px;
    width: 120px;
    text-align: center
}

.checkout {
    background: #f9f9f9
}

.checkout-wrapper {
    background: #fff;
    padding: 45px 15px 50px 15px
}

@media only screen and (min-width:576px) {
    .checkout-wrapper {
        padding: 45px 30px 50px 30px
    }
}

.checkout-form .form-message {
    height: 180px
}

.checkout-form .form-fieldset {
    margin-bottom: 45px
}

.checkout-form .form-submit {
    margin-top: 35px
}

.checkout-form .form-radio-label:not(:last-of-type) {
    margin-right: 40px;
    margin-bottom: 15px
}

.checkout-form .form-payments {
    margin-bottom: 20px
}

.checkout-form>.row>div:nth-of-type(2) {
    margin-top: 50px
}

@media only screen and (min-width:992px) {
    .checkout-form .row>div:nth-of-type(2) {
        margin-top: 0
    }
}

.order-item {
    line-height: 20px
}

.order-item:not(:last-of-type) {
    margin-bottom: 20px
}

.order-item-img {
    position: relative;
    height: 76px;
    width: 76px;
    background: #f8f8f8
}

.order-item-img img {
    z-index: 0;
    max-width: 70%;
    max-height: 70%
}

.order-item-link {
    color: #333;
    font-weight: 700;
    letter-spacing: -.050em;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.order-item-link:hover {
    color: #333;
    opacity: .75
}

.order-item-description span {
    display: block;
    color: #b3b3b3;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px
}

.order-item-price {
    font-size: 16px;
    font-weight: 700
}

.order-item-remove {
    cursor: pointer;
    position: relative;
    top: -2px;
    color: #ec454c;
    font-size: 12px
}

.order-item-count span {
    display: inline-block
}

.order-item-count span:first-of-type {
    margin-right: 20px
}

.donation-details-img {
    position: relative
}

.donation-details-img::before {
    content: "";
    display: block;
    padding-top: 46.15385%
}

.donation-details-title {
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 30px
}

.donation-details-title strong {
    font-weight: 700
}

.donation-form-title {
    margin-bottom: 15px
}

@media only screen and (min-width:768px) {
    .donation-form-title {
        margin-bottom: 0
    }
}

.donation-form-title span {
    color: var(--verde-claro)
}

.donation-form .form-checkbox-label .form-label-text {
    font-size: 14px
}

.donation-form .form-message {
    min-height: 150px
}

.tours-link {
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.tours-link:hover {
    color: #333;
    opacity: .75
}

.tours-item {
    position: relative;
    color: #fff;
    overflow: hidden
}

.tours-item-img {
    position: relative
}

.tours-item-img::before {
    content: "";
    display: block;
    padding-top: 145.94595%
}

.tours-item-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 45px 20px;
    -webkit-transform: translateY(63px);
    -ms-transform: translateY(63px);
    transform: translateY(63px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media only screen and (min-width:768px) {
    .tours-item-details {
        padding: 50px 50px 45px 50px
    }
}

.tours-item-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 34px
}

@media only screen and (min-width:768px) {
    .tours-item-title {
        font-size: 30px;
        line-height: 40px
    }
}

.tours-item-title span {
    font-weight: 300
}

.tours-item-price {
    color: var(--verde-claro);
    font-size: 18px;
    font-weight: 700;
    margin: 26px 0 5px 0
}

.tours-item-edition {
    text-transform: uppercase
}

.tours-item-link {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-top: 38px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.tours-item-link::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--verde-claro);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s
}

.tours-item-link:hover::after {
    width: 100%
}

.tours-item:hover .tours-item-details {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.tours-item:hover .tours-item-link {
    opacity: 1;
    visibility: visible
}

.info-block::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(40, 47, 52, .5);
    top: 0;
    left: 0
}

.info-block-button {
    color: #fff;
    margin-top: 45px
}

section.instagram {
    padding: 32px 0 0 0
}

.instagram-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 98px;
    width: 100%
}

.instagram-icon {
    font-size: 32px;
    line-height: 1
}

.instagram-slider-nav {
    margin-top: 40px
}

@media only screen and (min-width:768px) {
    .instagram-slider-nav {
        padding-bottom: 10px;
        margin: 0
    }
}

.instagram-slider-item {
    position: relative;
    vertical-align: top;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s
}

.instagram-slider-item::before {
    content: "";
    display: block;
    padding-top: 83.96226%
}

.instagram-slider-item .fa {
    color: #fff;
    font-size: 18px
}

.instagram-slider-item .instagram-slider-icon {
    position: absolute;
    left: 15px;
    bottom: 15px;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.instagram-slider-item:hover .instagram-slider-icon {
    opacity: 0
}

.instagram-slider-icon-hover {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.instagram-slider-icon-hover .fa {
    font-size: 24px
}

.instagram-slider-item:hover .instagram-slider-icon-hover {
    opacity: 1
}

.instagram-slider .slick-slide {
    margin: 0 3px
}

.instagram-slider .slick-list {
    margin: 0 -3px
}

.instagram-slider--style-2 .slick-slide {
    margin: 0
}

.instagram-slider--style-2 .slick-list {
    margin: 0
}

.instagram-slider--green .instagram-slider-item {
    background: rgba(46, 184, 114, 0)
}

.instagram-slider--green .instagram-slider-item:hover {
    background: rgba(46, 184, 114, .5)
}

.instagram-slider--green .instagram-slider-item:hover .instagram-slider-icon {
    opacity: 1
}

.instagram--front-5 .heading-title {
    font-size: 18px;
    line-height: 38px
}

.instagram--front-5 .instagram-slider-item:hover {
    background: rgba(253, 211, 64, .5)
}

.footer {
    font-size: 14px;
    position: relative;
    background: #282f34;
    padding: 65px 0 45px 0
}

.footer-bg {
    z-index: 0
}

.footer-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    font-size: 18px;
    padding-top: 10px
}

.footer-details {
    color: #c9cdcf;
    margin-top: 25px
}

.footer-details p:not(:last-of-type) {
    margin-bottom: 5px
}

.footer-details p:last-of-type {
    margin-bottom: 0
}

.footer-details a {
    color: #c9cdcf;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.footer-details a:hover {
    color: var(--verde-claro)
}

.footer-details a:not(:last-of-type) {
    margin-right: 8px
}

.footer .socials {
    margin-top: 35px
}

.footer-link,
.footer-link img {
    display: inline-block
}

.footer-link img {
    height: 30px;
    width: auto
}

.footer p {
    color: inherit
}

.footer-additional {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0 0 25px 0;
    list-style: none
}

@media only screen and (min-width:576px) {
    .footer-additional {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media only screen and (min-width:768px) {
    .footer-additional {
        margin: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.footer-additional li:not(:last-of-type) {
    margin-right: 30px
}

.footer-additional a {
    color: #83888b
}

.footer-additional a:hover {
    color: var(--verde-claro);
    text-decoration: underline
}

.footer-schedule {
    margin: 18px 0 28px 0;
    padding: 0;
    left: 0;
    list-style: none;
    color: #c9cdcf
}

@media only screen and (min-width:992px) {
    .footer-schedule {
        margin-bottom: 0
    }
}

.footer-schedule li {
    margin-bottom: 8px
}

.footer-schedule li span {
    display: inline-block
}

.footer-schedule li span:first-of-type {
    width: 40%
}

.footer-schedule li span:last-of-type {
    color: #2eb872;
    width: 60%
}

.logo--footer {
    color: #fff
}

.logo--footer:hover {
    color: #fff
}

.logo.logo--footer .logo-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.logo.logo--footer .logo-img {
    display: inline-block;
    width: auto;
    height: 50px
}

@media only screen and (min-width:1367px) {
    .logo.logo--footer .logo-img {
        height: 60px
    }
}

.footer-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 260px;
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none
}

@media only screen and (min-width:992px) {
    .footer-menu {
        max-width: 300px
    }
}

.footer-menu-item {
    width: 50%;
    margin-bottom: 8px
}

.footer-menu-link {
    color: #c9cdcf;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.footer-menu-link:hover {
    color: var(--verde-claro);
    text-decoration: none
}

.footer-submenu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none
}

.footer-submenu-item {
    margin-bottom: 8px
}

.footer-submenu-link {
    color: var(--verde-claro);
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.footer-submenu-link:hover {
    color: #c9cdcf;
    text-decoration: none
}

.footer-menu--style-2 .footer-menu-item {
    width: 100%
}

.footer-menu--style-2 .footer-menu-link {
    text-decoration: underline
}

.footer-menu--style-2 .footer-menu-link:hover {
    color: #2eb872;
    text-decoration: none
}

.footer-instagram {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px -4px 0 -4px
}

.footer-instagram-item {
    width: calc(33.333% - 8px);
    margin: 4px
}

.footer-instagram-img {
    overflow: hidden;
    position: relative;
    z-index: 2
}

.footer-instagram-img::before {
    content: "";
    position: relative;
    display: block;
    padding-top: 100%;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    z-index: 2
}

.footer-instagram .img-bg {
    z-index: 0
}

.footer-instagram-item:hover .footer-instagram-img::before {
    background: rgb(76 175 80 / 45%)
}

.footer-privacy {
    color: #83888b;
    margin-bottom: 30px
}

@media only screen and (min-width:576px) {
    .footer-privacy {
        margin-bottom: 0
    }
}

.footer-privacy-link {
    color: #83888b;
    text-decoration: none
}

.footer-privacy-link:hover {
    color: var(--verde-claro);
    text-decoration: underline
}

.footer-privacy-divider {
    color: #83888b;
    padding: 0 8px
}

.footer-payments {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0;
    margin: 13px 0 0 0;
    list-style: none
}

.footer-payments-item:not(:last-of-type) {
    margin-right: 10px
}

.footer-payments-item {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

.footer-payments-item:hover {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    opacity: .6
}

.footer-payments img {
    height: 35px;
    width: auto
}

.footer--front-2 {
    padding: 0
}

.footer--front-2 .footer-privacy {
    margin: 20px 0 15px 0
}

@media only screen and (min-width:992px) {
    .footer--front-2 .footer-privacy {
        margin: 0
    }
}

.footer--front-2 .footer-details a:not(:last-of-type) {
    margin-right: 0
}

.footer--front-2 .footer-details a:not(:first-of-type) {
    margin-left: 8px
}

.footer--front-2 .footer-top {
    padding: 55px 0 67px 0
}

@media only screen and (min-width:992px) {
    .footer--front-2 .footer-top {
        padding: 75px 0 87px 0
    }
}

.footer--front-2 .footer-privacy-link:hover {
    color: #30e3ca
}

.footer--front-2 .footer-details a:hover {
    color: #30e3ca
}

.footer--front-2 .footer-lower {
    position: relative;
    z-index: 1;
    background: #192126;
    padding: 46px 0
}

.footer--front-2 .footer-details {
    margin-top: 0
}

.footer--front-2 .footer-link img {
    height: 50px
}

.footer--front-2 .socials {
    margin: 40px 0 29px 0
}

@media only screen and (min-width:992px) {
    .footer--front-2 .socials {
        margin: 60px 0 49px 0
    }
}

.footer--front-2 .socials-link {
    font-size: 20px
}

.footer--front-2 .socials-link:hover {
    color: #30e3ca
}

.footer--front-2 .footer-menu,
.footer--front-2 .footer-submenu,
.footer--front-2 .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: none
}

.footer--front-2 .footer-menu-item {
    width: auto;
    margin-bottom: 3px
}

.footer--front-2 .footer-menu-item:not(:last-of-type) {
    margin-right: 25px
}

.footer--front-2 .footer-menu-link {
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

.footer--front-2 .footer-menu-link:hover {
    color: #30e3ca
}

.footer--front-2 .footer-submenu-link {
    color: #30e3ca
}

.footer--front-2 .footer-submenu-link:hover {
    color: #fff
}

.footer--front-2 .footer-submenu-item {
    margin-bottom: 3px
}

.footer--front-2 .footer-submenu-item:not(:last-of-type) {
    margin-right: 20px
}

.footer--front-3 .footer-privacy-link:hover,
.footer--front-3 .footer-details a:hover,
.footer--front-3 .socials-link:hover {
    color: #2eb872
}

.newsletter-form {
    margin-top: 20px
}

.newsletter-form .form-field {
    color: #c9cdcf;
    background: 0 0;
    border: 2px solid #3d474e;
    margin-bottom: 10px;
    padding: 11px 20px
}

.newsletter-form .form-field::-webkit-input-placeholder {
    color: #c9cdcf
}

.newsletter-form .form-field::-moz-placeholder {
    color: #c9cdcf
}

.newsletter-form .form-field:-ms-input-placeholder {
    color: #c9cdcf
}

.newsletter-form .form-field::-ms-input-placeholder {
    color: #c9cdcf
}

.newsletter-form .form-field::placeholder {
    color: #c9cdcf
}

.newsletter-form .form-submit {
    margin-top: 20px;
    color: #fff;
    border: 2px solid #2eb872
}

.newsletter-form .form-submit:hover {
    background: #2eb872
}

.footer--front_5 .logo--footer {
    margin-bottom: 15px
}

.footer--front_5 .footer-menu {
    max-width: 170px
}

@media only screen and (min-width:1200px) {
    .footer--front_5 .footer-menu {
        max-width: 200px
    }
}

.footer--front_5 .footer-details {
    margin-top: 18px
}

.footer--front_5 .socials {
    margin-bottom: 28px
}

.footer--front_5 .socials-link {
    font-size: 20px
}


/*# sourceMappingURL=styles.min.css.map */