:root {

  /* Primary color */
  --primary-color-blue: #0B4582;
  --primary-color-red: #E94860;

  /* Secondary color */
  --secondary-color-darkblue: #183A68;
  --secondary-color-water: #6BCCD6;
  --secondary-color-rose: #F6DBDF;
  --secondary-color-kaky: #FAEFE3;

  /* Neutral color */
  --neutral-color-black: #000000;
  --neutral-color-white: #ffffff;
  --neutral-color-60: #696969;

  /* Heading color */
  --heading-color: #0D0D0D;
  /* Body color */
  --body-text-color: #4D4D4D;

  /* Font sizes */
  --base-font-size: 16px;
  --menu-font-size: 18px;
  --blog-font-size: 1.125rem;
  --h1-font-size: 5.44rem;
  --h2-font-size: 4.25rem;
  --h3-font-size: 3.1875rem;
  --h4-font-size: 2.375rem;
  --h5-font-size: 1.5rem;
  --h6-font-size: 1.25rem;
  --large-font-size: 1.125rem;
  --small-font-size: 0.875rem;
  --extra-small-font-size: 0.75rem;

  /* Post Inner */
  --box-bg-normal: #F7F7F7;
  --box-bg-warning: #FFE3E7;
  --box-bg-recommended: #E6F0FA;

  /* Others  */
  --header-border: 1px solid rgb(181 181 181 / 70%);
  --heading-line-top-blue: #4eb5ff;
  --heading-line-bot-blue: #3c6a9b;
  --heading-line-top-red: #ad223b;
  --heading-line-bot-red: #e94860;
  --post-navigation-bg-color: #F7F7F7;
  --post-navigation-border-radius: 20px;
  --button-border-radius: 8px;
  --button-oval-border-radius: 100px;
  --button-padding: 15px 29px;
  --footer-border: 1px solid #CFCFCF;

}

* {
  font-family: 'Museo Sans', sans-serif;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 300;
  color: var(--body-text-color);
}

.font-size-14{
  font-size: 14px;
}

.banner,
.three-column-section,
.four-column-section,
.contact-us,
.footer{
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1540px;
  }
}

@media (min-width: 992px) {
  .container.v2 {
    max-width: 1140px;
  }
}

img {
  max-width: 100%;
}

.h1,
h1 {
  font-size: var(--h1-font-size);
  line-height: 1;
}

.h2,
h2 {
  font-size: var(--h2-font-size);
  line-height: 1.1;
}

.h3,
h3 {
  font-size: var(--h3-font-size);
}

.h4,
h4 {
  font-size: var(--h4-font-size);
}

.h5,
h5 {
  font-size: var(--h5-font-size);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1.5rem;
}

.h6,
h6,
p,
a,
.font-size-large,
.font-size-regular,
.font-size-small,
.font-size-extra-small {
  font-size: var(--base-font-size);
}

/* Background Colors */
.bg-kaky {
  background-color: var(--secondary-color-kaky);
}

/* Button */
.btn {
  border-radius: var(--button-border-radius);
  padding: var(--button-padding);
  text-transform: uppercase;
}

.btn-red {
  color: var(--neutral-color-white);
  background-color: var(--primary-color-red);
}

.btn-red:hover,
.btn-red:focus {
  color: var(--neutral-color-white);
  background-color: var(--neutral-color-black);
}

.btn-oval-black {
  border-radius: var(--button-oval-border-radius);
  color: var(--neutral-color-white);
  background-color: var(--neutral-color-black);
  padding: 8px 20px;
}
.btn-oval-black:hover,
.btn-oval-black:focus {
  color: var(--neutral-color-white);
  background-color: var(--primary-color-red);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
}

.btn-icon svg {
  margin-left: 5px;
  line-height: 1;
  margin-bottom: 2px;
}

/* Others */
.flex-1 {
  flex: 1;
}

.gap20 {
  gap:20px;
}

.gap30 {
  gap:30px;
}

.maxw-250 {
  max-width: 250px;
}

.maxw-360 {
  max-width: 360px;
}

.heading {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0;
}

.me-4rem {
  margin-bottom: 4rem;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

p:last-of-type {
  margin-bottom: 0;
}

.heading-line {
  position: relative;
  padding-left: 30px;
}

.heading-line:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 10px;
  width: 10px;
  height: calc(100% - 20px);
}

