html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins';
  font-weight: normal;
  letter-spacing: 1px;
}

a {
  color: black;
  transition: .3s ease;
}

a:hover {
  color: rgba( 0 0 0 / 80%);
}

/* Animate */
@keyframes blur {
  to {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

.blur {
  transition: all .75s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: blur 0.3s linear forwards;
  animation-delay: .2s;
  filter: blur(5px);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes edgeBreath {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeinup {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in, .fade-in-up, .fade-in-left, .fade-in-right, .fade-in-down {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-down {
  transform: translateY(-50px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in {
  transform: none;
}

.delay-1.visible {
  transition-delay: 0.2s;
}

.delay-2.visible {
  transition-delay: 0.4s;
}

.delay-3.visible {
  transition-delay: 0.6s;
}

.delay-4.visible {
  transition-delay: 0.8s;
}

.delay-5.visible {
  transition-delay: 1s;
}

.fade-in.visible, .fade-in-up.visible, .fade-in-down.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.speed-slower {
  transition-duration: 1.5s;
}

.speed-slow {
  transition-duration: 0.9s;
}

.speed-normal {
  transition-duration: 0.3s;
}

.speed-fast {
  transition-duration: 0.1s;
}

.speed-faster {
  transition-duration: 0.25s;
}

.refined-reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(6px) scale(0.995);
  animation: refinedReveal 1.6s cubic-bezier(0.19,1,0.22,1) forwards;
  animation-delay: 0s;
}

@keyframes refinedReveal {
  to {
    opacity: 0.92;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.delay-1 {
  animation-delay: .2s;
  transition-delay: .2s;
}

.delay-2 {
  animation-delay: .4s;
  transition-delay: .4s;
}

.delay-3 {
  animation-delay: .6s;
  transition-delay: .6s;
}

.delay-4 {
  animation-delay: .8s;
  transition-delay: .8s;
}

.delay-5 {
  animation-delay: 1s;
  transition-delay: 1s;
}

.delay-6 {
  animation-delay: 1.2s;
  transition-delay: 1.2s;
}

/* Framework */

button {
  margin-top: 18px;
  background: black;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: solid 2px black;
}

button.white{
  background: white;
  color: black;
  border: solid 2px white;
}

button.white{
  background: transparent;
  color: white;
}

.exclusion {
  mix-blend-mode: difference;
}

.fnt-extralight {
  font-weight: 200;
}

.fnt-light {
  font-weight: 300;
}

.fnt-bold {
  font-weight: 700;
}

.fnt-extrabold {
  font-weight: 800;
}

.fnt-xs {
  font-size: .8em;
}

.fnt-sm {
  font-size: 1em;
}

.fnt-md {
  font-size: 1.2em;
}

.fnt-lg {
  font-size: 1.4em;
}

.fnt-xl {
  font-size: 1.8em;
}

.fnt-xxl {
  font-size: 2em;
}

.fnt-gray{
  color: gray;
}

.title-md {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 110%;
}

.bg-black {
  background: black;
}

.headline h1 {
  font-size: clamp(2rem, 3.5vw, 5rem);
  text-transform: uppercase;
}

.headline h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.scrolling-wrapper > div {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.scrolling-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.rounded-sm{
  border-radius: 30px;
}

.rounded-md{
  border-radius: 45px;
}

.rounded-lg{
  border-radius: 60px;
}

.link-black{
  color: black;
  text-decoration: none;
  transition: .3s ease;
}

.link-black:hover{
  color: #444444;
}


/* Styles */

header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background: transparent;
  border-radius: 0 0 30px 30px;
  transition: .3s ease;
}

header.active {
  background: transparent;
}

.brand {
  width: 65px;
  height: 45px;
  overflow: hidden;
  position: relative;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
  transition: .3s ease;
  z-index: 1;
}

@media (min-width: 576px) {
  .brand {
    width: 250px;
  }
}

.brand svg{
  position: absolute;
  width: 250px;
  height: 100%;
}

.brand.active {
  width: 65px;
  height: 45px;
}

.brand img {
  width: 250px;
  height: 44px;
}

.brand a{
  width: 100%;
  height: 100%;
  display: inline-block;  
}

.hero-content h1 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 120%;
}

@media (min-width: 576px) {
  .hero-content h1 {
    font-size: clamp(2.5rem, 3.5vw, 4.5rem);
  }
}

.hero-content p {
  font-size: 1em;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .hero-content p {
    font-size: 1.3em;
    letter-spacing: 3px;
  }
}

.hero-metaballs, .hero-contact {
  position: relative;
  width: 100%;
  height: 100vh;
}

@media (min-width: 768px) {
.hero-metaballs, .hero-contact{
  height: 100vh;
}
}

.hero-metaballs > *, .hero-contact > * {
  margin: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  pointer-events: none;
  padding: 50px;
}

#metaballs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 1;
  background: white;
}

.logo-blend {
  fill: black;
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 250px;
  transition: .3s ease;
}

.logo-blend.active {
  fill: white;
}

.poniter-efect {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  margin-left: -25px;
  margin-top: -25px;
  pointer-events: none;
  border: 2px solid black;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: white;
  mix-blend-mode: difference;
  transition: transform 0.3s ease;
}

.cursor-arrow {
  font-size: 20px;
  color: black;
  transform: rotate(0deg);
}

.logotype-footer h2 {
  font-size: clamp(2.8em, 9vw, 11rem);
  background-clip: text;
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgb(255, 255, 255) 100%);
  letter-spacing: 0.01em;
}

.footer {
  position: relative;
}

.footer-texture {
  position: absolute;
  border-radius: inherit;
  inset: 0px;
  background-image: url('../img/texture.webp');
  background-repeat: repeat;
  background-position: left top;
  border: 0px;
  background-size: 150px;
  opacity: .1;
}

.btn-basic-light a {
  width: fit-content;
  padding: 15px 30px;
  background: white;
  border: solid 2px white;
  color: black;
  transition: .3s ease;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
  border-radius: 30px;
}

.btn-basic-light a:hover{
  color: white;
  background: black;
}

.btn-octano {
  display: block;
  position: relative;
  z-index: 1;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 14px;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn-octano {
    padding: 15px 30px;
    font-size: 16px;
  }
}

.btn-octano:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid white;
  border-radius: 30px;
}

.btn-octano:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}

.btn-octano:hover {
  color: white;
  border-radius: 30px;
}

.btn-octano:hover:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 30px;
}

.btn-octano-inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: white;
}

.btn-octano-blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#octano');
}

.btn-octano-blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: black;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

.btn-octano-blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.btn-octano-blob:nth-child(2) {
  left: 25%;
  transition-delay: 0.08s;
}

.btn-octano-blob:nth-child(3) {
  left: 50%;
  transition-delay: 0.16s;
}

.btn-octano-blob:nth-child(4) {
  left: 75%;
  transition-delay: 0.24s;
}

.btn-octano:hover .btn-octano-blob {
  transform: translateZ(0) scale(1.7);
}

.btn-nav, .btn-nav a {
  width: 45px;
  height: 45px;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 2;
  transition: .3s ease;
}

@media (min-width: 768px) {
  .btn-nav, .btn-nav a {
    width: 50px;
    height: 50px;
  }
}

.btn-nav.active, .btn-nav.active a {
  background: white;
  color: black;
}

#navigation {
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 4;
  transition: .3s ease;
  transform: translateX(0%) translateY(0px) scale(1);
}

