/*
Theme Name: Bluelab
Theme URI: https://www.bluelab.com.br
Author: Bluelab - Rodrigo Maike
Author URI: https://www.bluelab.com.br
Description: Atual tema criado para bluelab
Version: 2.0
*/

/* Font Muli 400, 600, 700, 800 just regular  */
@import url("https://use.typekit.net/dxz5wzg.css");

:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/

  --first-color: hsl(200, 62%, 51%); /* blue #359CD0 */
  --first-color-alt: hsl(147, 51%, 54%); /* green #4FC685 */
  --first-color-shadow: hsl(200, 62%, 45%); /* shadow for blue #359CD0 */
  --first-color-alt-shadow: hsl(147, 51%, 48%); /* shadow for green #4FC685 */
  --shadow-color: rgba(0, 0, 0, 0.1); /* shadow */
  --muted-color: hsl(208, 7%, 46%); /* gray */

  --title-color: hsl(221, 25%, 24%); /* black #2E384D */
  --text-color: hsl(221, 25%, 24%); /* black #2E384D */
  --text-color-light: hsl(0, 0%, 100%); /* white #FFFFFF */

  --body-color: hsl(0, 0%, 98%); /* background white 98% #FAFAFA */
  --body-color-shadow: hsl(0, 0%, 97%); /* container white 96% #F5F5F5 */
  --body-color-alt: hsl(240, 13%, 95%); /* background gray #F2F2F5 */

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Muli", sans-serif;

  --biggest-font-size: 1.4rem;
  --h1-font-size: 1.5rem;
  --h1-blog-font-size: 1.3rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 0.813rem;
  --h4-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
}

/* Responsive typography */
@media screen and (min-width: 992px) {
  :root {
    --h1-font-size: 2.5rem;
    --h1-blog-font-size: 1.8rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 0.85rem;
    --h4-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  /* Prevent scroll on narrow devices */
}

body {
  padding-top: 62px;
  line-height: 1.5;
  background-color: var(--body-color);
  color: var(--text-color);
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-extra-bold);
}

ul,
li {
  list-style: none;
}

a {
  /* text-decoration: none; */
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* Remove text-shadow in selection highlight. */

::-moz-selection {
  background: var(--text-color);
  color: var(--text-color-light);
  text-shadow: none;
}

::selection {
  background: var(--text-color);
  color: var(--text-color-light);
  text-shadow: none;
}

video {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  max-width: 800px;
}

section {
  padding: 24px 0;
}

s {
  text-decoration: none !important;
  color: #6c757d !important;
}

/* position recaptcha */
.grecaptcha-badge {
right: -242px!important;
}


/*=============== ALERTA  ===============*/


/*=============== wordpress class  ===============*/
/* menu ADM Wordpress */

/*
.customize-support .alerta {
  margin-top: 32px;
}
*/

.customize-support .navbar,
.customize-support .offcanvas-header {
  margin-top: 46px;
}
#wpadminbar {
  position: fixed !important;
}

/*=============== backgrounds  ===============*/

.bg-wave {
  position: relative;
  background: url("./assets/images/background-wave.svg") no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: var(--body-color);
}
.wave {
  background-color: hsl(240, 12%, 95%);
}
.bg-wave-alt {
  position: relative;
  background: url("./assets/images/background-wave-alt.svg") no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #f1f1f4;
}

.background-section {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../images/home/bg-page-home.jpg") no-repeat center bottom;
  background-size: cover;
}

.background-section-qm {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../images/quem-somos/bg-qm-one.png") no-repeat center bottom;
  background-size: cover;
}
.background-section-qm2 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../images/quem-somos/bg-quem-somos-two.jpg") no-repeat center bottom;
  background-size: cover;
}

/*=============== tipografia ===============*/

h2,
.h2 {
  font-size: var(--h2-font-size);
}

h3,
.h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

h4,
.h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-bold);
}

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white p {
  color: white;
}

