@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
:root {
  --orange: #FF594E;
  --grey: #484B57;
  --dark-grey: #3B4157;
  --white: #FFF;
  --dark-white: #F5F5F5;
  --green: #1FAB36;
  --menu-height: 65px;
  --max-content-width: 1168px;
  --section-title-size: 31px;
  --section-title-margin-bottom: 60px;
  --body-padding: 20px;
  --footer-padding: 50px;
  --footer-margin: 120px var(--body-padding) 20px;
  --box-shadow: 0px 3px 6px #00000029;
  --card-border-radius: 5px;
}

@media (min-width: 992px) {
  :root {
    --menu-height: 152px;
    --title-h2--font-size: 42px;
    --footer-margin: 150px var(--body-padding);
    --section-title-margin-bottom: 120px;
  }
}

body.topbar-open nav .topbar.open {
  display: flex;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  border-bottom: 0.0625rem solid #E6E8E9;
  box-shadow: var(--box-shadow);
}

nav .topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.625rem 0.75rem;
  background-color: #5B90B9;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all .05s ease-in-out, background-color .1s ease-in-out;
}

nav .topbar:not(.open) {
  padding: 0;
  height: 0;
  overflow: hidden;
}

nav .topbar:hover {
  background-color: #699abf;
}

nav .topbar .close {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

nav .topbar .close img {
  margin-right: 0.625rem;
}

nav .topbar .close span {
  display: none;
}

nav .topbar .link {
  display: flex;
  align-items: center;
  color: #FFF;
  transition: all .15s ease-in-out;
}

nav .topbar .link img {
  max-width: 1.125rem;
  margin: 0 0.875rem;
}

nav .topbar .link img.fire {
  max-width: 0.875rem;
}

nav .topbar .link img:not(.fire) {
  display: none;
}

nav .topbar .link:hover {
  color: white;
}

nav .topbar .label {
  padding: 0.1875rem 0.4375rem;
  border-radius: 0.3125rem;
  background-color: rgba(18, 37, 107, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}

nav .desktop {
  display: none;
  position: relative;
  background-color: var(--white);
}

nav .mobile {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--menu-height);
  padding: 0 1.25rem;
  background-color: var(--white);
}

nav .mobile .search-form {
  padding: 0;
  margin: 1rem 2.375rem;
}

nav .mobile .search-form .label-search {
  padding: 0;
  max-width: 100%;
  display: block;
}

nav .mobile .search-form .label-search input {
  max-width: 100%;
}

nav .mobile .login {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  color: var(--dark-grey);
  font-family: 'Poppins', sans-serif;
  font-display: swap;
  font-weight: 700;
  transition: all .15s ease-in-out;
}

nav .mobile .login:hover {
  color: var(--orange);
}

nav .mobile .login:hover img {
  filter: invert(39%) sepia(94%) saturate(556%) hue-rotate(318deg) brightness(104%) contrast(101%);
}

nav .mobile .login img {
  margin-right: 0.3125rem;
  transition: all .15s ease-in-out;
}

nav .mobile .nav-logo {
  display: block;
  width: 70%;
  max-width: 10.9375rem;
  margin: 0 2.5rem;
  transform: translateX(-0.875rem);
}

nav .mobile > .menu-toggler {
  float: left;
}

nav .mobile .menu-toggler {
  width: 1.75rem;
  cursor: pointer;
}

nav .mobile .menu-toggler.close {
  width: 1.5rem;
  transition: all 0.15s cubic-bezier(0, 1.16, 0.99, 0.83);
}

nav .mobile .menu-toggler.close:hover {
  transform: rotate(180deg);
}

nav .mobile .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
}

nav .mobile .sidebar .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  background-color: #0000004d;
  opacity: 0;
  transition: all .15s ease-in-out;
}

nav .mobile .sidebar .content {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 19.375rem;
  height: 100vh;
  background-color: var(--white);
  transform: translateX(-100%);
  transition: all .15s ease-in-out;
}

nav .mobile .sidebar .content .logo {
  display: flex;
  justify-content: space-between;
  padding: 1.875rem 1.25rem 0;
}

nav .mobile .sidebar .content ul {
  margin-top: 3.125rem;
}

nav .mobile .sidebar .content a {
  padding: 1.5rem 2.375rem;
  border-bottom: 0.125rem solid #b4b4b436;
  color: var(--dark-grey);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s ease-in-out;
  display: block;
}