#navigation.disable {
  will-change: transform;
  opacity: 0;
  transform: translateX(0%) translateY(150px) scale(0.75);
}

.tab-wrapper {
  background: black;
  padding: 10px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: rgba(255,255,255,.25) 0 1.5px 3px;
}

.tab-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  isolation: isolate;
}

.tab-switch .tab {
  position: relative;
  padding: 12px 22px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), width 0.4s cubic-bezier(.4,0,.2,1), opacity 0.2s ease;
  will-change: transform, width;
}

.tab.active:after {
  content: "";
}

.menu-footer {
  z-index: 3;
  position: relative;
}

.menu-footer a {
  color: rgba(255 255 255 / 50%);
  text-decoration: none;
  transition: .3s ease;
}

.menu-footer a:hover {
  color: white;
}

.social-media {
  z-index: 3;
  position: relative;
}

.social-media a {
  color: rgba(255 255 255 / 50%);
  text-decoration: none;
  transition: .3s ease;
  font-size: 1.2em;
}

.social-media a:hover {
  color: white;
}

#tiker {
  position: relative;
  color: black;
  text-decoration: none;
}

.tiker {
  position: absolute;
  width: 100%;
}

.tiker h2 {
  font-size: calc(1.6rem + .1vw);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 100%;
  font-weight: 700;
}