.text-first-color-alt {
  color: var(--first-color-alt) !important;
}

/*=============== breadcrumb ===============*/

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.breadcrumb {
  background-color: transparent;
  display: inline-flex;
  border-bottom: 2px solid #d1d5dd;
  border-radius: 0;
}

.breadcrumb-item a {
  color: #d1d5dd;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--first-color);
}

.breadcrumb-item.active a {
  color: var(--first-color);
}

.breadcrumb-item.active {
  color: var(--muted-color);
}
.bxs-right-arrow {
  font-size: 10px;
  opacity: 0.6;
}

/*=============== Player audio  ===============*/

.green-audio-player {
  border-radius: 8px;
  height: 60px;
  width: unset;
  max-width: 400px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.play-pause-btn__icon,
.volume__speaker {
  fill: #2e384d;
}

.green-audio-player .controls .controls__slider {
  height: 10px;
}

.green-audio-player .slider .gap-progress .pin {
  background-color: transparent;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0);
}

.green-audio-player .controls {
  font-size: 12px;
}

.green-audio-player .slider {
  background-color: #2e384d;
}

.green-audio-player .slider .gap-progress {
  background-color: #4fc685;
}

.text-player p {
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
}

/*=============== navbar ===============*/

.hamburguer {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.hamburguer .line {
  display: block;
  width: 34px;
  height: 3px;
  background-color: #359cd0;
  margin-block: 8px;
  border-radius: 4px;
  transition: 0.3s;
  opacity: 0.25s;
}

.btn-close {
  font-size: 24px;
  color: #359cd0;
}

.navbar {
  padding-top: 0.69rem;
  padding-bottom: 0.69rem;
  /* box-shadow: 0px 1px 2px rgb(0 0 0 / 3%); */
}

.navbar-brand .logo-lg {
  height: 20px;
}
.navbar-brand .logo {
  height: 32px;
}

.navbar-light .navbar-nav .nav-link {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  transition: 0.05s background ease;
}
.navbar-light .navbar-nav .nav-link.active,
.show > .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--first-color);
}

.navbar-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
}

.navbar-bottom li {
  flex: auto;
  color: var(--text-color-light);
}

.navbar-bottom li a {
  text-align: center;
  height: 100%;
  border-bottom: none;
}

.navbar-bottom .navbar-icon i {
font-size: 24px;
  color: var(--text-color);
}
.navbar-bottom .navbar-icon:hover i {
  color: var(--first-color);
}

.navbar-bottom .navbar-icon .nav-link {
  padding: 0.5rem 1rem 0;
}

/* tamanho menu mobile  */
.offcanvas-start {
  width: 320px;
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
  color: var(--body-color);
}

.nav-link.active {
  color: var(--first-color);
}
.dropdown {
  cursor: pointer;
}
.dropdown-menu {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  padding: 0.1rem 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.dropdown-item {
  color: var(--text-color);
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--first-color);
  background-color: #fff;
}
.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--first-color);
}
/*=============== buttons ===============*/

.btn-primary {
  color: #fff;
  background-color: var(--first-color);
  border-color: var(--first-color);
}
.btn-primary:hover,
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle,
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: hsl(200, 62%, 45%);
  border-color: hsl(200, 62%, 45%);
}

.btn-success {
  color: #fff;
  background-color: var(--first-color-alt);
  border-color: var(--first-color-alt);
}
.btn-success:hover,
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle,
.btn-check:focus + .btn-success,
.btn-success:focus {
  color: #fff;
  background-color: hsl(147, 51%, 48%);
  border-color: hsl(147, 51%, 48%);
}