nav .mobile .sidebar .content a:hover {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

nav .mobile .sidebar .content li.active a {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

nav .mobile .sidebar.closed {
  display: none;
}

nav .mobile.opened .sidebar .content {
  transform: translateX(0%);
}

nav .mobile.opened .sidebar .bg {
  opacity: 1;
}

nav .search {
  width: 18.4375rem;
  padding: 0.5625rem 1rem 0.5625rem 3.75rem;
  border: 0.0625rem solid #F1F0F1;
  background-color: #F1F0F1;
  background-image: url("../img/icons/search.png");
  background-repeat: no-repeat;
  background-position: 1.875rem 0.625rem;
  background-size: 1.25rem;
  color: var(--grey);
  font-size: 1.125rem;
  transition: all .15s ease-in-out;
}

nav .search::-webkit-search-cancel-button {
  display: none;
}

nav .search:focus {
  border: 0.0625rem solid #3b4157;
  background-color: transparent;
  outline: none;
}

nav .search:-ms-input-placeholder {
  color: var(--grey);
}

nav .search::-moz-placeholder {
  color: var(--grey);
}

nav .search::placeholder {
  color: var(--grey);
}

nav .search-form {
  position: relative;
  overflow: hidden;
}

nav .search-form button[type=submit] {
  background-color: var(--dark-grey);
  position: absolute;
  height: 100%;
  padding: 0.625rem;
  right: 0;
  border: 0.0625rem solid var(--dark-grey);
  top: 0;
  transform: translateX(100%);
  transition: all .15s ease-in-out;
  cursor: pointer;
}

nav .search-form button[type=submit]:hover {
  background-color: #505875;
  border-color: #505875;
}

nav .search-form button[type=submit] img {
  max-width: 1.25rem;
  filter: brightness(10);
}

nav .search-form.not-empty button[type=submit] {
  transform: translateX(0);
}

nav .search-form.not-empty input {
  padding-left: 1rem;
  background-position: -1.25rem;
  padding-right: calc(2.625rem + 1rem);
}

@media (max-width: 379px) {
    #latest-posts .latest-posts-item .image {
        max-width: 120px;
        height: 120px;
        width: 100%!important;
    }
}

@media (min-width: 375px) {
  nav .topbar {
    padding: 0.625rem 1.375rem;
  }
  nav .topbar .close {
    right: 1.375rem;
  }
}

@media (min-width: 768px) {
  nav .topbar {
    justify-content: center;
    font-size: 16px;
  }
  nav .topbar .close {
    left: 24px;
    right: unset;
  }
  nav .topbar .close span {
    display: inline;
  }
}

@media (min-width: 992px) {
  nav .mobile {
    display: none;
  }
  nav .desktop {
    height: var(--menu-height);
    display: block;
    overflow-y: hidden;
    transition: all .1s ease-in-out;
  }
  nav .desktop .topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #5B90B9;
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
  nav .desktop .topbar .close {
    cursor: pointer;
    position: absolute;
    left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
  }
  nav .desktop .topbar .close img {
    margin-right: 0.625rem;
  }
  nav .desktop .topbar .link {
    display: flex;
    align-items: center;
    color: #FFF;
  }
  nav .desktop .topbar .link img {
    max-width: 1.125rem;
    margin: 0 0.875rem;
  }
  nav .desktop .topbar .link img.fire {
    max-width: 0.875rem;
  }
  nav .desktop .topbar .label {
    padding: 0.1875rem 0.4375rem;
    border-radius: 0.3125rem;
    background-color: rgba(18, 37, 107, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
  }
  nav .desktop .content {
    margin: auto;
    padding: 0;
  }
  nav .desktop .content .line-1,
  nav .desktop .content .line-2 {
    display: -ms-grid;
    display: grid;
    align-items: center;
    max-width: var(--max-content-width);
    margin: auto;
    gap: 0rem 0rem;
    -ms-grid-columns: 20% 20% 20% 20% 20%;
        grid-template-columns: 20% 20% 20% 20% 20%;
  }
  nav .desktop .content .line-1 {
    padding: 1.5625rem 1.25rem;
    grid-area: line-1;
        grid-template-areas: "search logo logo logo login";
  }
  nav .desktop .content .line-1 .search {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: search;
  }
  nav .desktop .content .line-1 .logo {
    width: 100%;
    max-width: 12.5rem;
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-area: logo;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  nav .desktop .content .line-1 .login {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: login;
    justify-self: flex-end;
    display: flex;
  }
  nav .desktop .content .line-2 {
    padding: 1.25rem 1.25rem;
    display: flex;
    justify-content: center;
  }
  nav .desktop .content .line-2 .page-links {
    font-size: 1.125rem;
    font-weight: 500;
    transition: all .1s ease-in-out;
    /* margin: 0 75px; */
    margin: 0 50px;
  }
  nav .desktop .content .line-2 .page-links:first-child {
    margin-left: 0;
  }
  nav .desktop .content .line-2 .page-links:last-child {
    margin-right: 0;
  }
  nav .desktop .content .line-2 .page-links:hover {
    color: var(--orange);
  }
  nav .desktop .content .line-2 .page-links:nth-child(1) {
    grid-area: link-1;
  }
  nav .desktop .content .line-2 .page-links:nth-child(2) {
    grid-area: link-2;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  nav .desktop .content .line-2 .page-links:nth-child(3) {
    grid-area: link-3;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  nav .desktop .content .line-2 .page-links:nth-child(4) {
    grid-area: link-4;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  nav .desktop .content .line-2 .page-links:nth-child(5) {
    grid-area: link-5;
    justify-self: flex-end;
  }
  nav .desktop .content hr {
    height: 0.0625rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 0.0625rem solid #E6E8E9;
  }
  nav .desktop.compact {
    height: 5.625rem;
  }
  nav a {
    color: var(--grey);
    text-decoration: none;
  }
  nav a img {
    width: 1.375rem;
    margin-right: 0.5rem;
  }
  nav a.login {
    color: var(--dark-grey);
    font-size: 1.125rem;
    font-weight: 700;
    transition: all .15s ease-in-out;
  }
  nav a.login img {
    transition: all .15s ease-in-out;
  }
  nav a.login:hover {
    color: var(--orange);
  }
  nav a.login:hover img {
    filter: invert(39%) sepia(94%) saturate(556%) hue-rotate(318deg) brightness(104%) contrast(101%);
  }
  nav a.signup {
    margin: 0.3125rem 0 0 1.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
  }
  nav .site-links {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin: 0;
    padding: 1rem 0;
    background-color: #FFF;
    list-style: none;
  }
  nav .site-links li a {
    color: var(--grey);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all .15s ease-in-out;
  }
  nav .site-links li a:hover {
    color: var(--orange);
  }
}

:root {
  --orange: #FF594E;
  --grey: #484B57;
  --dark-grey: #3B4157;
  --white: #FFF;
  --dark-white: #F5F5F5;
  --green: #1FAB36;
  --menu-height: 65px;
  --max-content-width: 1168px;
  --section-title-size: 31px;
  --section-title-margin-bottom: 60px;
  --body-padding: 20px;
  --footer-padding: 50px;
  --footer-margin: 120px var(--body-padding) 20px;
  --box-shadow: 0px 3px 6px #00000029;
  --card-border-radius: 5px;
}

@media (min-width: 992px) {
  :root {
    --menu-height: 152px;
    --title-h2--font-size: 42px;
    --footer-margin: 150px var(--body-padding);
    --section-title-margin-bottom: 120px;
  }
}

footer {
  margin: var(--footer-margin);
  padding: var(--footer-padding) 0;
  border-top: 0.0625rem solid #70707066;
}

footer * {
  color: var(--dark-grey);
}

footer * div > img,
footer * p,
footer * a {
  opacity: .65;
}

footer .contact-info {
  text-align: center;
}

footer .contact-info .logo img {
  width: 12.1875rem;
}

footer .contact-info .logo p {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
}

footer .contact-info .social-links {
  margin: 2.5rem 0 0;
}

footer .contact-info .social-links a {
  margin: 0 0.625rem;
  text-decoration: none;
}

footer .contact-info .social-links a img {
  width: 1.875rem;
}

footer .contact-info .account {
  display: none;
  margin-top: 48px;
}

footer .contact-info .account a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--dark-grey);
}

footer .contact-info .account a img {
  width: 22px;
  margin-right: 8px;
}

footer .contact-info .account a.login {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-grey);
}

footer .contact-info .account a.signup {
  margin: 5px 0 0 30px;
  font-size: 12px;
}

footer .links {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 1.25rem;
  border-bottom: 0.0625rem solid #70707066;
}

footer .links .pages li {
  margin-bottom: 2.3rem;
  font-size: 1.25rem;
}

footer .links .pages li a {
  transition: all .15s ease-in-out;
}

footer .links .pages li a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer .links .help li {
  font-weight: 400;
  margin-bottom: 2.65rem;
  font-size: 1rem;
}

footer .links ul li:last-of-type {
  margin-bottom: 0;
}

footer .other-links {
  padding: 2.5rem 0;
}

footer .other-links ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

footer .other-links ul li {
  margin: 0 1.5625rem;
}

footer .other-links ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .other-links ul li a img {
  margin-top: 1.25rem;
  max-width: 4.375rem;
  border-radius: 0.625rem;
}

footer .other-links ul li:nth-child(2) > a > img {
  max-width: 6.875rem;
  border-radius: 0;
}

footer .text {
  opacity: .65;
}

footer .text p {
  font-size: .85rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 375px) {
  footer .text p {
    font-size: 0.75rem;
  }
}

footer .text .notice {
  border: 0.0625rem solid #706F6F66;
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

footer > div {
  max-width: 600px;
  margin: auto;
}

@media (min-width: 992px) {
  footer .links .pages li a {
    font-weight: 400;
  }
  footer .links .help li a {
    color: #3c4258a7;
  }
}

@media (min-width: 1100px) {
  footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .row > div {
    padding: 0;
  }
  footer .contact-info .logo {
    text-align: left;
  }
  footer .contact-info .logo p {
    margin-top: 16px;
  }
  footer .contact-info .social-links {
    text-align: left;
    margin-top: 22px;
  }
  footer .contact-info .social-links a {
    margin-left: 0;
  }
  footer .contact-info .account {
    display: block;
  }
  footer .links {
    border: none;
  }
  footer .links .pages {
    padding-right: 90px;
  }
  footer .text {
    margin-top: 78px;
  }
  footer > div {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  footer {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-content-width);
  }
}

html {
  font-size: 80%;
}

@media (min-width: 375px) {
  html {
    font-size: 89%;
  }
}

@media (min-width: 425px) {
  html {
    font-size: 100%;
  }
}

.screen-width {
  position: fixed;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 1000000000;
  padding: 0.25rem 0.625rem;
  border-radius: 0.3125rem;
  background-color: #FF594E;
  color: #FFF;
  font-family: Roboto;
  font-display: swap;
  font-weight: 500;
}

.upper {
  text-transform: uppercase;
}

html {
  overflow-x: hidden;
}

body {
  margin-top: var(--menu-height);
  overflow-x: hidden;
  background-color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
  font-display: swap;
  transition: margin .15s all ease-in-out;
  transition: margin-top .05s ease-in-out;
}

body.topbar-open {
  margin-top: calc(var(--menu-height) + 36px);
}

body,
input,
textarea,
button {
  font-family: 'Roboto', sans-serif;
  font-display: swap;
}

aside {
  height: 100%;
}

section {
  padding: 3.75rem var(--body-padding);
  overflow: auto;
}

@media (min-width: var(--max-content-width)) {
  main,
  header,
  footer,
  aside {
    width: 100%;
    max-width: var(--max-content-width);
    margin: auto;
  }
}

a {
  text-decoration: none;
}

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

h1,
h2 {
  position: relative;
  margin: 0 0 var(--section-title-margin-bottom);
  color: var(--dark-grey);
  font-size: var(--section-title-size);
  line-height: 1.35;
  text-align: center;
}

h1 {
  margin-top: 60px;
}

h1:after,
h2:after {
  content: '';
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  width: 2rem;
  height: 0.1875rem;
  background-color: var(--dark-grey);
  opacity: .6;
  transform: translateX(-50%);
}

h3 {
  margin: 1rem 0;
  color: var(--dark-grey);
  font-size: 1.4375rem;
}

h4 {
  margin: 1rem 0;
  color: var(--dark-grey);
  font-size: 1.25rem;
  line-height: 1.6875rem;
}

.btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 8.75rem;
  margin: 0;
  padding: 0.3125rem 0.625rem;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  color: var(--dark-grey);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6875rem;
  letter-spacing: 0.0625rem;
  cursor: pointer;
  outline: none;
  transition: all .15s ease-in-out;
  background-color: #FFF;
}

.btn.btn-blue {
  background-color: #5B90B9;
  color: var(--white);
}

.btn.btn-blue:hover {
  background-color: #709fc2;
}

.btn.btn-orange {
  background-color: var(--orange);
  color: var(--white);
}

.btn.btn-orange:hover {
  background-color: #ff7168;
}

.bg-white {
  background-color: var(--white);
}

.orange {
  color: var(--orange);
}

.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

body.with-sidebar {
  max-width: var(--max-content-width);
  margin-right: auto;
  margin-left: auto;
}

body.with-sidebar aside .categories {
  width: 100%;
  max-width: 305px;
  margin: auto;
}

body.with-sidebar aside .categories .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 18px 24px;
  border-radius: 5px;
  background-color: #EFEDEC;
  color: var(--dark-grey);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 20px;
  font-weight: 700;
  transition: all .15s ease-in-out;
}

body.with-sidebar aside .categories .category img {
  height: 15px;
  transition: all .15s ease-in-out;
}

body.with-sidebar aside .categories .category:hover {
  background-color: #FF594E;
  color: #fff;
}

body.with-sidebar aside .categories .category:hover img {
  filter: brightness(10);
}

body.with-sidebar aside .categories .category.active {
  background-color: #fff;
  color: #FF594E;
  pointer-events: none;
}

body.with-sidebar aside .categories .category.active img {
  opacity: 0;
}

body.with-sidebar aside #products .all-suplements {
  max-width: 280px;
  margin: 20px auto;
  padding: 15px 15px 25px;
  border-radius: 5px;
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.27);
  text-align: center;
  position: relative;
}