@media (min-width: 576px) {
  .tiker h2 {
    font-size: calc(2.2rem + .1vw);
  }
}

@media (min-width: 992px) {
  .tiker h2 {
    font-size: calc(3rem + .1vw);
  }
}

.feather-shadow {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

.marquee-slide {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.tiker-text {
  flex-shrink: 0;
  padding: 0 10px;
  font-size: 100px;
  white-space: nowrap;
  font-weight: 800;
  color: rgba(0 0 0 / 10%);
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .tiker-text {
    font-size: 150px;
    color: rgba(0 0 0 / 5%);
  }
}

.line {
  width: 100%;
  height: 3px;
  background: black;
}

.wave-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  margin-top: -50px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 1;
  transform-origin: center;
  will-change: transform;
}

.step-number {
  font-size: 13px;
  font-weight: 600;
}

.step-arrow {
  font-size: 16px;
  margin: 0 14px;
}

@media (max-width: 768px) {
  .ticker-item {
    font-size: 16px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .step-arrow {
    margin: 0 10px;
  }
}

.id-section span {
  display: block;
  width: fit-content;
  border: solid 1px black;
  padding: 4px 12px 2px 12px;
  border-radius: 18px;
  font-size: .8em;
  background: black;
  color: white;
}

.id-section-light span {
  display: block;
  width: fit-content;
  border: solid 1px white;
  padding: 4px 12px 2px 12px;
  border-radius: 18px;
  font-size: .8em;
  background: white;
  color: black;
}

.hero-particles {
  position: relative;
  width: 100%;
  height: auto;
  background: black;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-service {
  position: relative;
  padding: 40px 30px;
  border: 2px solid rgba(255 255 255 / 10%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255 255 255 / 1%), transparent);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  color: white;
  height: 100%;
}

.card-service:hover {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255 255 255 / 20%);
}

.card-service h3 {
  text-transform: uppercase;
}

.card-post {
  position: relative;
}

.card-post img {
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 30px;
}

.card-brands {
  position: relative;
  padding: 50px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-brands img {
  opacity: .7;
}

.clients-ticker {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 150px;
  width: max-content;
  will-change: transform;
}

.logo-track img {
  opacity: .75;
}

.icon{
  position: relative;
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
}

.icon.size-2{
  width: 2em;
  height: 2em;
}

.icon svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.brand{
  position: relative;
  fill: currentColor;
  display: inline-block; 
  vertical-align: middle;
}

.brand svg{
  position: absolute;
  width: 250px;
  height: 100%;
}

#blobs{
  display: none;
}

.legals{
  position: relative;
  z-index: 3;
}

.legals a{
  color: gray;
  text-decoration: none;
}

.legals a:hover{
  color: white;
  text-decoration: underline;
}

#cookie{
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  background: white;
  max-width: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 1px 16px rgba(0 0 0 / 10%);
}

.btn-cookie{
  width: 100% !important;
  font-size: .8em;
}

.btn-cookie:first-child{
  margin-bottom: 0px;
}

.btns-cookies{
display: flex;
flex-direction: column;
}

@media only screen and (max-height: 700px) and (orientation: landscape){
  #cookie{
    min-width: 70%;
  }

  .btns-cookies{
    display: flex;
    flex-direction: row;
    width: 100%;
    }

  .btn-basic button {
    margin: 3px !important;
  }
}

#cookie a{
  color: black;
}

#cookie a:hover{
  color: gray;
}