.btn-secondary {
  color: #fff;
  padding: 0.45rem 0.75rem;
  border: 0px solid transparent;
  background: #359cd0;
  background: -webkit-linear-gradient(
    to right,
    #4fc685 0%,
    #359cd0 30%,
    #4fc685 60%,
    #359cd0 100%
  );
  background: linear-gradient(
    to right,
    #4fc685 0%,
    #359cd0 30%,
    #4fc685 60%,
    #359cd0 100%
  );
  background-size: 395% auto;
}
.btn-secondary:hover,
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle,
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background: #359cd0;
  background: -webkit-linear-gradient(
    to right,
    hsl(147, 51%, 48%) 0%,
    hsl(200, 62%, 45%) 30%,
    hsl(147, 51%, 48%) 60%,
    hsl(200, 62%, 45%) 100%
  );
  background: linear-gradient(
    to right,
    hsl(147, 51%, 48%) 0%,
    hsl(200, 62%, 45%) 30%,
    hsl(147, 51%, 48%) 60%,
    hsl(200, 62%, 45%) 100%
  );
  background-size: 395% auto;
}

.btn-outline-primary {
  color: var(--first-color);
  border-color: var(--first-color);
}
.btn-outline-primary:hover,
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: var(--first-color);
  border-color: var(--first-color);
}

.btn-dark {
  color: #fff;
  background-color: var(--text-color);
  border-color: var(--text-color);
}

.cc-btn.cc-dismiss:hover,
.cc-btn.cc-dismiss:active,
.cc-btn.cc-dismiss:focus,
.btn-dark:hover,
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle,
.btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: hsl(221, 25%, 26%);
  border-color: hsl(221, 25%, 26%);
}

.cc-btn.cc-dismiss {
  font-weight: var(--font-regular)!important;  
  color: #fff!important;
  background-color: var(--text-color)!important;
  border-color: var(--text-color)!important;
  text-decoration: none!important;
}
.cc-btn.cc-dismiss:hover,
.cc-btn.cc-dismiss:active,
.cc-btn.cc-dismiss:focus {  
  background-color: hsl(221, 25%, 26%)!important;
  border-color: hsl(221, 25%, 26%)!important;
}

.cc-theme-classic {
  border-radius: 0.5rem!important;
  border: 0px solid rgba(0, 0, 0, 0.125)!important;
  -webkit-box-shadow: 0 0px 10px rgba(52, 58, 64, 0.08)!important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px!important;
  /*box-shadow: rgb(0 0 0 / 5%) 0px 2px 8px;
  */-webkit-transition: all 0.3s!important;
  transition: all 0.3s!important;
}

.btn-whatsapp {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 10px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1029;
}
.btn-whatsapp:hover  {
  color: #fff!important;
}
.btn-whatsapp .bxl-whatsapp {
  margin-top: 10px;
  margin-left: 2px;
  font-size: 2.2rem;
}


/*=============== hero  ===============*/

.hero img {
  max-height: 300px;
}

.hero h1 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--first-color);
  text-transform: uppercase;
}
.hero h2 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--title-color);
  text-transform: none;
}

/*=============== cards  ===============*/