body.with-sidebar aside #products .all-suplements:hover .btn {
  background-color: #78a3c5;
}

body.with-sidebar aside #products .all-suplements h4 {
  margin: 30px 0 10px;
  font-size: 1.125rem;
}

body.with-sidebar aside #products .all-suplements img {
  max-width: 120px;
}

body.with-sidebar aside #products .all-suplements p {
  font-size: 16px;
  line-height: 24px;
  color: #3c4258b3;
}

body.with-sidebar aside #products .all-suplements p b {
  color: #EC6C27;
}

body.with-sidebar aside #products .all-suplements .btn {
  display: block;
  margin: 30px auto 0;
}

body.with-sidebar aside #products .all-suplements .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.with-sidebar aside #categories,
body.with-sidebar aside #products {
  display: none;
}

div.author {
  display: -ms-grid;
  display: grid;
  align-items: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 2.5rem auto;
      grid-template-columns: 2.5rem auto;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
      grid-template-areas: "avatar name"
 "avatar name";
}

div.author .name {
  margin: 0;
  color: var(--dark-grey);
  opacity: .75;
  font-size: 0.8125rem;
  font-weight: 700;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: name;
}

div.author time {
  margin-top: 5px;
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: time;
  color: var(--dark-grey);
  opacity: .7;
  font-size: 0.6875rem;
}