.heading-line._blue:before {
  background: var(--heading-line-top-blue);
  background: linear-gradient(to bottom, var(--heading-line-top-blue) 50%, var(--heading-line-bot-blue) 50%);
}

.heading-line._red:before {
  background: var(--heading-line-top-red);
  background: linear-gradient(to bottom, var(--heading-line-top-red) 50%, var(--heading-line-bot-red) 50%);
}

.hyperlink {
  text-decoration: none;
  transition: color ease .3s;
  display: inline-flex;
  align-items: center;
}

.hyperlink svg {
  margin-left: 10px;
}

.hyperlink svg path {
  transition: stroke ease .3s;
}

.hyperlink._red {
  color: var(--primary-color-red);
}

.hyperlink._red:hover,
.hyperlink._red:focus {
  color: var(--body-text-color);
}

.hyperlink._red svg path {
  stroke: var(--primary-color-red);
}

.hyperlink._red:hover svg path,
.hyperlink._red:focus svg path {
  stroke: var(--body-text-color);
}

.hyperlink._black {
  color: var(--body-text-color);
}

.hyperlink._black:hover,
.hyperlink._black:focus {
  color: var(--primary-color-red);
}

.hyperlink._black svg path {
  stroke: var(--primary-color-red);
}

.hyperlink._black:hover svg path,
.hyperlink._black:focus svg path {
  stroke: var(--primary-color-red);
}

.hyperlink._underline:hover,
.hyperlink._underline:focus {
  text-decoration: underline;
}

.horizontal-line {
  border-top: var(--header-border);
}

.list-arrow-bullet {
  list-style-image: url('https://ma.bicivilizate.com/wp-content/uploads/2024/08/arrow-right.svg');
  padding-left: 20px;
  margin-bottom: 0;
}

.list-arrow-bullet li {
  margin-bottom: 15px;
}

.list-arrow-bullet li:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  * {
    font-size: 12px;
  }
}

@media (min-width: 767px) {
  * {
    font-size: 14px;
  }

  .h6,
  h6 {
    font-size: var(--h6-font-size);
  }

  .font-size-large {
    font-size: var(--large-font-size);
  }

  .font-size-small {
    font-size: var(--small-font-size);
  }

  .font-size-extra-small {
    font-size: var(--extra-small-font-size);
  }

}

@media (min-width: 992px) {
  * {
    font-size: 15px;
  }
  .contact-us-text{
    max-width: 440px;
  }
}