.card-box {
  border-radius: 0.5rem;
  border: 0px solid rgba(0, 0, 0, 0.125);
  -webkit-box-shadow: 0 0px 10px rgba(52, 58, 64, 0.08);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  /* box-shadow: rgb(0 0 0 / 5%) 0px 2px 8px; */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.card-carousel .card-header {
  font-weight: var(--font-bold);
  color: var(--first-color-alt);
  background-color: var(--title-color);
  border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
  border-bottom: none;
}

.card-carousel .card-footer {
  color: var(--text-color-light);
  background-color: var(--first-color);
  font-weight: var(--font-semi-bold);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.card-carousel .card-footer:last-child {
  margin-bottom: 0;
}

.card-span {
  font-size: 1.875rem;
  font-weight: var(--font-extra-bold);
}

.card-title {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
}
.card-text-modelo .card-title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
}
.card-text-modelo .card-body {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.bxs-check-circle {
  font-size: 20px;
  color: var(--body-color-alt-muted);
  opacity: 0.5;
}

.li-flex li {
  display: flex;
  margin: 6px 0;
}

/*=============== timeline  ===============*/

.timeline {
  list-style: none;
  padding: 10px 0;
  position: relative;
  font-weight: 300;
}

.timeline-zoom {
  transition: all 0.3s;
  -webkit-box-shadow: 0 8px 30px rgb(52 58 64 / 8%);
  box-shadow: 0 8px 30px rgb(52 58 64 / 8%);
}

.timeline-zoom:hover {
  transform: scale(1.03);
}

.timeline:before {
  top: 50px;
  bottom: 80px;
  position: absolute;
  content: " ";
  width: 2px;
  background: #d1d5dd;
  left: 50%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
  width: 50%;
  float: left;
  clear: left;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: calc(100% - 25px);
  width: -moz-calc(100% - 25px);
  width: -webkit-calc(100% - 25px);
  float: left;
  border-radius: 8px;
  background: #ffffff;
  position: relative;
}

.timeline > li > .timeline-badge {
  color: #ffffff;
  width: 24px;
  height: 24px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 16px;
  right: -12px;
  z-index: 100;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge > a {
  color: #d1d5dd !important;
}

.timeline-badge a:hover {
  color: #dcdcdc !important;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline-heading h4 {
  padding: 0 15px;
  color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  text-transform: uppercase;
}

.timeline-body > p,
.timeline-body > ul {
  padding: 0 15px 10px 15px;
  margin-bottom: 0;
}

.timeline > li.timeline-inverted {
  float: right;
  clear: right;
}

.timeline > li:nth-child(2) {
  margin-top: 60px;
}

.timeline > li.timeline-inverted > .timeline-badge {
  left: -12px;
}

.no-float {
  float: none !important;
}
/*=============== Form contact ===============*/

.form-bg {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#5ebdb6),
    to(#359cd0)
  );
  background: linear-gradient(to right, #5ebdb6, #359cd0) 0.85;
  color: #fff;
  border-radius: 16px;
  padding: 32px 28px;
}

.form-bg .btn-dark {
  width: 160px;
}

.modal-content .form-bg {
  border-radius: 0;
  padding: 30px;
}

.modal-content .form-bg .btn-close {
  font-size: var(--normal-font-size);
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-bottom: 12px;
}

.form-control {
  padding: 0.275rem 0.65rem;
}

/*=============== footer  ===============*/

footer {
  font-size: var(--smaller-font-size);
}

footer .nav-item {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
footer .nav-link {
  color: var(--muted-color);
  padding: 0;
}

footer h5 {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.footer-email a {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
}
.footer-email a:hover {
  color: var(--first-color);
}

.footer-tel a {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--first-color);
}
.footer-tel a:hover {
  color: var(--first-color-shadow);
}

footer .nav strong {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

footer .footer-logo img {
  max-width: 300px;
}

/*=============== Glide Carousel  ===============*/

.glide__slide {
  line-height: 60px;
  margin: 0;
  text-align: center;
}

.glide__bullets {
  bottom: -15px;
}

.glide__bullet {
  background-color: var(--first-color);
  opacity: 0.4;
}
.glide__bullet--active {
  background-color: var(--first-color-alt);
  opacity: 0.8;
}
.glide__bullet:hover,
.glide__bullet:focus {
  background-color: var(--first-color);
  opacity: 1;
}

/*=============== BLog  ===============*/

.singular-title {
  font-size: var(--h1-blog-font-size);
}

.blog-sidabar {
  background-color: #fff;
  border-radius: 16px;
  padding: 18px 8px 6px;
  box-shadow: 5px 5px 20px 0px rgb(140 146 148 / 10%);
}

.blog-sidabar1 {
  background: rgb(2, 0, 36);
  background: linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgba(59, 40, 162, 1) 0%, rgba(53, 156, 208, 1) 100%);
  border-radius: 4px;
  padding: 30px 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: 5px 5px 20px 0px rgb(140 146 148 / 10%);
}

.m-tags {
  padding-left: 15px;
  padding-right: 15px;
}

.blog-sidebar1-article {
  margin: 22px 10px;
  font-weight: 600;
}

.post-title h1 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  line-height: 1.4;
  text-transform: uppercase;
}
.post-title h1 a {
  color: var(--text-color);
}
.post-title h1 a:hover {
  color: var(--first-color);
}

/* pagination */

ul.page-numbers {
  list-style: none;
  margin: 0;
}

.page-numbers:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  text-decoration: none
}

ul.page-numbers li {
  display: block;
  float: left;
  margin: 0 4px 4px 0;
  text-align: center;
}

.page-numbers a,
.page-numbers span {
  line-height: 1.6em;
  display: block;
  padding: 12px 18px 8px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  border: 0px solid #fff;
  color: var(--muted-color);
  background-color: #fff;
  border-radius: 0.25rem;
  transition: all 0.3s ease 0s;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.page-numbers a span {
  padding: 0
}

.page-numbers a:hover,
.page-numbers.current,
.page-numbers.current:hover {
  border: 0px solid transparent;
  color: #fff;
  background: #359cd0;
  background: -webkit-linear-gradient(
    to right,
    hsl(147, 51%, 48%) 0%,
    hsl(200, 62%, 45%) 30%,
    hsl(147, 51%, 48%) 60%,
    hsl(200, 62%, 45%) 100%
  );
  background: linear-gradient(
    to right,
    hsl(147, 51%, 48%) 0%,
    hsl(200, 62%, 45%) 30%,
    hsl(147, 51%, 48%) 60%,
    hsl(200, 62%, 45%) 100%
  );
  background-size: 395% auto;
  text-decoration: none;
}

.page-numbers:hover {
  text-decoration: none
}

article a,
article h4 a {
  color: var(--text-color)
}
.blog a {
  text-decoration: none;
}

.post-inner img {
  width: 100%;
  height: 100%;
}

/*=============== BREAKPOINTS ===============*/

@media screen and (max-width: 767.98px) {
  .intro img {
    max-height: 380px;
  }
  ul.timeline:before {
    left: 40px;
  }
  ul.timeline > li {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    float: left;
    clear: left;
  }
  ul.timeline > li > .timeline-panel {
    width: calc(100% - 65px);
    width: -moz-calc(100% - 65px);
    width: -webkit-calc(100% - 65px);
  }
  ul.timeline > li > .timeline-badge {
    left: 28px;
    margin-left: 0;
    top: 16px;
  }
  ul.timeline > li > .timeline-panel {
    float: right;
  }
  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  .timeline > li.timeline-inverted {
    float: left;
    clear: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-badge {
    left: 28px;
  }
}
@media screen and (min-width: 783px) {

  /* menu ADM Wordpress */
  .customize-support .navbar,
  .customize-support .offcanvas-header {
    margin-top: 74px;
  }
}

@media screen and (min-width: 992px) {
  section {
    padding: 64px 0;
  }

  h2,
  .h2 {
    margin-bottom: 1rem;
  }

  .dropdown-menu {
    padding: 0.5rem 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }

  .dropdown-menu[data-bs-popper] {
    margin-top: 0.69rem;
  }

  .hero img {
    max-height: 100%;
  }

  .btn-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
  }
  .btn-whatsapp .bxl-whatsapp {
    margin-top: 10px;
    margin-left: 2px;
    font-size: 2.5rem;
  }

 

}

.privacy-policy h3 {
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-policy p {
  margin-bottom: 0.8rem;
}

.privacy-policy ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  list-style-type: disc;
  list-style-position: outside !important;
}

.privacy-policy ul li {
  display: list-item !important;
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.privacy-policy ul li::marker {
  color: var(--text-color);
  font-size: 1rem; 
}
