a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  line-height: inherit;
  color: #DDA520;
}
a:hover {
  text-decoration: underline;
}
a img {
  border: none;
}
/* Default paragraph styles */
p,
span {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
  text-rendering: optimizeLegibility;
  color: #fff;
}
p strong,
span strong,
p b,
span b {
  font-weight: 600;
  line-height: inherit;
}
form input[type],
form select,
form span,
form label,
form textarea {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
form button[type] {
  font-family: "Poppins", sans-serif;
}
/* Default header styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 200;
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #fff;
}
/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit;
}
strong,
b {
  font-weight: 700;
  line-height: inherit;
}
small {
  font-size: 60%;
  line-height: inherit;
}
/* Lists */
ul,
ol,
dl {
  font-family: "Poppins", sans-serif;
  list-style-position: outside;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
}
code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #333333;
  background-color: #f8f8f8;
  border-width: 1px;
  border-style: solid;
  border-color: #e0e0e0;
  padding: 0.125rem 0.3125rem 0.0625rem;
}
/*
All snippets
**/
.relative {
  position: relative;
}
.text-center {
  text-align: center;
}
/*
Icomoon
**/
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*
Responsive image canvas
**/
figure.image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
figure.image img {
  visibility: hidden;
}
figure.image.contain {
  background-size: contain;
}
.image-item {
  height: auto;
}
img {
  max-width: 100%;
}
/*
Flexbox snippets
**/
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
.align-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.align-start {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.align-end {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.justify-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.justify-evenly {
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.justify-between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.justify-around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.justify-end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.justify-start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-centered {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media (max-width: 70em) {
  .tablet-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 40em) {
  .mobile-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/*
Colors
**/
/*
Structure
**/
*:focus {
  outline: none;
}
html,
body {
  height: 100%;
  background-color: #141414;
}
[class*="grid-"] {
  margin: 0 -0.625rem;
}
/*
Fetures
**/
.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.opacity:hover {
  opacity: 0.6;
  text-decoration: none;
}
.opacity-translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.opacity-translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.default-button {
  text-align: center;
  font-size: 16px;
  border: none;
  color: #ffffff;
  background-color: #408365;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
}
@media (max-width: 40em) {
  .default-button {
    font-size: 14px;
  }
}
.default-button:hover {
  background-color: #DDA520;
  text-decoration: none;
}
.default-button img,
.default-button i {
  margin-left: 8px;
}
.default-button.translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.default-button.translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.default-button.white {
  border: solid 1px #ffffff;
}
.default-button.full {
  width: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.default-button.small {
  padding: 10px 15px;
  font-size: 12px;
}
.spacing {
  padding: 60px 0;
}
@media (max-width: 40em) {
  .spacing {
    padding: 20px 0;
  }
}
form input[type],
form textarea,
form select,
form label.file {
  border: 1px solid #ffffff;
  background-color: transparent;
  height: 45px;
  padding: 10px;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-size: 15px;
  border-radius: 50px;
}
form input[type]:focus,
form textarea:focus,
form select:focus,
form label.file:focus {
  border: 1px solid #626366;
  outline: 0;
}
form input[type]::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
form label.file::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  font-size: 15px;
}
form input[type]::-moz-placeholder,
form textarea::-moz-placeholder,
form select::-moz-placeholder,
form label.file::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  font-size: 15px;
}
form input[type]:-ms-input-placeholder,
form textarea:-ms-input-placeholder,
form select:-ms-input-placeholder,
form label.file:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  font-size: 15px;
}
form textarea {
  height: 150px;
}
/*
Slick slider
**/
.slider {
  position: relative;
}
.slider .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 0;
  z-index: 2;
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider .slick-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #408365;
  opacity: 0.4;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.slider .slick-arrow.slick-prev {
  left: 10px;
}
@media (max-width: 80em) {
  .slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.slider .slick-arrow.slick-prev::before {
  content: "\f060";
}
.slider .slick-arrow.slick-next {
  right: 10px;
}
@media (max-width: 80em) {
  .slider .slick-arrow.slick-next {
    right: 0;
  }
}
.slider .slick-arrow.slick-next::before {
  content: "\f061";
}
.slider .slick-arrow:hover::before {
  opacity: 0.8;
}
.slider .slick-dots {
  list-style: none;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider .slick-dots > li {
  margin: 0 5px;
}
.slider .slick-dots > li button {
  font-size: 0;
  border: none;
  background-color: transparent;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.slider .slick-dots > li button::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #DDA520;
  display: block;
  border-radius: 50%;
}
.slider .slick-dots > li.slick-active button::before {
  background-color: #408365;
}
@media (max-width: 70em) {
  .wrap-page {
    padding-top: 90px;
  }
}
/*
Slider
*/
.bv_hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.filled_obj {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-slider {
  padding-top: 140px;
}
@media (max-width: 70em) {
  .main-slider {
    padding-top: 40px;
  }
}
.main-slider .main-slider {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 8vw;
  margin-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
}
@media (max-width: 70em) {
  .main-slider .main-slider {
    height: auto;
  }
}
.main-slider .main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.main-slider .row2 {
  max-width: 100%;
}
.main-slider .row2 .sm-12 {
  padding: 0;
}
.main-slider .slick-slide {
  position: relative;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  min-height: 400px;
  /*&::before {
            .filled_obj;
            .bv_hidden;
            opacity: 1;
            z-index: 1;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
        }*/
}
@media (max-width: 40em) {
  .main-slider .slick-slide {
    height: auto;
    min-height: 100px;
  }
}
.main-slider .slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.main-slider .slick-slide iframe {
  position: relative;
  pointer-events: none;
}
.main-slider .slick-slide figure {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-slider .slick-slide figure img {
  visibility: hidden !important;
}
.main-slider .slick-slide figure img.fotodois {
  visibility: visible !important;
  width: 100%;
  height: auto;
}
.main-slider .slick-slide .slide-image {
  opacity: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.main-slider .slick-slide .slide-image.show {
  opacity: 1;
}
.main-slider .slick-slide .image-entity {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.main-slider .slick-slide .loading {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #141414;
  font-style: italic;
  font-size: 22px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.main-slider .slick-slide .slide-media {
  animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active {
  z-index: 1;
}
.main-slider .slick-slide.slick-active .slide-media {
  animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active .caption {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
.main-slider .text {
  width: 100%;
  position: relative;
  left: 0;
  color: #fff;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
}
.main-slider .text h2 {
  font-size: 16px;
  text-transform: uppercase;
  color: #408365;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 40em) {
  .main-slider .text h2 {
    font-size: 14px;
  }
}
.main-slider .text h1 {
  font-size: 64px;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  display: block;
  /*text-align: center;
            border: solid 1px #fff;
            
            padding: 30px 40px;
            background-color: rgba(255, 255, 255, 0.2);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(8px);*/
  margin-bottom: 20px;
}
.main-slider .text h1 strong,
.main-slider .text h1 b {
  font-weight: 700;
  color: #DDA520;
}
@media (max-width: 80em) {
  .main-slider .text h1 {
    font-size: 55px;
  }
}
@media (max-width: 70em) {
  .main-slider .text h1 {
    font-size: 39px;
  }
}
.main-slider .text p {
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.main-slider .text a,
.main-slider .text span {
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  border: none;
  color: #ffffff;
  background-color: #408365;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  white-space: nowrap;
}
@media (max-width: 40em) {
  .main-slider .text a,
  .main-slider .text span {
    font-size: 14px;
  }
}
.main-slider .text a:hover,
.main-slider .text span:hover {
  background-color: #DDA520;
  text-decoration: none;
}
.main-slider .text a img,
.main-slider .text span img,
.main-slider .text a i,
.main-slider .text span i {
  margin-left: 8px;
}
.main-slider .text a.translate,
.main-slider .text span.translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.main-slider .text a.translate:hover,
.main-slider .text span.translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.main-slider .text a.white,
.main-slider .text span.white {
  border: solid 1px #ffffff;
}
.main-slider .text a.full,
.main-slider .text span.full {
  width: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.main-slider .text a.small,
.main-slider .text span.small {
  padding: 10px 15px;
  font-size: 12px;
}
.main-slider .text2 {
  width: 100%;
  position: relative;
  top: 25%;
  color: #fff;
  z-index: 1;
  /*@media (max-width: 40em) {
            top: 50%;
        }*/
}
@media (max-width: 40em) {
  .main-slider .text2 {
    padding: 20px 0;
  }
}
@media (max-width: 40em) {
  .main-slider .text2 .row {
    gap: 10px;
  }
}
@media (min-width: 70em) {
  .main-slider .text2 .row {
    min-width: 1175px;
  }
}
.main-slider .text2 .foto {
  padding: 0;
  position: relative;
  z-index: 1;
}
.main-slider .text2 .foto::before {
  content: '';
  width: 92px;
  height: 108px;
  background-image: url('../../images/bg-slider.svg');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 100px;
  right: -70px;
  z-index: 1;
}
.main-slider .text2 .foto figure {
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.12);
}
.main-slider .text2 .foto img {
  width: 100%;
  height: auto;
}
.main-slider .text2 h2 {
  font-size: 40px;
  color: #ffffff;
  line-height: 1.1;
  display: block;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 40em) {
  .main-slider .text2 h2 {
    font-size: 26px;
  }
}
.main-slider .text2 h1 {
  font-size: 40px;
  color: #ffffff;
  line-height: 1.1;
  display: block;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  /*text-align: center;
            border: solid 1px #fff;
            
            padding: 30px 40px;
            background-color: rgba(255, 255, 255, 0.2);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(8px);*/
  margin: 20px 0;
  position: relative;
}
.main-slider .text2 h1 strong,
.main-slider .text2 h1 b {
  font-weight: 700;
}
@media (max-width: 75em) {
  .main-slider .text2 h1 {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
.main-slider .text2 p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 410px;
}
@media (max-width: 40em) {
  .main-slider .text2 p {
    margin-bottom: 55px;
    font-size: 12px;
  }
}
.main-slider .text2 a.default-button,
.main-slider .text2 a.inner-button,
.main-slider .text2 span {
  text-align: center;
  font-size: 16px;
  border: none;
  color: #ffffff;
  background-color: #408365;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  margin-bottom: 0;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 40em) {
  .main-slider .text2 a.default-button,
  .main-slider .text2 a.inner-button,
  .main-slider .text2 span {
    font-size: 14px;
  }
}
.main-slider .text2 a.default-button:hover,
.main-slider .text2 a.inner-button:hover,
.main-slider .text2 span:hover {
  background-color: #DDA520;
  text-decoration: none;
}
.main-slider .text2 a.default-button img,
.main-slider .text2 a.inner-button img,
.main-slider .text2 span img,
.main-slider .text2 a.default-button i,
.main-slider .text2 a.inner-button i,
.main-slider .text2 span i {
  margin-left: 8px;
}
.main-slider .text2 a.default-button.translate,
.main-slider .text2 a.inner-button.translate,
.main-slider .text2 span.translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.main-slider .text2 a.default-button.translate:hover,
.main-slider .text2 a.inner-button.translate:hover,
.main-slider .text2 span.translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.main-slider .text2 a.default-button.white,
.main-slider .text2 a.inner-button.white,
.main-slider .text2 span.white {
  border: solid 1px #ffffff;
}
.main-slider .text2 a.default-button.full,
.main-slider .text2 a.inner-button.full,
.main-slider .text2 span.full {
  width: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.main-slider .text2 a.default-button.small,
.main-slider .text2 a.inner-button.small,
.main-slider .text2 span.small {
  padding: 10px 15px;
  font-size: 12px;
}
.main-slider .text2 a.default-button img,
.main-slider .text2 a.inner-button img,
.main-slider .text2 span img {
  display: none;
}
.main-slider .text2 a.logo {
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 40em) {
  .main-slider .text2 a.logo {
    margin-bottom: 20px;
  }
}
.main-slider .text2 a.logo img {
  max-width: 500px;
}
@media (max-width: 84em) {
  .main-slider .text2 a.logo img {
    max-width: 420px;
    margin-bottom: 20px;
  }
}
.main-slider .slick-current .text {
  animation-name: fadein;
  -webkit-animation-name: fadein;
  opacity: 1;
  visibility: visible;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}
@keyframes fadein {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  5% {
    opacity: 0;
    visibility: hidden;
  }
  35% {
    opacity: 1;
    visibility: visible;
  }
  85% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.main-slider .slick-dots {
  display: none!important;
}
.list-page .sidebar h3 {
  text-transform: uppercase;
  font-size: 16px;
}
.list-page .sidebar h3 strong {
  position: relative;
  color: #408365;
  font-weight: 600;
}
.list-page .sidebar h3 strong::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #408365;
  position: absolute;
  left: 0;
  top: -10px;
}
.list-page .sidebar .categories {
  list-style: none;
  margin-bottom: 10px;
}
.list-page .sidebar .categories > li:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}
.list-page .sidebar .categories > li > a {
  color: #141414;
  font-size: 15px;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  padding: 10px 0;
}
.list-page .sidebar .categories > li > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.list-page .sidebar .categories > li .submenu {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
  display: none;
}
.list-page .sidebar .categories > li .submenu > li a {
  color: #141414;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.list-page .sidebar .categories > li .submenu > li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.list-page .sidebar .categories > li .submenu > li ul {
  list-style: none;
  padding-left: 30px;
  display: none;
}
.list-page .sidebar .categories > li .submenu > li ul li a {
  color: #141414;
}
.list-page .sidebar .categories > li .submenu > li.active > a {
  color: #408365;
}
.list-page .sidebar .categories > li.active > a {
  color: #408365;
}
.list-page .sidebar ul {
  list-style: none;
  margin-bottom: 10px;
}
.list-page .sidebar ul li {
  line-height: 1.1;
}
.list-page .sidebar ul li a {
  color: #141414;
  font-size: 15px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.list-page .sidebar ul li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.list-page .sidebar ul li a.active {
  color: #408365;
}
.list-page .sidebar ul li ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list-page .sidebar ul li ul li {
  margin-left: 20px;
}
.list-page .filters {
  margin-bottom: 40px;
}
.list-page .filters form {
  position: relative;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.list-page .filters form > div {
  margin-left: 30px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media (max-width: 40em) {
  .list-page .filters form > div {
    margin-left: 10px;
  }
}
.list-page .filters form > div h5 {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  text-transform: uppercase;
}
.list-page .filters form > div select {
  margin: 0 0 0 10px;
}
/*
Blog
*/
.blog-list {
  list-style: none;
}
.blog-list li {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 30px;
}
.blog-list li figure {
  margin: 0 0 0 -1rem;
  border-radius: 30px;
}
.blog-list li a {
  display: block;
  border: 1px solid #f7f7f7;
  padding: 16px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  border-radius: 30px;
}
.blog-list li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.blog-list li a header {
  height: 100%;
  position: relative;
  margin: 10px -1em 0 -1em;
}
.blog-list li a header h2 {
  font-weight: 600;
  font-size: 24px;
  text-transform: initial;
}
.blog-list li a header span {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #141414;
  margin: 0;
  font-style: italic;
  font-size: 12px;
}
.widgets {
  padding: 40px;
  margin-bottom: 40px;
  background-color: #DDA520;
  border-radius: 30px;
}
@media (max-width: 70em) {
  .widgets {
    padding: 20px;
  }
}
@media (max-width: 40em) {
  .widgets {
    margin-top: 40px;
  }
}
.widgets h3 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #ffffff;
}
.widgets form {
  position: relative;
  margin-bottom: 40px;
}
.widgets form input[type] {
  background-color: #ffffff;
}
.widgets form button {
  position: absolute;
  right: 10px;
  top: 50%;
  background: transparent;
  border: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widgets ul {
  list-style: none;
}
.widgets ul li a {
  color: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.widgets ul li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.widgets ul li a.active {
  font-weight: 400;
}
.pagination {
  list-style: none;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.pagination li {
  margin: 0 5px;
}
.pagination li a {
  background-color: #141414;
  color: #ffffff;
  display: block;
  width: 20px;
  line-height: 1.2;
  border-radius: 30px;
  padding: 4px 10px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.pagination li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.pagination li a.current {
  background-color: #626366;
}
.pagination li.current {
  background-color: #626366;
}
.pagination li:not(:first-child) a,
.pagination li:not(:last-child) a {
  width: auto;
}
.blog-content h1 {
  font-size: 30px;
}
.blog-content .wrap-featured-image {
  margin-bottom: 16px;
}
.blog-content .wrap-featured-image .featured-image {
  display: block;
  float: right;
  margin-left: 15px;
}
.blog-content .wrap-featured-image .featured-image img {
  border-radius: 30px;
  max-width: 400px;
  height: auto;
}
.blog-content .wrap-featured-image iframe {
  width: 100%;
  margin-top: 40px;
}
.blog-content .wrap-featured-image a:hover {
  text-decoration: none;
}
.blog-content .carousel-blog {
  margin: 10px -10px 0 -10px;
}
.blog-content .carousel-blog .item {
  padding: 10px;
}
.blog-content .carousel-blog .item a:hover {
  text-decoration: none;
}
.blog-content .carousel-blog .slick-arrow {
  bottom: 50%;
  color: #ffffff;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.blog-content .carousel-blog .slick-arrow.slick-prev {
  left: -30px;
}
.blog-content .carousel-blog .slick-arrow.slick-next {
  right: -30px;
}
.blog-content .addthis_inline_share_toolbox span {
  margin: 0;
}
.blog-content figcaption {
  color: #408365;
  text-decoration: none;
  font-size: 12px;
  font-style: italic;
  padding: 0 0 2px 2px;
  text-align: center;
  margin-left: 15px;
  margin-bottom: 10px;
}
/*
Header
*/
.addthis_inline_share_toolbox {
  margin: 40px 0;
}
.header-bar {
  padding: 10px 0 10px 0;
  background: #DDA520;
}
@media (max-width: 70em) {
  .header-bar {
    display: none;
  }
}
.header-bar .list {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.header-bar .list > div {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-right: 40px;
}
.header-bar .list > div img {
  margin-right: 10px;
}
.header-bar .list > div a {
  color: #ffffff;
  font-size: 14px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.header-bar .list > div a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.header-bar .list > div h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.header-bar .list > div span {
  color: #ffffff;
  margin: 0 5px;
}
.header-bar .list > div.wrap-drop {
  position: relative;
}
.header-bar .list > div.wrap-drop .drop {
  margin-left: 10px;
}
.header-bar .social {
  list-style: none;
  margin: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.header-bar .social li {
  margin-left: 15px;
}
.header-bar .social li a {
  display: block;
  color: #408365;
}
.header-bar .social li a img {
  display: block;
}
.wrap-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #141414;
  z-index: 4;
}
.wrap-header .header-bottom-bar {
  background-color: #408365;
  padding: 10px;
}
.wrap-header .header-bottom-bar .list {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.wrap-header .header-bottom-bar .list > div {
  margin: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.wrap-header .header-bottom-bar .list > div i {
  margin-right: 5px;
  font-size: 16px;
}
.wrap-header .header-bottom-bar .list > div a,
.wrap-header .header-bottom-bar .list > div h4 {
  display: block;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  margin: 0;
}
.wrap-header .header-bottom-bar .list > div a:hover,
.wrap-header .header-bottom-bar .list > div h4:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-header .header-bottom-bar .list > div span {
  margin: 0 5px;
  color: #ffffff;
}
.wrap-header .inner {
  padding: 10px 0;
}
.wrap-header .inner .logo img {
  max-width: 130px;
  height: auto;
  width: 100%;
}
.wrap-header .inner .menu {
  list-style: none;
  margin: 0;
}
.wrap-header .inner .menu li a {
  color: #ffffff;
  font-weight: normal;
  font-size: 18px;
  display: block;
  position: relative;
}
.wrap-header .inner .menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #408365;
  transition: width 0.5s;
}
.wrap-header .inner .menu li a:hover {
  text-decoration: none;
}
.wrap-header .inner .menu li a:hover::before {
  width: 100%;
}
.wrap-header .inner .menu li a.whatsapp,
.wrap-header .inner .menu li a.featured {
  text-decoration: none;
}
.wrap-header .inner .menu li a.whatsapp::before,
.wrap-header .inner .menu li a.featured::before {
  width: 0;
}
.wrap-header .inner .menu li a.whatsapp::before:hover,
.wrap-header .inner .menu li a.featured::before:hover {
  width: 0;
}
.wrap-header .inner .menu li a.whatsapp i,
.wrap-header .inner .menu li a.featured i {
  font-size: 20px;
}
.wrap-header .inner .menu li a.featured {
  text-align: center;
  font-size: 16px;
  border: none;
  color: #ffffff;
  background-color: #408365;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
}
@media (max-width: 40em) {
  .wrap-header .inner .menu li a.featured {
    font-size: 14px;
  }
}
.wrap-header .inner .menu li a.featured:hover {
  background-color: #DDA520;
  text-decoration: none;
}
.wrap-header .inner .menu li a.featured img,
.wrap-header .inner .menu li a.featured i {
  margin-left: 8px;
}
.wrap-header .inner .menu li a.featured.translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.wrap-header .inner .menu li a.featured.translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.wrap-header .inner .menu li a.featured.white {
  border: solid 1px #ffffff;
}
.wrap-header .inner .menu li a.featured.full {
  width: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.wrap-header .inner .menu li a.featured.small {
  padding: 10px 15px;
  font-size: 12px;
}
.wrap-header .inner .menu li a.whatsapp {
  color: #ffffff;
}
/*.home .wrap-header {
    position: absolute;
    background-color: transparent;

    .inner {
        .menu {
            li {
                a {
                    color: @white;
                }
            }
        }
    }
}*/
/*
Banner
*/
/*
.card-banner {
	
	.image-item {
		position: relative;
		
		.text {
			position: absolute;
			width: 100%;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			
			h2 {
				font-size: 16px;
				text-transform: uppercase;
				color: @white;
				font-weight: 500;
				@media (max-width: 40em) {
					font-size: 14px;
				}
			}
			
			h3 {
				font-size: 40px;
				color: @white;
				line-height: 1.2;
				font-weight: 500;
				
				@media (max-width: 40em) {
					font-size: 24px;
				}
			}
			
			a,span {
				.default-button;
			}
		}
	}
}


.vimeo-wrapper {
	width: 100%;
	//height: 100vh;
	height: 64.9vh;
	//z-index: 2;
	position: relative;
	overflow: hidden;
	display: none;
	
	
	.text {
		z-index: 3;
		.card-banner .image-item .text;
	}
	
	iframe {
		position: absolute;
		
		z-index: -99;
		//width: 101vw;
		width: 100%;
		//height: 56.8125vw;
		//min-height: 101vh;
		min-height: 116vh;
		//min-width: 179.555555vh;
		//	position: absolute;
		top: 50%;
		left: 0; 
		transform: translate(0%,-50%);
		
		
	}
}

.video-mobile  {
	position: relative;
	//top: 0;
	//left: 0;
	//height: 62.6vw;
	height: 58.6vw; 
	width: 100%;
	//height: 100%;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	//border: 0;
	//opacity: 0;
	display: none;
	
	
	.text {
		z-index: 3;
		.card-banner .image-item .text;
	}
	
	iframe {
		width: 101vw;
		height: 58.6vw;
		//min-height: 101vh;
		//min-width: 179.555555vh;
		position: absolute;
		//top: 50%;
		//left: 50%;
	}
}
*/
/* fim */
/*
Home
*/
.title {
  margin-bottom: 30px;
}
@media (max-width: 40em) {
  .title {
    margin-bottom: 10px;
  }
}
.title h1,
.title h3 {
  color: #408365;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 5px 0;
  font-family: "Poppins", sans-serif;
}
.title h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 40em) {
  .title h2 {
    font-size: 26px;
  }
}
.title h2 strong,
.title h2 b {
  color: #DDA520;
}
.title.upper h2 {
  text-transform: uppercase;
}
.title.centered * {
  text-align: center;
}
.title.white h1,
.title.white h3 {
  color: #408365;
}
.title.white h2 {
  color: #ffffff;
}
.home-services {
  padding: 40px 0;
  background-color: #f7f7f7;
}
@media (max-width: 40em) {
  .home-services {
    padding: 20px 0;
  }
}
.home-services .carousel-services-home {
  margin: 0 -20px;
  padding-bottom: 30px;
}
@media (max-width: 72em) {
  .home-services .carousel-services-home {
    margin: 0;
  }
}
.home-services .carousel-services-home .item {
  padding: 0 20px;
}
@media (max-width: 70em) {
  .home-services .carousel-services-home .item {
    padding: 0 5px;
  }
}
.home-services .carousel-services-home .item a {
  display: block;
  padding: 25px;
  border: 1px solid #eff0e7;
  background-color: #ffffff;
  border-radius: 30px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.home-services .carousel-services-home .item a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.home-services .carousel-services-home .item a figure {
  border-radius: 30px;
  margin-bottom: 10px;
}
.home-services .carousel-services-home .item a h2 {
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}
.home-services .carousel-services-home .item a p {
  height: 65px;
  overflow: hidden;
}
.home-services .carousel-services-home .item a .content {
  position: relative;
  padding: 10px;
  margin-top: 10px;
}
.home-services .carousel-services-home .item a .content p {
  text-align: center;
  font-size: 13px;
}
.home-services .carousel-services-home .item a .content::before {
  content: "";
  width: calc(100% + 20px);
  height: 1px;
  background-color: #eff0e7;
  position: absolute;
  left: -10px;
  top: 0;
}
.home-services .carousel-services-home .slick-dots {
  bottom: 0;
}
.home-advantages {
  padding: 60px 0;
  background: #f7f7f7;
}
@media (max-width: 40em) {
  .home-advantages {
    padding: 40px 0;
  }
}
.home-advantages .title h2 {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 40px;
}
@media (max-width: 40em) {
  .home-advantages .title h2 {
    font-size: 26px;
  }
}
.home-advantages .list {
  margin-top: 30px;
}
.home-advantages .list li {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
.home-advantages .list li a {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.home-advantages .list li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.home-advantages .list li .wrap-image {
  width: 60px;
  margin-bottom: 15px;
}
.home-advantages .list li .wrap-image img {
  height: auto;
  width: 45px;
  max-height: 50px;
}
.home-advantages .list li .wrap-content-advantages {
  width: calc(100% - 60px);
  padding: 0;
}
.home-advantages .list li .wrap-content-advantages h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.home-advantages2 {
  padding: 80px 0;
}
@media (max-width: 40em) {
  .home-advantages2 {
    padding: 40px 0;
  }
}
.home-advantages2 .title h2 {
  font-weight: 400;
  margin-bottom: 40px;
}
.home-advantages2 .list {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.home-advantages2 .list li {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-advantages2 .list li .wrap-icon {
  height: 110px;
}
.home-advantages2 .list li h3 {
  color: #141414;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}
.home-advantages2 .list li h3 span {
  color: #141414;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 800;
}
.home-advantages2 .list li p {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  color: #141414;
  margin-bottom: 0;
}
.home-portfolio {
  padding: 80px 0;
  background-color: #f7f7f7;
}
@media (max-width: 40em) {
  .home-portfolio {
    padding: 40px 0;
  }
}
.home-products {
  padding: 80px 0;
  background-color: #f7f7f7;
}
@media (max-width: 40em) {
  .home-products {
    padding: 40px 0;
  }
}
.home-products .title h1 {
  color: #408365;
}
.home-products .carousel-services-home {
  margin: 0 -0.625rem;
  padding-bottom: 30px;
}
.home-products .carousel-services-home .item {
  padding: 0 0.625rem;
}
.home-products .carousel-services-home .item a {
  display: block;
  text-decoration: none;
}
.home-products .carousel-services-home .item a span {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.home-products .carousel-services-home .item a h2 {
  font-size: 22px;
  text-align: center;
  margin: 0;
  height: 50px;
  overflow: hidden;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  color: #fff;
}
.home-products .carousel-services-home .item a figure {
  border-radius: 30px;
  position: relative;
}
.home-products .carousel-services-home .item a figure::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #141414;
  position: absolute;
  opacity: 0.3;
  left: 0;
  top: 0;
  border-radius: 30px;
  transition: all 0.3s;
}
.home-products .carousel-services-home .item a .content {
  position: relative;
  padding: 10px;
  /*&::before {
                        content: "";
                        width: ~"calc(100% + 20px)";
                        height: 1px;
                        background-color: @border;
                        position: absolute;
                        left: -10px;
                        top: 0;
                    }*/
}
.home-products .carousel-services-home .item a .content p {
  text-align: center;
  font-size: 13px;
}
.home-products .carousel-services-home .item a:hover figure::before {
  opacity: 0;
}
.home-products .carousel-services-home .slick-dots {
  bottom: 0;
}
.home-equipe {
  padding: 80px 0;
  background-color: #DDA520;
}
@media (max-width: 40em) {
  .home-equipe {
    padding: 20px 0;
  }
}
.home-equipe .title h1,
.home-equipe .title h2 {
  color: #ffffff;
}
.home-equipe .carousel-services-home2 {
  margin: 0 -0.625rem 30px -0.625rem;
  padding-bottom: 30px;
}
@media (max-width: 40em) {
  .home-equipe .carousel-services-home2 {
    margin: 0 0 30px 0;
  }
}
.home-equipe .carousel-services-home2 .item {
  padding: 0 0.625rem;
}
@media (max-width: 40em) {
  .home-equipe .carousel-services-home2 .item {
    padding: 0;
  }
}
.home-equipe .carousel-services-home2 .item a {
  display: block;
  padding: 0.625rem;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  min-height: 620px;
}
@media (min-width: 100em) {
  .home-equipe .carousel-services-home2 .item a {
    min-height: 705px;
  }
}
@media (max-width: 100em) {
  .home-equipe .carousel-services-home2 .item a {
    min-height: 690px;
  }
}
.home-equipe .carousel-services-home2 .item a span {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.home-equipe .carousel-services-home2 .item a h2 {
  font-size: 22px;
  text-align: center;
  margin: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  color: #141414;
  margin: 15px 0 0px 0;
}
.home-equipe .carousel-services-home2 .item a figure {
  border-radius: 30px;
}
.home-equipe .carousel-services-home2 .item a .content {
  position: relative;
  /*&::before {
                        content: "";
                        width: ~"calc(100% + 20px)";
                        height: 1px;
                        background-color: @border;
                        position: absolute;
                        left: -10px;
                        top: 0;
                    }*/
}
.home-equipe .carousel-services-home2 .item a .content p {
  text-align: center;
  font-size: 15px;
}
.home-equipe .carousel-services-home2 .item a:hover {
  background: #f7f7f7;
}
.home-equipe .carousel-services-home2 .slick-dots {
  bottom: 0;
}
@media (min-width: 70em) {
  .home-equipe .carousel-services-home2 .slick-dots {
    display: none;
  }
}
.home-equipe .carousel-services-home2 .slick-dots > li button::before {
  background-color: #ffffff;
}
.home-equipe .carousel-services-home2 .slick-dots > li.slick-active button::before {
  background-color: #408365;
}
.horizontal-home {
  background-size: cover;
  background-position: center;
  padding: 100px 0 20px 0;
  position: relative;
}
@media (max-width: 40em) {
  .horizontal-home {
    padding: 70px 0 20px 0;
  }
}
.horizontal-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #141414;
  opacity: 0.2;
  z-index: 1;
  background-size: cover;
  background-position: center 1px;
}
.horizontal-home .row {
  position: relative;
  z-index: 3;
}
.horizontal-home a {
  text-decoration: none;
}
.horizontal-home a h1 {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.horizontal-home a h3 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 40em) {
  .horizontal-home a h3 {
    font-size: 26px;
  }
}
.horizontal-home a h3 strong,
.horizontal-home a h3 b {
  color: #DDA520;
}
.horizontal-home a p {
  margin-bottom: 20px;
}
.home-about {
  padding: 80px 0 100px 0;
}
.home-about .default-button {
  margin-top: 15px;
}
@media (max-width: 40em) {
  .home-about {
    padding: 50px 0;
  }
  .home-about .row {
    flex-direction: column-reverse;
  }
  .home-about .about-image {
    margin-top: 15px;
  }
  .home-about .default-button {
    margin-top: 10px;
  }
}
.home-about ul {
  margin-left: 1rem;
}
.home-about figure {
  border-radius: 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.4);
  height: 100%;
}
.home-about-dois {
  padding: 80px 0;
  position: relative;
  background-color: #408365;
  z-index: 0;
}
@media (max-width: 40em) {
  .home-about-dois {
    padding: 50px 0;
  }
}
.home-about-dois::before {
  content: '';
  width: 92px;
  height: 140px;
  background-image: url('../../images/mais.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 1;
}
@media (max-width: 70em) {
  .home-about-dois::before {
    top: -87px;
  }
}
.home-about-dois::after {
  content: '';
  width: 33vw;
  height: 33vw;
  background-image: url('../../images/radial.svg');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 30px;
  z-index: 1;
}
@media (max-width: 40em) {
  .home-about-dois::after {
    width: 100vw;
    height: 100vw;
  }
}
.home-about-dois .row {
  position: relative;
  z-index: 2;
}
.home-about-dois h3 {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: right;
}
.home-about-dois h3 strong,
.home-about-dois h3 b {
  color: #DDA520;
}
.home-about-dois p {
  text-align: justify;
}
.home-about-dois img {
  border-radius: 30px;
  height: auto!important;
  margin-top: 20px;
}
.home-clients {
  padding: 40px 0;
}
.home-clients .carousel-clients-home {
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.home-clients .carousel-clients-home .slick-track {
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.home-clients .carousel-clients-home .item {
  display: block;
  padding: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.home-clients .carousel-clients-home .item:hover {
  opacity: 0.6;
  text-decoration: none;
}
.home-clients .carousel-clients-home .item .address {
  text-decoration: none;
  color: #408365;
  margin-top: 10px;
  min-height: 40px;
  text-align: center;
}
.home-clients .carousel-clients-home .item img {
  max-width: 140px;
  max-height: 85px;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.home-clients .carousel-clients-home .slick-dots {
  bottom: 0;
}
.home-depositions {
  padding: 80px 0;
  background-color: #141414;
}
@media (max-width: 40em) {
  .home-depositions {
    padding: 20px 0;
  }
}
.home-depositions .title h1 {
  color: #408365;
}
.home-depositions .title h2 {
  color: #ffffff;
  text-transform: initial;
}
.home-depositions .list li .wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.home-depositions .list li .wrap .wrap-image {
  width: 50px;
  margin-right: 20px;
}
.home-depositions .list li .wrap .wrap-image figure {
  border-radius: 50%;
}
.home-depositions .list li .wrap .wrap-title {
  width: calc(100% - 90px);
}
.home-depositions .list li .wrap .wrap-title h3 {
  text-transform: uppercase;
  font-size: 15px;
  margin: 0;
  color: #408365;
}
.home-depositions .list li .wrap .wrap-title h4 {
  font-style: italic;
  font-size: 13px;
  margin: 0;
  color: #ffffff;
}
.home-depositions .list li p {
  margin-top: 10px;
  color: #ffffff;
}
.wrap-depositions {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-depositions {
    padding: 20px 0;
  }
}
.wrap-depositions .list > li .inner {
  padding: 20px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
@media (max-width: 70em) {
  .wrap-depositions .list > li .inner {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.wrap-depositions .list > li .inner .wrap-image {
  width: 20%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 25px;
}
@media (max-width: 70em) {
  .wrap-depositions .list > li .inner .wrap-image {
    width: 100%;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
.wrap-depositions .list > li .inner .wrap-image figure {
  width: 100%;
  border-radius: 50%;
}
.wrap-depositions .list > li .inner .content {
  width: 80%;
}
@media (max-width: 70em) {
  .wrap-depositions .list > li .inner .content {
    width: 100%;
  }
}
.wrap-depositions .list > li .inner .content h3 {
  text-transform: uppercase;
  color: #408365;
  margin-bottom: 5px;
  font-size: 15px;
}
.wrap-depositions .list > li .inner .content p {
  color: #565656;
}
.home-blog {
  padding: 80px 0;
}
@media (max-width: 40em) {
  .home-blog {
    padding: 20px 0;
  }
}
.home-blog .list {
  margin: 0 -0.5rem;
}
.home-blog .list a {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.home-blog .list a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.home-blog .list a figure {
  border-radius: 30px;
  position: relative;
  margin-bottom: 10px;
}
.home-blog .list a figure span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: #408365;
  border-radius: 30px;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 12px;
  margin: 0;
}
.home-blog .list a h3 {
  font-size: 20px;
  color: #141414;
}
@media (max-width: 40em) {
  .home-blog .list a h3 {
    height: auto;
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}
.newsletter {
  padding: 30px 0;
  background: #408365;
}
@media (max-width: 40em) {
  .newsletter {
    padding: 40px 0;
  }
}
.newsletter h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 30px;
  margin: 0;
}
@media (max-width: 70em) {
  .newsletter h2 {
    margin: 0 0 10px 0;
  }
}
.newsletter h2 strong,
.newsletter h2 b {
  font-weight: 600;
}
.newsletter form input[type] {
  margin: 0;
}
@media (max-width: 40em) {
  .newsletter form input[type] {
    margin: 0 0 10px 0;
  }
}
.newsletter .default-button {
  text-transform: capitalize;
  height: 45px;
  border-radius: 50px;
  background: linear-gradient(103deg, #A15709 2.43%, #DDA520 57.56%, #A15709 117.28%);
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.12);
}
.newsletter .default-button.full {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
/*
Footer
*/
.wrap-footer {
  padding: 40px 0 0 0;
}
@media (max-width: 40em) {
  .wrap-footer {
    padding: 40px 0 20px 0;
  }
}
.wrap-footer li {
  line-height: 1;
  margin-bottom: 10px;
}
.wrap-footer .logo img {
  max-width: 140px;
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
}
.wrap-footer h3 {
  position: relative;
  color: #408365;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-weight: 400;
}
@media (max-width: 70em) {
  .wrap-footer h3 {
    font-size: 13px;
  }
}
.wrap-footer h3 a {
  color: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-footer h3 a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-footer h3 img {
  position: absolute;
  left: -24px;
  top: 0;
}
@media (max-width: 40em) {
  .wrap-footer h3 img {
    left: 0;
    position: relative;
    margin-right: 10px;
    float: left;
  }
}
.wrap-footer h3.mail {
  margin-top: 20px;
}
.wrap-footer h3.mail a {
  color: #ffffff;
}
@media (max-width: 40em) {
  .wrap-footer h3.mail {
    margin: 20px 0;
  }
}
.wrap-footer .social {
  margin-top: 25px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 40em) {
  .wrap-footer .social {
    margin: 20px 0;
  }
}
.wrap-footer .social li {
  margin: 0 20px 0 0;
}
.wrap-footer .social li a {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  color: #408365;
  font-size: 17px;
}
.wrap-footer .social li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-footer ul {
  list-style: none;
}
.wrap-footer ul li a {
  font-size: 14px;
  color: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-footer ul li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media (max-width: 70em) {
  .wrap-footer ul li a {
    font-size: 13px;
  }
}
.wrap-footer p {
  position: relative;
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 70em) {
  .wrap-footer p {
    font-size: 13px;
  }
}
.wrap-footer p a {
  color: #ffffff;
  font-size: 14px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-footer p a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media (max-width: 70em) {
  .wrap-footer p a {
    font-size: 13px;
  }
}
.wrap-footer p img {
  position: absolute;
  left: -24px;
  top: 0;
}
.wrap-footer h4 {
  font-size: 32px;
  color: #ffffff;
}
@media (max-width: 70em) {
  .wrap-footer h4 {
    font-size: 20px;
  }
}
.wrap-footer h4 a {
  color: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-footer h4 a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-footer h4 small {
  font-size: 18px;
}
@media (max-width: 70em) {
  .wrap-footer h4 small {
    font-size: 14px;
  }
}
.wrap-footer .wrap-numbers {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.wrap-footer .wrap-numbers h4 a {
  color: #ffffff;
  font-weight: 400;
}
.wrap-footer .wrap-numbers p {
  padding-left: 30px;
}
.wrap-footer .wrap-numbers p img {
  left: 0;
  top: 4px;
}
@media (min-width: 40em) {
  .wrap-footer .wrap-numbers p.whats {
    margin-top: -8px;
  }
  .wrap-footer .wrap-numbers p.whats a {
    font-size: 26px;
  }
  .wrap-footer .wrap-numbers p.whats img {
    left: 0;
    top: 12px;
  }
}
.wrap-footer .wrap-numbers .scroll-up {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-footer .wrap-numbers .scroll-up:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-footer .copy {
  padding: 0 0 10px 0;
}
.wrap-footer .copy p {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  color: #ffffff;
  opacity: 0.4;
}
.wrap-footer .copy p a {
  color: #ffffff;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  font-size: 12px;
}
.wrap-footer .copy p a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-footer .footer-cta {
  background-color: #408365;
  max-width: 300px;
  padding: 20px;
  position: fixed;
  z-index: 1000;
  bottom: 15px;
  left: 3px;
  -webkit-transition: transform 0.9s;
  -moz-transition: transform 0.9s;
  -ms-transition: transform 0.9s;
  transition: transform 0.9s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
@media (max-width: 40em) {
  .wrap-footer .footer-cta {
    display: none;
  }
}
.wrap-footer .footer-cta.aberto {
  -webkit-transform: translateY(13px);
  -moz-transform: translateY(13px);
  -ms-transform: translateY(13px);
  transform: translateY(13px);
}
.wrap-footer .footer-cta a {
  border-radius: 4px 4px 0 0;
  background-color: #408365;
  text-align: center;
  position: absolute;
  padding-top: 2px;
  display: block;
  padding: 2px 6px;
  color: white;
  width: 25px;
  right: 10px;
  top: -10px;
}
.wrap-footer .footer-cta p {
  color: white;
}
.wrap-footer .footer-cta form {
  margin-bottom: 0;
}
.wrap-footer .footer-cta form input[type="text"] {
  margin-bottom: 10px;
  height: 36px;
}
.wrap-footer .footer-cta form textarea {
  height: 100px;
}
.wrap-footer .footer-cta form button {
  width: 100%;
}
.wrap-footer .footer-cta .silver {
  background-color: #626366;
}
/*
Pages
*/
.header-page {
  padding: 30px 0;
  background: #DDA520;
}
.header-page .title {
  margin: 0;
}
.header-page .title h2 {
  font-size: 30px;
  color: #ffffff;
}
@media (max-width: 40em) {
  .header-page .title h2 {
    font-size: 23px;
  }
}
.wrap-about {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-about {
    padding: 20px 0;
  }
}
.wrap-about ul,
.wrap-about ol {
  margin-left: 1em;
}
.wrap-about h2 {
  font-size: 30px;
  padding-top: 20px;
}
.wrap-about h3 {
  font-size: 23px;
  padding-top: 20px;
}
.wrap-about figure {
  border-radius: 30px;
}
.wrap-about .carousel-about-thumb {
  margin: 0 -1px 0 0;
}
.wrap-about .carousel-about-thumb .item {
  padding: 2px 2px 0 0;
}
.wrap-about .carousel-about-thumb figure {
  border-radius: 30px;
}
.advantages-about {
  padding: 60px 0;
  background-color: #f7f7f7;
}
.advantages-about h3 {
  font-weight: 600;
}
.advantages-about ul li {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.advantages-about ul li .wrap-image {
  width: 60px;
  margin-right: 10px;
}
.advantages-about ul li .wrap-content-advantages {
  width: calc(100% - 70px);
}
.advantages-about ul li .wrap-content {
  padding: 0;
}
.products-list a:not(.default-button) {
  display: block;
  background-color: #ffffff;
  text-decoration: none;
}
.products-list a:not(.default-button) span {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.products-list a:not(.default-button) h2 {
  font-size: 22px;
  text-align: center;
  margin: 0;
  height: 65px;
  overflow: hidden;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
}
.products-list a:not(.default-button) figure {
  border-radius: 30px;
}
.products-list a:not(.default-button) .content {
  position: relative;
  padding: 10px;
  /*&::before {
                    content: "";
                    width: ~"calc(100% + 20px)";
                    height: 1px;
                    background-color: @border;
                    position: absolute;
                    left: -10px;
                    top: 0;
                }*/
}
.products-list a:not(.default-button) .content p {
  text-align: center;
  font-size: 13px;
}
.products-list a:not(.default-button):hover {
  background: #f7f7f7;
}
.products-list.budget a {
  height: auto;
  margin: 5px 0;
}
.wrap-product {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-product {
    padding: 20px 0;
  }
}
.wrap-product .carousel-product .item {
  padding: 2px 2px 0 0;
}
.wrap-product .carousel-product .item.video {
  position: relative;
}
.wrap-product .carousel-product .item.video::before {
  content: url('../../images/play.png');
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.wrap-product .carousel-product .item.video figure {
  opacity: 0.9;
}
.wrap-product .carousel-product-thumb {
  margin: 0 -1px 0 0;
}
.wrap-product figure {
  border-radius: 30px;
  margin-bottom: 15px;
}
.wrap-product .content .title {
  margin: 0;
}
.wrap-product .content h1 {
  font-size: 30px;
  color: #141414;
  margin: 0 0 15px 0;
}
.wrap-product .content h3 {
  font-size: 22px;
  color: #408365;
  font-style: italic;
  margin-bottom: 30px;
}
.wrap-product .content ul {
  margin-left: 1em;
}
.wrap-product .content .wrap-add {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrap-product .content .wrap-add input[type] {
  width: 70px;
}
.wrap-contact {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-contact {
    padding: 20px 0;
  }
}
.wrap-contact iframe {
  width: 100%;
  height: 320px;
}
@media (max-width: 40em) {
  .wrap-contact iframe {
    margin-top: 20px;
  }
}
.wrap-contact h2 {
  color: #408365;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 30px;
}
.wrap-contact h2:first-child {
  margin-top: 0;
}
.wrap-contact h3 {
  font-size: 15px;
  color: #141414;
  margin-bottom: 5px;
  margin-top: 4px;
  font-weight: 400;
}
.wrap-contact a {
  color: #626366;
  font-size: 15px;
  margin-bottom: 0;
}
.wrap-contact .default-button {
  margin-bottom: 40px;
}
.wrap-contact p {
  font-size: 14px;
  line-height: 1.2;
}
.wrap-contact .list p,
.wrap-contact .list a {
  color: #626366;
  font-size: 14px;
  margin-bottom: 0;
}
.wrap-contact .list .default-button {
  font-size: 12px;
  margin-bottom: 5px;
}
.wrap-contact img {
  margin-right: 5px;
  margin-bottom: -5px;
}
.wrap-clients {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-clients {
    padding: 20px 0;
  }
}
.wrap-clients .list {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
}
.wrap-clients .list li {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-color: #fff;
  padding: 0;
}
.wrap-clients .list li a {
  padding: 20px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-clients .list li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-clients .list li a .address {
  text-decoration: none;
  color: #408365;
  margin-top: 10px;
  min-height: 40px;
  text-align: center;
}
.wrap-clients .list li a img {
  max-height: 120px;
  max-width: 180px;
  width: 100%;
  height: auto;
}
/*
Mobile menu
**/
.wrap-header-mobile {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #141414;
  padding: 10px 0;
  z-index: 9;
}
.wrap-header-mobile .toggle-menu {
  font-size: 24px;
  color: #408365;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-header-mobile .toggle-menu:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-header-mobile .toggle-menu i {
  color: #408365;
}
.wrap-header-mobile .logo {
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  height: 70px;
}
.wrap-header-mobile .logo img {
  display: block;
  max-height: 70px;
  margin: auto;
  width: auto;
}
.wrap-header-mobile .mobile-menu {
  background-color: #408365;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -ms-transition: top 0.5s;
  transition: top 0.5s;
}
.wrap-header-mobile .mobile-menu.opened {
  top: 0;
}
.wrap-header-mobile .mobile-menu .toggle-menu {
  padding: 30px 0 0 0;
  color: #DDA520;
}
.wrap-header-mobile .mobile-menu .toggle-menu i {
  color: #DDA520;
}
.wrap-header-mobile .mobile-menu .menu {
  list-style: none;
  margin: 0;
}
.wrap-header-mobile .mobile-menu .menu li {
  display: block;
  width: 100%;
}
.wrap-header-mobile .mobile-menu .menu li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  text-align: center;
  padding: 15px 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-header-mobile .mobile-menu .menu li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-header-mobile .mobile-menu .menu li a i {
  margin-right: 5px;
}
.wrap-header-mobile .mobile-menu .menu li:not(:last-child) {
  border-bottom: 1px solid #DDA520;
}
.navigation {
  list-style: none;
  margin: 0;
}
@media (max-width: 40em) {
  .navigation {
    margin-bottom: 30px;
  }
}
.navigation > li {
  margin-bottom: 5px;
}
.navigation > li > a {
  width: 90%;
  padding: 10px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.navigation > li > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.navigation > li > a .wrap-icon {
  width: 40px;
  height: 35px;
  margin-right: 10px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.navigation > li > a .wrap-icon img {
  max-height: 35px;
}
.navigation > li > a h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 15px;
  margin: 0;
}
.navigation > li > a.active {
  width: 100%;
  background-color: #408365 !important;
}
.navigation > li > ul {
  list-style: none;
  background-color: #eff0e7;
  width: 90%;
  padding: 10px;
  display: none;
}
.navigation > li > ul > li > a {
  padding: 5px 0;
  font-size: 16px;
  color: #626366;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.navigation > li > ul > li > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.navigation > li > ul > li > a.active {
  color: #408365;
  position: relative;
}
.navigation > li > ul > li > a.active::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #408365;
}
.navigation > li > ul > li:not(:last-child) {
  border-bottom: 1px solid #d4d4d4;
}
.navigation > li > ul.active {
  width: 100%;
}
.navigation > li > ul.active {
  display: block;
}
.wrap-content {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-content {
    padding: 20px 0;
  }
}
.wrap-content .content h2 {
  color: #141414;
  font-size: 25px;
  font-weight: normal;
}
.wrap-content .content hr {
  border: none;
  border-bottom: 1px solid #f7f7f7;
  margin: 30px 0;
}
.wrap-content .content ul {
  margin-left: 1em;
}
.wrap-content .content .default-button {
  margin-top: 15px;
}
.add-quantidade-interna {
  width: 100px;
  height: 39px;
  border: 1px solid #111111;
  border-radius: 30px;
  position: relative;
}
.add-quantidade-interna input[type] {
  height: 37px;
  text-align: center;
  border: 0;
  border-right: 1px solid #111111;
  border-radius: 4px 0 0 4px;
  width: 38px;
  margin: 0;
  display: inline-block;
}
.add-quantidade-interna button[type="button"] {
  width: 30px;
  height: 50%;
  border: 0;
  border-radius: 30px;
  background-color: #ffffff;
  font-size: 12px;
  position: absolute;
  right: 0;
}
.add-quantidade-interna button[type="button"].add {
  top: 0;
  border-bottom: 1px solid #111111;
}
.add-quantidade-interna button[type="button"].remove {
  bottom: 0;
}
.content-bottom {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border: 1px solid #eff0e7;
  border-radius: 30px;
}
@media (max-width: 70em) {
  .content-bottom {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .content-bottom a {
    margin-top: 5px;
  }
}
.whatsapp {
  position: fixed;
  display: flex;
  bottom: 2vw;
  right: 2vw;
  border-radius: 30px;
  padding: 12px 18px;
  color: #ffffff;
  z-index: 20;
  background: #52ce5f;
  background: -moz-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #52ce5f), color-stop(100%, #32ba45));
  background: -webkit-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -o-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -ms-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: linear-gradient(to bottom, #52ce5f 0%, #32ba45 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52ce5f', endColorstr='#32ba45', GradientType=0);
}
@media (max-width: 40em) {
  .whatsapp {
    border-radius: 50%;
    height: 55px;
    width: 55px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
.whatsapp i {
  font-size: 22px;
  margin-right: 5px;
  color: #ffffff;
}
@media (max-width: 40em) {
  .whatsapp i {
    margin-right: 0px;
    font-size: 25px;
  }
}
.whatsapp:hover {
  text-decoration: none;
  background: #141414;
}
@media (max-width: 40em) {
  .whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
  }
}
.team-page {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .team-page {
    padding: 20px 0;
  }
}
.team-page ul {
  margin-left: 1em;
}
.team-page h4 {
  font-size: 30px;
}
@media (max-width: 40em) {
  .team-page h4 {
    margin-top: 20px;
  }
}
.team-page img {
  border-radius: 30px;
}
.team-page .social {
  display: flex;
  list-style: none;
  margin-left: 0;
}
.team-page .social .fab,
.team-page .social .fa,
.team-page .social .fas {
  color: #408365;
  font-size: 20px;
}
.team-page .social li {
  margin-right: 10px;
}
.widget {
  border: 1px solid #f7f7f7;
  padding: 0;
  list-style: none;
}
.widget li:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}
.widget li a {
  color: #408365;
  position: relative;
  padding: 15px 25px;
  font-size: 12px;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.widget li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.widget li a h3 {
  margin: 0;
  font-weight: 400;
}
.widget li a:hover {
  background-color: #f7f7f7;
}
.widget li a.active {
  background-color: #f7f7f7;
}
.widget li a.active h3 {
  font-weight: 600;
}
.widget li a.active::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #408365;
  position: absolute;
  left: 0;
  top: 0;
}
.gallery-page {
  padding: 60px 0;
}
.gallery-page .video {
  position: relative;
}
.gallery-page .video::before {
  content: url('../../images/play.png');
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.gallery-page .video figure {
  opacity: 0.9;
}
.gallery-page .galley-categories {
  margin-bottom: 20px;
  list-style: none;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.gallery-page .galley-categories li {
  margin-left: 30px;
}
.gallery-page .galley-categories li a {
  text-align: center;
  font-size: 16px;
  border: none;
  color: #ffffff;
  background-color: #408365;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  padding: 8px 15px;
}
@media (max-width: 40em) {
  .gallery-page .galley-categories li a {
    font-size: 14px;
  }
}
.gallery-page .galley-categories li a:hover {
  background-color: #DDA520;
  text-decoration: none;
}
.gallery-page .galley-categories li a img,
.gallery-page .galley-categories li a i {
  margin-left: 8px;
}
.gallery-page .galley-categories li a.translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.gallery-page .galley-categories li a.translate:hover {
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.gallery-page .galley-categories li a.white {
  border: solid 1px #ffffff;
}
.gallery-page .galley-categories li a.full {
  width: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.gallery-page .galley-categories li a.small {
  padding: 10px 15px;
  font-size: 12px;
}
.gallery-page .galley-categories li a.active {
  color: #626366;
}
.gallery-page .list {
  /*a {
			display: block;
			.opacity;
		}*/
}
.gallery-page .list li {
  padding: 0 1px 1px 0;
}
.gallery-page .list li .item {
  position: relative;
  display: block;
  overflow: hidden;
}
.gallery-page .list li .item figure {
  filter: brightness(80%);
}
.gallery-page .list li .item .text {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: top 0.5s;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 100em) {
  .gallery-page .list li .item .text {
    padding: 20px;
  }
}
@media (max-width: 70em) {
  .gallery-page .list li .item .text {
    top: 0;
  }
}
.gallery-page .list li .item .text .labels {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery-page .list li .item .text .labels li {
  margin: 0 5px 5px 0;
  background-color: rgba(100, 100, 100, 0.8);
  display: block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
}
.gallery-page .list li .item .text .wrap-arrow {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.gallery-page .list li .item .text .wrap-arrow span {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.gallery-page .list li .item .text .wrap-arrow span img {
  margin-left: 10px;
}
.gallery-page .list li .item:hover .text {
  top: 0;
}
.wrap-units {
  padding: 40px 0;
}
@media (max-width: 40em) {
  .wrap-units {
    padding: 20px 0;
  }
}
.wrap-units .content {
  margin-bottom: 30px;
}
.wrap-units .list figure {
  margin-bottom: 10px;
}
.wrap-units .list h3 {
  margin: 0;
}
.wrap-units .list p {
  margin: 0;
}
.wrap-units .list p a {
  color: #626366;
}
.wrap-units .list .default-button {
  margin-top: 10px;
}
.wrap-instagram {
  padding: 60px 0;
}
@media (max-width: 40em) {
  .wrap-instagram {
    padding: 20px 0;
  }
}
.wrap-instagram .title h1 {
  color: #408365;
}
.wrap-instagram p {
  text-align: center;
  margin-bottom: 40px;
}
.wrap-instagram p a {
  color: #141414;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-instagram p a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.wrap-instagram #instafeed {
  list-style: none;
  margin: 0;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
.wrap-instagram #instafeed li {
  width: 100%;
}
.wrap-instagram #instafeed li a {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.wrap-instagram #instafeed li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
#top {
  display: none;
}
@media (max-width: 40em) {
  #top {
    height: 100px;
    display: block;
  }
}
/* lgpd */
.foooter-lgpd * {
  text-transform: none;
  min-width: 320px;
}
.footer-lgpd.footer-lgpd-opened {
  transition: 0.1s ease-in-out;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
@media (max-width: 100em) {
  .footer-lgpd.footer-lgpd-opened {
    display: block;
  }
}
.footer-lgpd {
  position: fixed;
  z-index: 9999;
  max-width: 1230px;
  transition: 0.3s ease-in-out;
  background: #fff;
  bottom: 25px;
  left: 10px;
  right: 10px;
  padding: 20px;
  box-shadow: 0 0 10px #aaa;
  border-radius: 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
  transform: translateY(300px);
  margin: 0 auto;
}
.footer-lgpd .lgpd-accept {
  background: #fff 0 0 no-repeat padding-box;
  border: 1px solid #408365;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
  letter-spacing: 0;
  margin-left: 15px;
  cursor: pointer;
  white-space: nowrap;
}
.lgpd-all {
  display: none;
}
.lgpd-all a {
  text-decoration: none;
  color: #408365;
}
.lgpd a {
  text-decoration: none;
  color: #408365;
}
.mail,
.mail a {
  text-transform: lowercase !important;
}
.whats-content {
  position: fixed;
}
.whats-content .popup {
  border-radius: 10px;
  display: none;
  z-index: 999999;
  max-width: 400px;
  text-align: center;
  color: white;
  align-items: center;
  text-align: left;
  position: fixed;
  padding: 20px 10px 20px 10px;
  background-color: #1b1e24;
  right: 2vw;
  bottom: 2vw;
}
@media (max-width: 40em) {
  .whats-content .popup {
    max-width: 400px;
    width: 320px;
    top: auto;
    right: 0;
    bottom: 15px;
  }
}
.whats-content .popup h2 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}
.whats-content .popup h2 strong {
  font-weight: 900;
}
.whats-content .popup p {
  text-align: center;
  color: #ffffff;
}
.whats-content .popup button.default-button {
  background-color: #408365;
  padding: 10px 20px;
  width: 100%;
  color: #fff;
}
.whats-content .popup input[type=text] {
  height: 45px;
  color: #408365;
}
.whats-content .popup span.fechar {
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  right: 20px;
  top: 0px;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
}
.whats-content .popup ul {
  list-style: none;
  margin-bottom: 40px;
}
.whats-content .popup ul li {
  margin-bottom: 10px;
}
.whats-content .popup ul li a,
.whats-content .popup ul li p {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 70em) {
  .whats-content .popup ul li a,
  .whats-content .popup ul li p {
    font-size: 13px;
  }
}
.whats-content .popup ul li a {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.whats-content .popup ul li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.whats-content .popup ul li a.txt {
  font-family: Arial, sans-serif;
  font-size: 26px;
}
.whats-content .popup ul li a span {
  color: #408365;
  font-weight: 700;
  margin-right: 10px;
}
.whats-content .popup .menu {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.whats-content .popup .passo2 {
  display: none;
}
.whats-content.fixed .popup {
  position: fixed;
  left: auto;
  top: auto;
  right: 2vh;
  bottom: 2vh;
}
@media (max-width: 40em) {
  .whats-content.fixed .popup {
    right: 0;
    bottom: 0;
  }
}
.whatsapp-link {
  position: relative;
  border-radius: 25px;
  padding: 12px 18px;
  color: #ffffff;
  z-index: 20;
  background: #52ce5f;
  background: -moz-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #52ce5f), color-stop(100%, #32ba45));
  background: -webkit-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -o-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: -ms-linear-gradient(top, #52ce5f 0%, #32ba45 100%);
  background: linear-gradient(to bottom, #52ce5f 0%, #32ba45 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52ce5f', endColorstr='#32ba45', GradientType=0);
}
.whatsapp-link i {
  font-size: 20px;
  margin-right: 5px;
  color: #ffffff;
}
.whatsapp-link:hover {
  text-decoration: none;
  background: #141414;
}
@media (max-width: 40em) {
  .whatsapp-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
  }
}
.wrap-faq {
  padding: 80px 0;
}
@media (max-width: 40em) {
  .wrap-faq {
    padding: 50px 0;
  }
}
.wrap-faq h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 40em) {
  .wrap-faq h1 {
    font-size: 29px;
    margin-bottom: 20px;
  }
}
.wrap-faq h1 strong,
.wrap-faq h1 b {
  color: #DDA520;
}
.wrap-faq .acordeon {
  margin: 0;
  list-style: none;
}
.wrap-faq .acordeon > li {
  background-color: #ffffff;
  border-radius: 30px;
  margin-bottom: 10px;
  /*&:first-child {
                border-top: 1px solid @border;
            }*/
}
.wrap-faq .acordeon > li > a {
  display: block;
  position: relative;
  color: #141414;
  font-weight: 500;
  font-size: 16px;
  padding: 20px;
  transition: opacity 0.2s;
  text-align: left;
}
@media (max-width: 40em) {
  .wrap-faq .acordeon > li > a {
    padding: 20px 73px 20px 20px;
  }
}
.wrap-faq .acordeon > li > a::after {
  content: url("../../images/arrow-down-white.png");
  position: absolute;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: #408365;
}
.wrap-faq .acordeon > li > a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.wrap-faq .acordeon .acordeon-content {
  display: none;
  padding: 0 20px 25px 20px;
}
.wrap-faq .acordeon .acordeon-content p {
  color: #626366;
  text-align: left;
}
.wrap-faq .acordeon .acordeon-content > p:last-child {
  margin-bottom: 0;
}
.grecaptcha-badge {
  opacity: 0.02;
  z-index: -1;
}
.especialidade-texto {
  display: none;
}
.media.is-1by1 {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Isso cria o aspecto 1:1 */
  overflow: hidden;
}
/* Estilo para o vídeo dentro do contêiner */
.media-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faz o vídeo preencher o contêiner sem deformação */
}