@media (min-width: 1200px) {
  * {
    font-size: 16px;
  }
}.section-large{
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.section-medium{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-small{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-large.notop,
.section-medium.notop,
.section-small.notop{
  padding-top: 0;
}
.section-large.nobot,
.section-medium.nobot,
.section-small.nobot{
  padding-bottom: 0;
}body.side-menu-open {
  overflow: hidden;
}

.site-header {
  background-color: var(--secondary-color-kaky);
  border-bottom: var(--header-border);
}

.navbar .navbar-brand img {
  height: 80px;
}

.navbar ._right {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  transition: background-color ease .3s;
}

.navbar ._right .navbar-toggler:hover,
.navbar ._right .navbar-toggler:focus {
  background-color: var(--neutral-color-white);
}

.navbar ._right .navbar-toggler {
  width: 100px;
  z-index: 99;
  border-radius: 0;
  right: 0;
  position: absolute;
  height: 100%;
}

.navbar ._right .navbar-toggler ._bike {
  display: none;
}

.navbar ._right .navbar-toggler .navbar-toggler-text {
  font-weight: 400;
  color: var(--heading-color);
  font-size: var(--menu-font-size);
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:not(.collapsed) {
  background-color: var(--neutral-color-white);
}

.site-header .navbar {
  z-index: 10;
}

.site-header .side-menu {
  position: fixed;
  top: 125px;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  background: white;
  height: 100vh;
  z-index: 99;
  padding: 2rem;
  border-top: var(--header-border);
  transition: right ease .5s;
}

.site-header .side-menu.show {
  right: 100%;
}

.side-menu .navbar-nav {
  gap: 24px;
}

.side-menu .navbar-nav li a {
  font-size: var(--menu-font-size);
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 400;
  transition: color ease .3s;
}

.side-menu .navbar-nav li a[href="#not-link"] {
  color: var(--primary-color-red);
  pointer-events: none;
}

.side-menu .navbar-nav li a:hover,
.side-menu .navbar-nav li a:focus {
  color: var(--primary-color-red);
}

.side-menu-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: gray;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease .5s;
}

.side-menu-overlay.open {
  opacity: .5;
  visibility: visible;
}

.menu-sidebar-menu-container {
  /* border-top: var(--header-border); */
  border-bottom: var(--header-border);
  /* padding-top: 24px; */
  padding-bottom: 24px;
  /* margin-top: 24px; */
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .site-header .side-menu.show {
    right: 50%;
  }

  .site-header .side-menu {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .navbar .navbar-brand img {
    height: auto;
  }

  .navbar ._right {
    width: auto;
    height: auto;
    position: static;
  }

  .navbar ._right .navbar-toggler {
    width: 320px;
    position: static;
  }

  .navbar ._right .navbar-toggler ._bike,
  .navbar ._right .navbar-toggler .navbar-toggler-text {
    display: inline-block;
  }

  .site-header .side-menu {
    width: 320px;
  }

  .site-header .side-menu.show {
    right: 320px;
  }

  .nabvar-desktop .menu-primary-menu-container,
  .nabvar-desktop .navbar-nav,
  .nabvar-desktop .navbar-nav .menu-item,
  .nabvar-desktop .navbar-nav .menu-item a {
    width: 100%;
    height: 100%;
  }

  .menu-primary-menu-container {
    max-width: 555px;
  }

  .nabvar-desktop .navbar-nav .menu-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 400;
    border-right: var(--header-border);
    transition: background-color ease .3s;
  }

  .nabvar-desktop .navbar-nav .menu-item:first-of-type a {
    border-left: var(--header-border);
  }

  .nabvar-desktop .navbar-nav .menu-item a:hover,
  .nabvar-desktop .navbar-nav .menu-item a:focus {
    background-color: var(--neutral-color-white);
  }

  .nabvar-desktop .navbar-nav {
    max-width: 555px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-evenly;
  }

}
.home-banner-text{
  position: relative;
  max-width: 100%;
  font-size: calc(var(--large-font-size) + 4px);
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .home-banner-text{
    padding: 0;
  }
}
@media (min-width: 992px) {
  .home-banner-text{
    position: absolute;
    max-width: 600px;
    bottom: 0;
    right: calc(50% + 30px);
    margin-left: 10px;
    text-align: left;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .home-banner-text{
    max-width: 500px;
    bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .home-banner-text{
    max-width: 360px;
  }
}.post-banner{
  min-height: 550px;
  padding: 0;
}
.post-banner .wp-post-image{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.post-banner .heading h1,
.post-banner .heading small{
  color: var(--neutral-color-white);
}
.post-banner .post-banner-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--neutral-color-black);
  opacity: .4;
  z-index: -1;
}
.post-banner .post-banner-nav{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px 50px;
  color: var(--heading-color);
  background-color: var(--neutral-color-white);
}
.post-banner .post-banner-nav a{
  color: var(--primary-color-red);
  text-decoration: none;
}
.post-banner .post-banner-nav a:hover,
.post-banner .post-banner-nav a:focus{
  text-decoration: underline;
}.simple-banner .container {
  max-width: 1200px;
}

.simple-banner h1 {
  color: var(--primary-color-red);
  font-size: calc(4em + 1vw);
}

.simple-banner .home-banner-desc{
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 1200px){
  .simple-banner .heading {
    max-width: 730px;
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .simple-banner .heading._tag {
    max-width: 100%;
  }
}
.three-column-section-item .horizontal-line{
  border-top:none;
}
.three-column-section-item{
  padding-left: 2rem;
  padding-right: 2rem;
}
.three-column-section-item:nth-child(2){
  border-left: none;
  border-right: none;
  border-top: var(--header-border);
  border-bottom: var(--header-border);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (min-width: 576px) {
  /* .three-column-section-item{
    padding-left: 50px;
    padding-right: 50px;
  } */
}
@media (min-width: 992px){
  .three-column-section-item:nth-child(2){
    border-left: var(--header-border);
    border-right: var(--header-border);
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .three-column-section-item .three-col-card-header {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .three-column-section-item .horizontal-line{
    border-top: var(--header-border);
  }
}
@media (min-width: 1200px){
  .three-column-section-item:nth-child(2){
    border-right: var(--header-border);
  }
  .three-column-section-item .three-col-card-header {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
}.four-column-section-items{
  row-gap: 30px;
}
.four-column-section-item.with-tags .box-overlay{
  height: 524px;
}
.four-column-section-item .box-overlay ._date{
  position: absolute;
  top: 155px;
  opacity: 1;
  transition: opacity ease .3s;
}
.four-column-section-item.with-tags .box-overlay ._date{
  top: 210px;
}
.four-column-section-item .box-overlay:hover ._date,
.four-column-section-item .box-overlay:focus ._date{
  opacity: 0;
}
.box-overlay{
  border: var(--header-border);
  height: 504px;
  overflow: hidden;
  position: relative;
}
.box-overlay-image{
  height: 300px;
  width: 100%;
}
.box-overlay-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter ease .5s;
}
.box-overlay-content{
  position: absolute;
  top: 300px;
  width: 100%;
  padding: 24px;
  transition: all ease .5s;
}
.box-overlay-hidden{
  opacity: 0;
  transition: opacity ease 1s;
}
.box-overlay:hover .box-overlay-image img,
.box-overlay:focus .box-overlay-image img{
  filter: grayscale(0%);
}
.box-overlay:hover .box-overlay-hidden,
.box-overlay:focus .box-overlay-hidden{
  opacity: 1;
}
/* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.box-overlay-content::-webkit-scrollbar {
  width: 3px; /* Width of the scrollbar */
}
.box-overlay-content::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color of the scrollbar track */
}
.box-overlay-content::-webkit-scrollbar-thumb {
  background: #888; /* Background color of the scrollbar thumb */
  border-radius: 10px; /* Roundness of the scrollbar thumb */
}
.box-overlay-content::-webkit-scrollbar-thumb:hover {
  background: #555; /* Background color of the scrollbar thumb on hover */
}
.tags-list{
  gap: 12px;
  padding-left: 0;
  margin-bottom: 30px;
  list-style-type: none;
  flex-wrap: wrap;
}
.tags-list li {
  display: flex;
}
.tags-list li a{
  font-size: 13px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--heading-color);
  background-color: var(--secondary-color-kaky);
  transition: background-color ease .3s, color ease .3s;
}
.tags-list li a:hover,
.tags-list li a:focus,
.tags-list li a.active,
.tags-list li a.active{
  color: var(--neutral-color-white);
  background-color: var(--primary-color-red);
}
.pagination-links a{
  border: 1px solid#B4B6C4;
  padding: 9px 16px 9px 16px;
  text-decoration: none;
  color: #18191F;
}
.pagination-links a.prev{
  border-right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pagination-links a.next{
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}.post-inner .container._small {
  max-width: 820px;
}

.post-inner .container._medium {
  max-width: 1110px;
}

.post-content-item {
  padding-bottom: 48px;
}

.post-content-item:last-of-type {
  padding-bottom: 0;
}

.post-content-item strong {
  font-weight: 600;
}

.post-content-item .post-content *:not(.post-content-image-caption, .post-content-image-caption em, .post-content ._title, .post-blockquote .post-blockquote-text em, .post-blockquote .post-blockquote-quotee em) {
  font-size: var(--base-font-size);
  line-height: 28.26px;
}

.post-content-item .post-content *:first-child {
  margin-top: 0;
}

.post-content-item .post-content *:last-child {
  margin-bottom: 0;
}

.post-content-item .post-content ul {
  margin-top: 1rem;
}

.post-content-box {
  padding: 40px 48px;
  background-color: var(--box-bg-normal);
}

.post-content-box._warning {
  background-color: var(--box-bg-warning);
}

.post-content-box._warning h6 {
  color: var(--primary-color-red);
}

.post-content-box._recommended {
  background-color: var(--box-bg-recommended);
}

.post-content-box._recommended h6 {
  color: var(--primary-color-blue);
}

.post-navigation {
  gap: 50px;
  height: 90px;
  background-color: var(--post-navigation-bg-color);
  border-radius: var(--post-navigation-border-radius);
}

.post-navigation .post-nav {
  flex: 1;
}

.post-navigation .post-nav a,
.post-navigation .post-nav a .post-nav-text span {
  gap: 15px;
  transition: color ease .3s;
}

.post-navigation .post-nav a.hyperlink svg {
  margin-left: 0;
}

.post-navigation .post-nav a svg path {
  transition: stroke ease .3s;
}

.post-navigation .post-nav a:hover,
.post-navigation .post-nav a:focus,
.post-navigation .post-nav a:hover .post-nav-text span,
.post-navigation .post-nav a:focus .post-nav-text span {
  color: var(--primary-color-red);
}

.post-navigation .post-nav a:hover svg path,
.post-navigation .post-nav a:focus svg path {
  stroke: var(--primary-color-red);
}

.post-navigation .post-nav:not(.home) {
  max-width: 450px;
}

.post-navigation .post-nav._home {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.post-navigation .post-nav._home a svg rect,
.post-navigation .post-nav._home a svg path {
  transition: fill ease .3s;
}

.post-navigation .post-nav._home a:hover svg rect,
.post-navigation .post-nav._home a:focus svg rect {
  fill: var(--primary-color-red);
}

.post-navigation .post-nav._home a:hover svg path,
.post-navigation .post-nav._home a:focus svg path {
  fill: var(--neutral-color-white);
}

.post-content-article .post-content-article-col {
  width: 100%;
  background: var(--box-bg-normal);
}

.post-content-article .post-content-article-col ._left ._thumbnail {
  width: 150px;
  height: 100%;
  position: relative;
}

.post-content-article .post-content-article-col ._left ._thumbnail:before {
  content: '';
  background: gray;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: .7;
  transition: opacity .3s ease;
}

.post-content-article .post-content-article-col:hover ._left ._thumbnail:before,
.post-content-article .post-content-article-col:focus ._left ._thumbnail:before {
  opacity: .3;
}

.post-content-article .post-content-article-col ._left ._thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-content-article .post-content-article-col ._left ._thumbnail ._post-date {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.post-content-article .post-content-article-col ._left ._thumbnail ._post-date span {
  color: var(--neutral-color-white);
  font-weight: 600;
}

.post-content-article .post-content-article-col ._right {
  padding: 20px;
}

.post-content-article .post-content-article-col ._right ._tag a {
  font-size: var(--small-font-size);
}

.post-content-article .post-content-article-col ._right h2,
.post-content-article .post-content-article-col ._right h2 a {
  color: var(--body-text-color);
  line-height: 1.2 !important;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-content-article .post-content-article-col ._right ._link a {
  font-size: var(--base-font-size);
}

@media (min-width: 768px) {
  .post-content-article .post-content-article-col {
    width: 50%;
  }
}

.post-video-container {
  position: relative;
  margin-bottom: 20px;
}

.post-video-container video {
  width: 100%;
}

.post-video-container .controls {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  /* Hidden until video is paused or hovered */
}

.post-video-container .controls a {
  display: flex;
  align-items: center;
}

.post-video-container.paused .controls {
  visibility: visible;
  /* Show controls if video is paused */
}

.post-video-container:hover .controls {
  visibility: visible;
  /* Show controls on hover */
}

.post-blockquote {
  padding-left: 25px;
  border-left: 5px solid var(--heading-line-bot-blue);
}

.post-blockquote .post-blockquote-text em {
  font-size: var(--h5-font-size);
}

.post-blockquote .post-blockquote-quotee em {
  font-size: var(--blog-font-size);
}

.post-list-container.post-checklist ul {
  list-style-type: none;
  padding-left: 10px;
}

.post-list-container.post-checklist ul li {
  padding-left: 27px;
  background: url(https://ma.bicivilizate.com/wp-content/uploads/2024/09/checklist-icon.png) no-repeat left 5px;
  background-size: 16px 16px;
}

#lightgallery a {
  flex: 1 1 calc(33.333% - 20px);
}

#lightgallery.light-gallery-two a {
  flex: 1 1 calc(50% - 20px);
}

#lightgallery a img {
  width: 100%;
  height: 100%;
  max-height:320px;
  object-fit: cover;
}

#lightgallery.light-gallery-two a img {
  max-height: 100%;
}

.post-bf-container .beforeAfter img{
  max-width: none;
}
.post-bf-container .beforeAfter div {
  opacity: 1 !important;
}
._title_reference {
  color: #ccc;
}
._text_reference * {
  font-size: 0.75rem !important;
}
footer.footer{
  border-top: var(--footer-border);
}
.footer p,
.footer a{
  color: var(--neutral-color-60);
  font-size: 12px;
}
.footer strong{
  color: var(--heading-color);
  font-size: 12px;
}
.footer p.font-size-small{
  font-size: 14px;
}