div.author img {
  max-width: 1.875rem;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: avatar;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0 0.25rem;
  padding: 0;
  border: none;
  border-radius: 1.25rem;
  background-color: #A5A5A5 !important;
  opacity: 1;
}

.owl-dots .owl-dot.active {
  background-color: var(--dark-grey) !important;
}

.category-tag {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.25rem 0.375rem;
  border: 0.0625rem solid;
  border-radius: 0.375rem;
  color: var(--dark-grey);
  opacity: .7;
  font-size: 0.6875rem;
  font-weight: 700;
}

.most-read-news {
  counter-reset: item;
}

.most-read-news .most-read-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.875rem 0;
  border-bottom: 0.125rem solid #E6E8E9;
}

.most-read-news .most-read-item:last-child {
  padding-bottom: 0;
}

.most-read-news .most-read-item .item-number {
  position: relative;
  width: 100%;
  max-width: 2.875rem;
  height: 2.875rem;
  border-radius: 6.25rem;
  background-color: #FFF;
  opacity: .65;
  counter-increment: item;
}

.most-read-news .most-read-item .item-number::after {
  content: counter(item);
  position: absolute;
  top: 0;
  right: 0;
  color: #FF6E64;
  font-size: 3.5625rem;
  font-weight: 700;
  line-height: 4.6875rem;
}

.most-read-news .most-read-item .item-body {
  position: relative;
  width: 100%;
  padding-left: 0.75rem;
}

.most-read-news .most-read-item .item-body .title {
  margin: 0 0 0.5rem;
  color: var(--dark-grey);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6875rem;
}

.most-read-news .most-read-item .item-body .author {
  display: block;
  opacity: .6;
  font-size: 0.875rem;
  line-height: 1.6875rem;
}

.most-read-news .most-read-item .item-body .title,
.most-read-news .most-read-item .item-body .author {
  transition: all .15s ease-in-out;
}

.most-read-news .most-read-item .item-body .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.most-read-news .most-read-item:last-child {
  border: none;
}

.most-read-news .most-read-item:hover .item-body .title,
.most-read-news .most-read-item:hover .item-body .author {
  color: var(--orange);
}

.most-read-news .most-read-item:hover .item-body .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#latest-posts {
  overflow: hidden;
}

#latest-posts h2 {
  margin: 0 0 var(--section-title-margin-bottom);
}

#latest-posts .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 53.125rem;
  margin: 0 auto;
}

#latest-posts .tab h4 {
  display: block;
  padding: 0.3125rem 1.875rem;
  border-right: 0.0625rem solid rgba(171, 171, 171, 0.6);
  color: #3c425899;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s ease-in-out;
}

#latest-posts .tab h4:first-child {
  padding-left: 0;
}

#latest-posts .tab h4:first-child::after {
  left: calc(50% - (1.875rem / 2));
}

#latest-posts .tab h4:last-child {
  border: none;
  padding-right: 0;
}

#latest-posts .tab h4:last-child::after {
  left: calc(50% + (1.875rem / 2));
}

#latest-posts .tab h4 span {
  display: block;
}

#latest-posts .tab h4.active {
  position: relative;
  color: var(--orange);
}

#latest-posts .tab h4:hover {
  color: var(--orange);
}

#latest-posts .tab h4::after {
  content: '';
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  width: 0;
  height: 0.1875rem;
  background-color: var(--orange);
  transform: translateX(-50%);
  transition: all .15s ease-in-out;
}

#latest-posts .tab h4.active::after {
  width: 1.375rem;
}

#latest-posts .latest-posts-item {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  padding: 3.125rem 0.625rem;
  transition: opacity .15s ease-in-out;
}

#latest-posts .latest-posts-item:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 85%;
  height: 0.125rem;
  background-color: #E6E8E9;
  transform: translateX(-50%);
}

#latest-posts .latest-posts-item.last-item {
  padding-bottom: 0;
}

#latest-posts .latest-posts-item.last-item:after {
  display: none;
}

#latest-posts .latest-posts-item:last-child {
  padding-bottom: 0;
  border: none;
}

#latest-posts .latest-posts-item .category-tag,
#latest-posts .latest-posts-item .post-summary {
  display: none;
}

#latest-posts .latest-posts-item .image {
  width: 30%;
  margin-right: 0.75rem;
  border-radius: 1.5625rem;
}

#latest-posts .latest-posts-item .text {
  position: relative;
}

#latest-posts .latest-posts-item .text .post-text {
  position: relative;
}

#latest-posts .latest-posts-item .text .post-text:hover .title {
  color: var(--orange);
}

#latest-posts .latest-posts-item .text .title,
#latest-posts .latest-posts-item .text .post-summary,
#latest-posts .latest-posts-item .text .author .name,
#latest-posts .latest-posts-item .text .author time {
  transition: all .15s ease-in-out;
}

#latest-posts .latest-posts-item .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#latest-posts .latest-posts-item .title {
  margin: 0 0 0.5rem;
}

#latest-posts .latest-posts-item .title a {
  color: var(--dark-grey);
  transition: all .15s ease-in-out;
}

#latest-posts .latest-posts-item .title a:hover {
  color: var(--orange);
}

#latest-posts .latest-posts-item.hidden[data-categoria] {
  display: none;
}

.see-more {
  display: block;
  margin: 50px auto 0;
  border: none;
  background-color: transparent;
  font-size: 23px;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark-grey);
  transition: all .15s ease-in-out;
  text-align: center;
}

.see-more:hover {
  text-decoration: underline;
  color: var(--orange);
}

#cards .card {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 554px;
  margin: 1.25rem auto;
  padding: 1.75rem 1.375rem;
  border-radius: 0.3125rem;
  background-color: var(--dark-grey);
  position: relative;
}