.box-content img{
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.box-content a{
  text-decoration: none;
}

box-content a:hover{
  text-decoration: underline;
}

.card-demo video {
  width: 100%;
  display: block;
  transition: transform .4s ease;
  border-radius: 30px;
}

.area-video{
  background: #fff9f1;
  padding: 30px;
  border-radius: 30px;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content {
  font-size: 1rem;
}

.single-content p {
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  color: black;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .single-content p {
    font-size: 1.1em;
  }
}

.single-content > :is(h1, h2, h3) {
  font-size: 1.4em;
  font-weight: 500;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.6em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h1, h2, h3) {
    font-size: 1.8em;
  }
}

.single-content > :is(h4, h5, h6) {
  font-size: 1.3em;
  font-weight: 500;
  color: black;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.4em;
  }
}

@media (min-width: 1200px) {
  .single-content > :is(h4, h5, h6) {
    font-size: 1.5em;
  }
}

.single-content figure {
  margin-bottom: 30px;
  border-radius: 5px;
}

.single-content figure img {
  width: 100%;
  height: auto;
  margin: 0;
  animation-delay: .3s;
  border-radius: 5px;
  margin-bottom: 5px;
  border: solid 1px #f6f6f6;
}

.single-content ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding-left: 3.5em;
}

.single-content ul li {
  position: relative;
  display: block;
  counter-increment: item;
  position: relative;
  margin: 0.4em 0;
  padding: 4px 15px;
  line-height: 28px;
  transition: all .3s ease-out;
}

.single-content ul li:hover{
  background:#f9f9f9;
  border-radius: 5px;
}

.single-content ul li:hover:after {
  left: -.5em;
  border-left-color: black;
}