#cards .card:hover .btn {
  background-color: #ebebeb;
}

#cards .card .card-image {
  width: 3.5625rem;
  order: 2;
}

#cards .card .card-text {
  width: calc(100% - 3.5625rem - 0.5rem);
  margin-right: 0.5rem;
  order: 1;
}

#cards .card .card-text .title {
  margin-top: 0;
}

#cards .card .card-text .title,
#cards .card .card-text p {
  color: var(--white);
}

#cards .card .card-text p {
  opacity: .7;
  font-weight: 500;
  line-height: 1.6875rem;
}

#cards .card button {
  margin-top: 1.125rem;
  order: 3;
}

#cards .card .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cards .all-suplements {
  position: relative;
  max-width: 34.625rem;
  margin: 2.5rem auto 0;
  padding: 1.125rem 1.375rem 1.125rem;
  border-radius: var(--card-border-radius);
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}

#cards .all-suplements:hover .btn {
  background-color: #78a3c5;
}

#cards .all-suplements h4 {
  margin-top: 0;
}

#cards .all-suplements p {
  max-width: 73%;
  line-height: 1.6875rem;
  color: #3b4157;
}

#cards .all-suplements img {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  width: 37vw;
  width: 28%;
  max-width: 6.875rem;
}

#cards .all-suplements button {
  margin-top: 1rem;
}

#cards .all-suplements .orange {
  color: #EC6C27;
}

#cards .all-suplements a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.owl-stage {
  display: flex;
  align-items: center;
}

.first-h2 {
  margin-top: 100px;
}

.hover-effect {
  transition: box-shadow .2s ease, transform .2s ease;
}

.hover-effect:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2) !important;
  transform: translate(-1px, -1px);
}

#whatsapp .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--green);
}

#whatsapp a:hover .btn {
  background-color: #70c97f;
}

#whatsapp p {
  max-width: 18.75rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6875rem;
  text-align: center;
}

#whatsapp .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 19.375rem;
  margin-top: 0.875rem;
  padding: 0.8125rem 0.5rem;
  border: none;
  background-color: #ffffff47;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  border-radius: 4px;
}

#whatsapp .btn img {
  margin-right: 0.5rem;
}

.mb-120 {
  margin-bottom: 7.5rem;
}

main > section,
main > div {
  padding-top: 3.75rem;
}

@media (max-width: 992px) {
  .btn-large-mobile {
    font-size: 1.125rem;
    padding: 0.75rem;
    max-width: 12.5rem;
  }
}

@media (min-width: 375px) {
  #latest-posts .latest-posts-item .image {
    width: 100%;
    max-width: 120px;
    height: 140px;
  }
  #latest-posts .tab h4 {
    padding: 0.5rem 1.65rem;
  }
}

@media (min-width: 425px) {
  #latest-posts .tab h4 {
    padding: 0.5rem 1.70rem;
  }
}

@media (min-width: 576px) {
  #latest-posts .tab h4 br {
    display: none;
  }
}

@media (min-width: 768px) {
  main > section,
  main > div {
    padding-top: 6.25rem;
  }
  .see-more {
    font-size: 1.75rem;
    margin: 100px auto 50px;
  }
  #latest-posts {
    background-color: transparent;
  }
  #latest-posts .latest-posts-item {
    align-items: flex-start;
  }
  #latest-posts .latest-posts-item.hidden {
    display: flex;
  }
  /* #latest-posts .latest-posts-item:first-child {
    padding-top: 0;
  } */
  #latest-posts .latest-posts-item .category-tag,
  #latest-posts .latest-posts-item .post-summary {
    display: block;
  }
  #latest-posts .latest-posts-item .category-tag {
    margin-bottom: 20px;
    color: var(--dark-grey);
    opacity: .7;
    font-size: 14px;
  }
  #latest-posts .latest-posts-item .post-summary {
    margin-bottom: 20px;
    color: var(--dark-grey);
    opacity: .7;
    font-size: 18px;
    line-height: 27px;
  }
  #latest-posts .latest-posts-item .image {
    width: 100%;
    max-width: 220px;
    height: 162px;
    margin-right: 32px;
    -o-object-fit: cover;
       object-fit: cover;
    box-shadow: 0 3px 6px #00000029;
  }
  #latest-posts .latest-posts-item .title {
    font-size: 23px;
  }
  #latest-posts .tab {
    margin-bottom: 60px;
  }
  div.author {
    -ms-grid-columns: 2.875rem auto;
        grid-template-columns: 2.875rem auto;
  }
  div.author .name {
    font-size: 16px;
  }
  div.author time {
    font-size: 12px;
  }
  div.author img {
    max-width: 36px;
  }
  #whatsapp .container {
    flex-direction: row;
    justify-content: space-between;
  }
  #whatsapp p {
    max-width: 16.5625rem;
    text-align: left;
  }
  #whatsapp .btn {
    margin: 0;
    max-width: 17rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 992px) {
  h1,
  h2 {
    font-size: var(--title-h2--font-size);
  }
  h1:after,
  h2:after {
    bottom: -20px;
    width: 48px;
    height: 5px;
  }
  body.topbar-open {
    margin-top: calc(var(--menu-height) + 39px);
  }
  body.with-sidebar {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 68% 32%;
        grid-template-columns: 68% 32%;
    -ms-grid-rows: auto 1fr;
        grid-template-rows: auto 1fr;
    gap: 0;
        grid-template-areas: "header aside"
 "main aside"
 "card card"
 "footer footer";
  }
  body.with-sidebar header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: header;
  }
  body.with-sidebar main {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: main;
  }
  body.with-sidebar footer {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: footer;
  }
  body.with-sidebar aside {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    grid-area: aside;
  }
  body.with-sidebar aside #most-read h2 {
    margin-left: 2.875rem;
    text-align: left;
  }
  body.with-sidebar aside section {
    padding-bottom: 0;
    padding-left: 0;
  }
  body.with-sidebar aside section:first-of-type h2 {
    margin-top: calc(var(--section-title-margin-bottom) + 30px);
  }
  body.with-sidebar aside h2 {
    margin: 0;
    font-size: 23px;
    text-transform: uppercase;
  }
  body.with-sidebar aside h2::after {
    display: none;
  }
  body.with-sidebar aside #categories,
  body.with-sidebar aside #products {
    display: block;
  }
  body.with-sidebar aside #categories h2 {
    text-transform: capitalize;
  }
  body.with-sidebar h1,
  body.with-sidebar h2.main-title {
    width: 100vw;
  }
  .most-read-news .most-read-item {
    margin-left: 2.875rem;
    padding: 1rem 0;
  }
  .most-read-news .most-read-item .item-number {
    display: none;
  }
  .most-read-news .most-read-item .item-body {
    padding-left: 0;
  }
  .most-read-news .most-read-item .item-body .title {
    margin-bottom: 0;
    font-size: 1.125rem;
  }
  #cards {
    padding-top: 0;
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: card;
  }
  #cards .all-suplements {
    display: none;
  }
  #cards .card {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    padding: 24px 48px;
  }
  #cards .card .card-image {
    margin-right: 32px;
    order: 1;
  }
  #cards .card .card-text {
    width: calc(100% - 42px - 170px - 112px);
    order: 2;
  }
  #cards .card .card-text h4,
  #cards .card .card-text p {
    font-size: 18px;
  }
  #cards .card button {
    margin: 0 0 0 3.25rem;
    order: 3;
  }
  #whatsapp p {
    max-width: 100%;
  }
  .btn-large-desktop {
    font-size: 1.125rem;
    padding: 0.75rem;
    max-width: 12.5rem;
  }
}

@media (min-width: 1100px) {
  body {
    background-color: rgba(245, 245, 245, 0.5);
  }
  #whatsapp p {
    font-size: 1.25rem;
  }
  #whatsapp .btn {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1168px) {
  body.with-sidebar h1,
  body.with-sidebar h2.main-title {
    width: var(--max-content-width);
  }
}

header {
  margin-bottom: 3.75rem;
  padding-right: 0;
  padding-left: 0;
}

header .banner.supercerebro {
  background: url(../img/home/banners/protocolo-supercerebro/dr.png), url(../img/home/banners/protocolo-supercerebro/bg-mobile.png);
  background-repeat: no-repeat;
  background-position: center 1.25rem, center center;
  background-size: 24rem, cover;
}

header .banner.dores {
  background: url(../img/home/banners/protocolo-coluna-sem-dor/dr.png), url(../img/home/banners/protocolo-coluna-sem-dor/bg-mobile.png);
  background-repeat: no-repeat;
  background-position: center 1.25rem, center center;
  background-size: 24rem, cover;
}

header .banner.imunidade {
  background: url(../img/home/banners/protocolo-bomba-de-imunidade/dr.png), url(../img/home/banners/protocolo-bomba-de-imunidade/bg-mobile.png);
  background-repeat: no-repeat;
  background-position: center 1.25rem, center center;
  background-size: 24rem, cover;
}

header .banner.alzheimer {
  background: url(../img/home/banners/protocolo-alzheimer/dr.png), url(../img/home/banners/protocolo-alzheimer/bg-mobile.png);
  background-repeat: no-repeat;
  background-position: center 1.25rem, center center;
  background-size: 22rem, cover;
}

header .banner.alta-performance {
  background: url(../img/home/banners/protocolo-homem-de-alta-performance/dr.png), url(../img/home/banners/protocolo-homem-de-alta-performance/bg-mobile.png);
  background-repeat: no-repeat;
  background-position: center 1.25rem, center center;
  background-size: 24rem, cover;
}

header .banner .banner-container {
  padding-top: 25rem;
  background: white;
  background: linear-gradient(180deg, transparent 30%, #f5f5f5 70%);
}

header .banner .banner-container .content {
  padding-bottom: 1.25rem;
  text-align: center;
}

header .banner .banner-container .image {
  display: none;
}

header .banner .banner-container h2 {
  max-width: 40.625rem;
  margin: 0.5rem auto 0.75rem;
  padding: 0 1.25rem;
  font-size: 1.9375rem;
  line-height: 2.625rem;
  max-width: 32.5rem;
}

header .banner .banner-container h2 br {
  display: none;
}

header .banner .banner-container h2:after {
  display: none;
}

header .banner .banner-container h5 {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

header .banner .banner-container h6 {
  display: none;
}

header .banner .banner-container .author {
  color: var(--dark-grey);
  font-size: 1rem;
  font-weight: 700;
}

header .banner .banner-container .subscribers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.375rem 0 1.25rem;
}

header .banner .banner-container .subscribers span {
  opacity: .62;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

header .banner .banner-container .subscribers img {
  max-width: 1rem;
  margin-right: 0.3125rem;
}

header .banner .banner-container .btn {
  max-width: 10.9375rem;
  padding: 0.625rem;
  font-size: 1.125rem;
}

#cards .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#cards .container img {
  max-width: 100%;
  border-radius: 5px;
}

#cards .container .mobile img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#cards .container .desktop {
  display: none;
}

#cards .container .desktop img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#books {
  overflow-x: hidden;
}

#books .owl-dots {
  margin-top: 2.5rem;
}

#books .owl-stage {
  display: flex;
  align-items: stretch;
}

#books .see-more {
  margin: 50px 0 0 0;
}

#books .book-card-container .owl-stage-outer {
  overflow: visible;
}

#books .book-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 22.875rem;
  margin: 0 0;
  padding: 1.25rem;
  padding-left: 0rem;
  border-radius: var(--card-border-radius);
  background-color: var(--white);
  box-shadow: 0 0.1875rem 1.125rem #0000004A;
  align-items: center;
  height: 100%;
}

#books .book-card img {
  max-width: 10rem;
  margin-right: 0.3125rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 8.25rem;
}

#books .book-card h5 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.3125rem;
  border: 0.0625rem solid #1FAB36;
  border-radius: 0.375rem;
  color: #1FAB36;
  font-size: 0.625rem;
  font-weight: 700;
}

#books .book-card h4 {
  margin: 0.75rem 0;
  color: var(--dark-grey);
  font-size: 1.0625rem;
}

#books .book-card .only {
  margin: 0.5rem 0;
  color: var(--dark-grey);
  font-size: 0.75rem;
}

#books .book-card .price {
  margin-bottom: 0.75rem;
  color: var(--dark-grey);
  font-size: 0.6875rem;
  font-weight: bold;
}

#books .book-card .price span {
  font-size: 1.9375rem;
}

#books .book-card .btn {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

#latest-posts .container {
  max-width: 830px;
}

#watch .card {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 554px;
  margin: 0 auto;
  padding: 1.75rem 1.375rem;
  border-radius: 0.3125rem;
  background-color: var(--dark-grey);
  position: relative;
}

#watch .card:hover .btn {
  background-color: #ebebeb;
}