.single-content ul li:before {
  content: "•";
  position: absolute;
  left: -2.3em;
  top: 50%;
  margin-top: -1em;
  color: white;
  background: black;
  height: 2em;
  width: 2em;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content {
  /*counter-reset: item;*/
}

.single-content ol {
  list-style: none;
  margin: 0 0 30px 0;
  padding-left: 3.5em;
  
}

.single-content ol > li {
  counter-increment: item;
  position: relative;
  margin: 0.4em 0;
  padding: 4px 15px;
  line-height: 28px;
  transition: all .3s ease-out;
}

.single-content ol > li::before {
  content: counters(item, ".");
  position: absolute;
  left: -2.3em;
  top: 50%;
  transform: translateY(-50%);
  height: 2em;
  width: 2em;
  background: black;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-content li > ol {
  counter-reset: item;
  margin-top: 0.4em;
}

.single-content ol li > ol li::before {
  background: black;
}
.single-content ol li > ol li > ol li::before {
  background: black;
}

.single-content ol li:hover {
  background: #f9f9f9;
  border-radius: 5px;
}

.single-content .table-hover tbody tr {
  transition: .3s;
  border-bottom: solid 2px black;
}

.single-content .table-hover tbody tr:hover {
  color: #212529;
  background-color: var(--quinary);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  color: black;
  background: transparent;
}

.table-hover > tbody > tr:hover > * {
  color: black;
  background: transparent;
}

.single-content .table-striped tbody tr:nth-of-type(odd) {
  transition: .3s;
  border-bottom: solid 2px black;
}

.single-content .table-striped tbody tr:nth-of-type(2n + 1):hover {
  background-color: var(--quinary);
  transition: .3s;
}

.single-content table {
  color: black;
  margin-bottom: 30px;
}

.single-content table thead {
  border-bottom: solid 4px black;
  color: black;
}

.single-content .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .single-content .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

.single-content blockquote p {
  margin-bottom:0px;
  font-size: 1.3rem;
  line-height: normal;
}

.single-content blockquote {
  display: block;
  font-size: 30px;
  padding: 50px 0px 10px 0px;
  position: relative;
  line-height: 1.2;
  font-style: italic;
  top: 0;
  margin-top: -15px;
  margin-bottom: 20px;
  border-left: solid 5px black;
}

@media (min-width: 992px) {
  .single-content blockquote {
    display: block;
    position: relative;
    line-height: 1.2;
    top: 0px;
  }
}

.single-content blockquote::after {
  content: "";
}

.single-content blockquote::before {
  content: "\201C";
  font-size: 4em;
  color: black;
  position: absolute;
  left: 15px;
  top: -5px;
  font-family: 'arial';
  z-index: 1;
  line-height: 1em;
}

@media (min-width: 1200px) {
  .single-content blockquote::before {
    content: "\201C";
    font-size: 4em;
    position: absolute;
    left: 20px;
    top: -10px;
  }
}

.single-content .blockquote footer {
  background: transparent;
  font-size: 1em;
  margin: 15px 30px;
  color: black;
  font-style: normal;
  font-weight: 600;
  text-align: end;
}

@media (min-width: 992px) {
  .single-content .blockquote footer {
    background: transparent;
    font-size: initial;
    margin: 15px 0;
    color: black;
  }
}

.single-content .blockquote p {
  padding: 0 0 0 30px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .single-content .blockquote p {
    padding: 0 0 0 30px;
  }
}

.blockquote-footer {
  margin: 0;
  padding-right: 20px;
  color: black;
}

@media (min-width: 992px) {
  .blockquote-footer {
    padding-right: 50px;
  }
}

.single-content a {
  color: black;
  text-decoration: none;
  background-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(black,black);
  background-position: 0 99%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  transition: background-size .5s;
}

.single-content a:hover {
  color: black;
  background-size: 0% 2px;
}

.single-content iframe {
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 0;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .single-content iframe {
    width: 95%;
    background-color: #f9f9f9;
    margin: 0 50px 0 0;
    margin-bottom: 30px;
  }
}

.single-content figure {
  display: block;
}

.single-content video, .single-content iframe {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
}

.single-content h4:has( + p) {
  margin-bottom: 0;
  font-weight: 600;
  color: black;
  font-size: .9em;
 background: #f9f9f9;
  padding: 15px 15px 5px 25px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.single-content h4 + P {
  margin-bottom: 0;
  font-weight: 600;
  color: black;
  font-size: 1.1em;
 background: #f9f9f9;
  padding: 0px 15px 20px 25px;
  margin-bottom: 30px;
}

.single-content h4 + P {
  color: #f9f9f9 !important;
  padding: 0px 15px 20px 25px;
  border-radius: 0 0 10px 10px;
  line-height: 120%;
}

.single-content h4 + P {
  color: #f9f9f9 !important;
}

.single-content h4 + p a {
  color: black;
  text-decoration: none;
}


.single-content h4 + p a:hover {
  color: black;
  text-decoration: none;
}

.single-content .mark, .single-content mark {
  background: #f9f9f9;
}

/* single */

/* wordpress */
.single-content .figure .wp-block-image {
  padding-bottom: 0;
  font-weight: normal !important;
  margin: 0;
}

.wp-block-gallery .wp-block-image {
  position: relative;
  width: 100%;
  z-index: 0;
  transition: .3s ease;
  overflow: hidden;
  padding-top: 65%;
  margin-bottom:0px;
}

.wp-block-gallery .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 0px;
  border: 0;
}

.wp-block-gallery {
  border-radius: 5px !important;
  overflow: hidden;
  padding: 0 !important;
}

.wp-block-gallery figure {
  padding: 0;
}

.wp-block-gallery ol li:before {
  display: none;
}

.wp-block-gallery .figure-caption{
  position: absolute;
  z-index: 9999;
  bottom: 15px;
  left: 10px;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.wp-block-media-text__media {
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 10px 0 !important;
}

@media (min-width: 576px) {
  .wp-block-media-text__media {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__media {
    width: 20%;
  }
}

.wp-block-media-text__content {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

@media (min-width: 576px) {
  .wp-block-media-text__content {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .wp-block-media-text__content {
    width: 80%;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding-left: 15px;
}

.wp-block-media-text__content p {
  padding: 0 !important;
}

.wp-block-media-text {
  padding-left: 0;
}

.wp-block-media-text {
  display: flex;
  margin-bottom: 30px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 576px) {
  .wp-block-media-text {
    display: flex;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .wp-block-media-text {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.wp-block-media-text.is-stacked-on-mobile {
  grid-template-columns: 100%!important;
}

.wp-block-media-text h5 {
  font-size: 1.3em;
}

.wp-block-media-text h4 {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
  font-size: .8em;
  font-weight: 800;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wp-block-media-text p, .wp-block-media-text h5 {
  padding: 0;
  margin-bottom: 5px;
}

.wp-block-media-text p {
  font-size: 1em;
  line-height: normal;
}

.wp-block-media-text figure {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .wp-block-media-text figure {
    margin-bottom: 0;
  }
}

.wp-block-media-text figure img {
  object-fit: cover;
}

.wp-block-media-text a {
  background-size: 100% 2px;
}

.wp-block-image {
  position: relative;
}

.wp-block-image img {
  position: relative;
  z-index: 1;
}

.wp-block-image .figure-caption {
  z-index: 2;
  color: white;
  text-shadow: 0 1px 6px rgba(0 0 0 / 10%);
  margin: 0 15px;
  font-size: 13px;
  bottom: 15px;
  left: 0;
  position: absolute;
}

/* - */

.wp-block-embed-youtube, .video-youtube {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  padding-bottom: 56.25%;
  width: 100%;
  background: black;
}

.wp-block-embed-youtube .wp-block-embed__wrapper, .video-youtube .video-wrapper {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .video-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tags ul {
  display: flex;
  flex-flow: wrap;
}

.tags a {
  padding: 4px 15px;
  border-radius: 30px;
  border: solid 2px #f9f9f9;
  color: gray;
  background: #f9f9f9;
  text-decoration: none;
  font-size: .8em;
  transition: .3s ease;
  box-decoration-break: clone;
  white-space: nowrap;
  text-transform: capitalize;
}

.tags a:hover {
  color: black;
  border: solid 2px #f3f3f3;
  background: #f3f3f3;
}

#author img {
  object-fit: cover;
  border: solid 3px white;
  box-shadow: 0 2px 6px rgba(0 0 0 / 10%);
  border-radius: 50%;
}

#author h3{
  font-size: 1.3em;
  
}

#author a{
text-decoration: none;
transition: .3s;
font-weight: 600;
}

.author-picture {
  border: solid 3px white;
  border-radius: 50%;
}

.txt-limit-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 4;
  overflow: hidden;
}

.figure-caption {
  font-size: 12px;
  color: darkgray;
}

.single-content h4:has( + ul) {
  color: black;
  font-weight: 400;
  margin-bottom: 0;
  background: #f3f0fc; 
  border-radius: 10px 10px 0 0;
  padding: 15px 10px 10px 10px;
  font-size: 30px;
}

.single-content h4 + ul {
  background: #f3f0fc;
  padding: 0px 10px 20px 10px;
  border-radius: 0 0 10px 10px;
  line-height: 100%;
}

.single-content h4 + ul li {
  padding-right: 30px;
  padding-bottom: 15px;
  line-height: 120%;
  filter: brightness(0) saturate(100%) invert(16%) sepia(8%) saturate(20%) hue-rotate(317deg) brightness(100%) contrast(86%);
}

.single-content h4 + ul li:last-child {
  padding-bottom: 0;
}

.single-content h4 + ul li ul {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-content h4 + ul li ul li:last-child {
  padding-bottom: 0;
}

.single-content h4 + ul li:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(82%) saturate(2594%) hue-rotate(242deg) brightness(92%) contrast(98%);
  background:transparent;
}

.single-content h4 + ul li:has( > a + ul):hover {
  filter: none;
}

.single-content h4 + ul li a {
  color: black;
  background-size: 0% 2px;
}

.single-content h4 + ul li a:hover {
  color: black;
  background-size: 0% 2px;
}

.single-content h4 + ul li::before {
  display: none;
}

.single-content h4 + ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
}

.single-content h4 + ul li a::before {
  content: " ";
  position: absolute;
  right: -30px;
  top: -5px;
  width: 30px;
  height: 30px;
  background: url('../../assets/img/arrow-right.svg') no-repeat center;
  opacity: .5;
}

.single-content h4 + ul li:hover a::before {
  opacity: 1;
}

.picture-post img{
  border-radius: 30px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figure figcaption{
  font-size: 12px;
  color: gray;
  text-align: center;
}

.share-post .icon{
  width: 1.5rem;
  height: 1.5rem;
}

 .resume .icon{
  width: 1.8rem;
  height: 1.8rem;
}

 .resume .icon.adjustment{
  width: 1.6rem;
  height: 1.6rem;
}

.excerpt strong{
  font-weight: 500;
}

.excerpt{
  padding: 0 1.5rem;
}


.single-content p strong{
  font-weight: 600;
}

.single-content h3:has( + ul) {
  color: black;
  margin-bottom: 0;
  background: #f6f6f6;
  border-radius: 20px 20px 0 0;
  padding: 15px 10px 5px 22px;
}

.single-content h3 + ul {
  background: #f6f6f6;
  padding: 0px 10px 20px 10px;
  border-radius: 0 0 20px 20px;
  line-height: 100%;
}

.single-content h3 + ul li {
    margin:0;
    line-height: 120%;
    padding: 10px 50px 9px 15px;
    border-radius: 5px;
}

.single-content h3 + ul li ul {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-content h3 + ul li ul li:last-child {
  padding-bottom: 0;
}

.single-content h3 + ul li:hover {
  background: #f1f1f1;
}

.single-content h3 + ul li:has( > a + ul):hover {
  filter: none;
}

.single-content h3 + ul li a {
  color: black;
  background-size: 0% 2px;
}

.single-content h3 + ul li a:hover {
  color: var(--primary);
  background-size: 0% 2px;
}

.single-content h3 + ul li::before {
  display: none;
}

.single-content h3 + ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
}

.single-content h3 + ul li a::before {
  content: "⇑";
  position: absolute;
  right: -50px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
  opacity: .2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-content h3 + ul li:hover a::before {
  opacity: 1;
}


#share{
  position: fixed;
  width: 100%;
  bottom: 25px;
  z-index: 4;
  transition: .3s ease;
  transform: translateX(0%) translateY(0px) scale(1);
}

#share.disable {
  will-change: transform;
  opacity: 0;
  transform: translateX(0%) translateY(150px) scale(0.75);
}

.share-post{
  background: black;
  color:white;
  padding: 10px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: rgba(255, 255, 255, .25) 0 1.5px 3px;

}

.share{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  isolation: isolate;
}

.share a{
  position: relative;
  padding: 6px;
  color: white;
  text-decoration: none;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 8px 24px rgba(0, 0, 0, 0);
  transition: .3s ease;
}


.share a:hover{
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
}


@media (min-width: 576px) {
  .share a{
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .share-post{
    padding: 10px 15px 10px 20px;
  }
}

.category a{
  display: flex;
    justify-content: center;
    width: fit-content;
    text-decoration: none;
    border: solid 2px black;
    padding: 4px 12px 2px 12px;
    border-radius: 18px;
    font-size: .8em;
    background: black;
    color: white;
    text-transform: uppercase;
    transition: .3s ease;
    font-weight: 500;
}

.category a:hover{
  background: white;
  color: black;
}

.author, .author a{
 font-size: .9rem;
 color: black;
}

.author a{
  color: black;
  text-decoration: none;
  transition: .3s ease;
}

.author a:hover{
  color: gray;
}

#author{
  background: #f9f9f9;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
}

.photo-author{
  order: -1;
}

@media (min-width: 768px) {
.photo-author{
  order: 2;
}
}

#reading-progress {
  position: fixed;
  bottom:  0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,.08);
  z-index: 9999;
}

#reading-progress .progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: currentColor;
  transition: width .15s linear;
}

.scroll-target {
  scroll-margin-top: 80px;
}

.section-efect {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .6s ease;
}

.section-efect.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-button a{
    margin-top: 18px;
    background: black;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 2px black;
}

.wp-block-button a:hover{
   color: white;
}



#wpadminbar{
  background-color: black;
}