#watch .card .card-image {
  width: 3.5625rem;
  order: 2;
}

#watch .card .card-text {
  width: calc(100% - 3.5625rem - 0.5rem);
  margin-right: 0.5rem;
  order: 1;
}

#watch .card .card-text .title {
  margin-top: 0;
}

#watch .card .card-text .title,
#watch .card .card-text p {
  color: var(--white);
}

#watch .card .card-text p {
  font-weight: 400;
  opacity: .7;
  line-height: 1.6875rem;
}

#watch .card button {
  margin-top: 1.125rem;
  order: 3;
}

#watch .card .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about .info-card {
  max-width: 1060px;
  margin: auto;
}

#about .bg {
  padding: 1.25rem 0.75rem;
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: #3B4157;
}

#about .bg .heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .bg .heading h3 {
  max-width: 80%;
  margin: 0;
  color: #EFEDEC;
  font-size: 1rem;
  line-height: 1.6875rem;
  text-align: center;
}

#about .bg .heading button {
  display: none;
}

#about .bg .text {
  display: none;
}

#about .bg p {
  margin-top: 1.25rem;
  color: var(--white);
  opacity: .8;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6875rem;
}

#about .info-container {
  padding: 0 1.4375rem 1.4375rem 0;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: #FFF;
  box-shadow: 0 0.1875rem 1.125rem #0000004a;
}

#about .info-container .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 12.8125rem;
  margin: 2.125rem 0 1.4375rem;
  padding: 0 1.5625rem;
  border-right: 0.0625rem solid transparent;
  transition: padding .15s ease-in-out, border-color .3s ease-in-out;
}

#about .info-container .info .title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

#about .info-container .info .number {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 1.5rem 0;
  color: var(--orange);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5625rem;
}

#about .info-container .info .number span {
  font-size: 4.375rem;
  line-height: 1;
}

#about .info-container .info .text {
  max-width: 12.5rem;
  color: var(--darker);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6875rem;
}

#about .info-container .owl-item.active:first-child .info,
#about .info-container .owl-item:not(.active) + .active .info {
  min-width: 12.8125rem;
  padding-left: 1.5rem;
  border-color: #3b415770;
}

#about .info-container .owl-item:not(.active) + .active:last-child .info {
  border-color: transparent;
}

#specialists {
  overflow: hidden;
  padding-bottom: 10px;
}

#specialists .specialist-container .owl-stage-outer {
  padding-left: 1.7188rem;
  display: flex;
  align-items: stretch;
}

#specialists .specialist-container .owl-dots {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, 100%);
}

#specialists .specialist-container .specialist {
  height: calc(100% - 6rem);
  width: 19.375rem;
  margin: 3.75rem 0 2.5rem;
  padding: 0 1.5rem 2.5rem;
  border-radius: 0.3125rem;
  background-color: #FFF;
  color: var(--dark-grey);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: default;
}

#specialists .specialist-container .specialist .avatar {
  max-width: 7.5rem;
  max-height: 7.5rem;
  margin: 0 auto -3.75rem;
  transform: translateY(-50%);
  border-radius: 50%;
}

#specialists .specialist-container .specialist .name {
  margin: 1.25rem 0 0.625rem;
  font-size: 1.25rem;
  line-height: 1.6875rem;
}

#specialists .specialist-container .specialist .area,
#specialists .specialist-container .specialist .info {
  font-size: 1rem;
  line-height: 1.6875rem;
}

#specialists .specialist-container .specialist .area.area,
#specialists .specialist-container .specialist .info.area {
  opacity: .62;
  font-weight: normal;
  font-size: 1.125rem;
}

#specialists .specialist-container .specialist .area.info,
#specialists .specialist-container .specialist .info.info {
  max-width: 16.25rem;
  margin: 1.0625rem auto 2.8125rem;
}

#specialists .specialist-container .specialist .btn {
  max-width: 10.9375rem;
  padding: 0.625rem;
  font-size: 1.125rem;
}

#specialists .specialist-container .specialist .text {
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#specialists .specialist-container .owl-stage {
  align-items: stretch;
}

@media (min-width: 580px) {
  #about .info-container .owl-item.active:nth-child(1) .info,
  #about .info-container .owl-item.active:nth-child(2) .info,
  #about .info-container .owl-item.active:nth-child(3) .info {
    min-width: 12.8125rem;
    border-color: #3b415770 !important;
  }
  #cards .text-card.image .btn {
    max-width: 185px;
    font-size: 18px;
    padding: 12px;
  }
}

@media (min-width: 768px) {
  header {
    margin-bottom: 3.75rem;
    padding-right: 0;
    padding-left: 0;
  }
  header .banner .banner-container h2 {
    font-size: 2.4375rem;
    line-height: 3.25rem;
  }
  header .banner .banner-container h5 {
    font-size: 1.125rem;
  }
  header .banner .banner-container .subscribers span {
    font-size: 0.875rem;
  }
  #books .book-card .price {
    font-size: 0.75rem;
  }
  #about .bg {
    padding: 1.5rem;
  }
  #about .bg .heading h3 {
    font-size: 1.375rem;
    line-height: 1.4;
  }
  #about .info-container .owl-item.active:nth-child(1) .info,
  #about .info-container .owl-item.active:nth-child(2) .info,
  #about .info-container .owl-item.active:nth-child(3) .info {
    min-width: 12.8125rem;
    border-color: #3b415770 !important;
  }
}

@media (min-width: 992px) {
  #about .bg {
    padding: 2.625rem 1.5rem;
  }
  #about .bg .heading {
    justify-content: center;
  }
  #about .bg .heading h3 {
    font-size: 1.9375rem;
    text-align: center;
    margin-bottom: 0.625rem;
  }
  #about .bg .heading button {
    display: none;
  }
  #about .bg .text p {
    opacity: 1;
    font-size: 1rem;
    text-align: center;
  }
  #cards .container {
    gap: 20px;
    flex-direction: row;
  }
  #cards .container .mobile {
    display: none;
  }
  #cards .container .desktop {
    display: block;
  }
}

@media (min-width: 1100px) {
  header {
    margin-top: 50px;
  }
  header .banner-carousel .banner.supercerebro {
    padding: 1.25rem 3.75rem 1.25rem 5.625rem;
    background: url(../img/home/banners/protocolo-supercerebro/bg-desktop.png);
    background-size: cover;
    overflow-y: hidden;
  }
  header .banner-carousel .banner.dores {
    padding: 1.25rem 3.75rem 1.25rem 5.625rem;
    background: url(../img/home/banners/protocolo-coluna-sem-dor/bg-desktop.png);
    background-size: cover;
    overflow-y: hidden;
  }
  header .banner-carousel .banner.imunidade {
    padding: 1.25rem 3.75rem 1.25rem 5.625rem;
    background: url(../img/home/banners/protocolo-bomba-de-imunidade/bg-desktop.png);
    background-size: cover;
    overflow-y: hidden;
  }
  header .banner-carousel .banner.alzheimer {
    padding: 1.25rem 3.75rem 1.25rem 5.625rem;
    background: url(../img/home/banners/protocolo-alzheimer/bg-desktop.png);
    background-size: cover;
    overflow-y: hidden;
  }
  header .banner-carousel .banner.alta-performance {
    padding: 1.25rem 3.75rem 1.25rem 5.625rem;
    background: url(../img/home/banners/protocolo-homem-de-alta-performance/bg-desktop.png);
    background-size: cover;
    overflow-y: hidden;
  }
  header .banner-carousel .banner .banner-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    background: none;
    height: 450px;
  }
  header .banner-carousel .banner .banner-container .content {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    justify-content: center;
  }
  header .banner-carousel .banner .banner-container .subscribers {
    justify-content: flex-start;
    opacity: .6;
  }
  header .banner-carousel .banner .banner-container .image {
    display: block;
    height: auto;
    width: 10px;
    position: relative;
    overflow: visible;
  }
  header .banner-carousel .banner .banner-container .image img {
    width: 26rem;
    position: absolute;
    right: 0;
  }
  header .banner-carousel .banner .banner-container .author {
    order: 4;
    font-size: 14px;
    font-weight: 400;
  }
  header .banner-carousel .banner .banner-container .subscribers {
    order: 5;
  }
  header .banner-carousel .banner .banner-container h5 {
    order: 3;
  }
  header .banner-carousel .banner .banner-container h2 {
    padding: 0;
    text-align: left;
    order: 4;
    margin-left: 0;
    white-space: nowrap;
    margin-bottom: 24px;
  }
  header .banner-carousel .banner .banner-container h2 br {
    display: block;
  }
  header .banner-carousel .banner .banner-container h6 {
    order: 5;
    display: block;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    font-weight: 400;
    margin-bottom: 1.375rem;
    max-width: 34.375rem;
  }
  header .banner-carousel .banner .banner-container .buttons {
    order: 6;
  }
  header .banner-carousel .owl-prev,
  header .banner-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  header .banner-carousel .owl-prev img,
  header .banner-carousel .owl-next img {
    width: 1.25rem;
  }
  header .banner-carousel .owl-prev {
    left: 1.25rem;
  }
  header .banner-carousel .owl-next {
    right: 1.25rem;
  }
  #cards .text-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  #cards .text-card-container .text-card {
    margin: 0 1rem;
    max-width: 50%;
    width: 100%;
  }
  #cards .text-card-container .text-card.image p {
    max-width: 20.625rem;
  }
  #books .book-card-container .owl-stage-outer {
    overflow: visible;
    padding: 20px 0 20px 15px;
    margin-right: 15px;
    overflow: hidden;
  }
  #books .owl-prev,
  #books .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - (58.5px / 2)));
  }
  #books .owl-prev img,
  #books .owl-next img {
    width: 1rem;
  }
  #books .owl-prev {
    left: -1.25rem;
  }
  #books .owl-next {
    right: -1.25rem;
  }
  #books .book-card {
    width: 29.375rem;
  }
  #books .book-card .text {
    width: 100%;
  }
  #books .book-card img {
    max-width: 14rem;
    margin-right: 0.3125rem;
    max-height: 11.5rem;
  }
  #books .book-card h4 {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
  #books .book-card h5 {
    font-size: 0.75rem;
  }
  #books .book-card .only {
    margin-top: 0.375rem;
  }
  #books .book-card .btn {
    font-size: 1.125rem;
    padding: 0.5rem;
    max-width: 10rem;
  }
  #watch {
    display: block;
  }
  #watch .card {
    align-items: center;
    max-width: 100%;
    padding: 1.5rem 3rem;
    border-radius: 0.3125rem;
    background-color: var(--dark-grey);
    position: relative;
  }
  #watch .card:hover .btn {
    background-color: #ebebeb;
  }
  #watch .card .card-image {
    width: 3.5625rem;
    margin-right: 2rem;
    order: 1;
  }
  #watch .card .card-text {
    width: calc(100% - 2.625rem - 10.625rem - 7rem);
    order: 2;
    margin-right: 0.5rem;
  }
  #watch .card .card-text .title {
    margin-top: 0;
  }
  #watch .card .card-text .title,
  #watch .card .card-text p {
    color: var(--white);
    font-size: 1.125rem;
  }
  #watch .card .card-text p {
    opacity: 1;
    line-height: 1.6875rem;
  }
  #watch .card button {
    margin: 0 0 0 3.25rem;
    order: 3;
    font-size: 1.125rem;
    padding: 0.5rem;
    max-width: 10rem;
  }
  #watch .card .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #about .info-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  #about .info-container .info .number {
    margin: 1.25rem 0;
  }
  #about .info-container .info .text {
    font-size: 1rem;
    line-height: 1.6875rem;
    min-height: 5.0625rem;
  }
  #about .info-container .info:not(:last-child) {
    border-right: 0.0625rem solid #3b415770;
  }
  #specialists {
    padding-bottom: 3.75rem;
  }
  #specialists .specialist-container {
    display: flex;
    justify-content: center;
  }
  #specialists .specialist-container .specialist {
    margin: 3.75rem 1rem 0;
    height: auto;
  }
}

@media (min-width: 1200px) {
  header .banner .banner-container h2 {
    font-size: 2.625rem;
    line-height: 3.5625rem;
  }
  #cards .container .desktop img {
    max-width: 580px;
  }
}

@media (min-width: 1300px) {
  header .banner-carousel .owl-prev {
    left: -1.75rem;
    transform: translate(-100%, -50%);
  }
  header .banner-carousel .owl-next {
    right: -1.75rem;
    transform: translate(100%, -50%);
  }
}

.price {
    display: none !important;
}

.only {
    /* min-height: 56px !important; */
    /* max-height: 56px; */
    /* font-size: 0.795rem !important; */
    /* font-size: 12px !important; */
    margin: 0 !important;
    margin-bottom: 0.75rem !important;
}

