  /* ********** Reset ********** */
  html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
    margin: 0 auto;
    background-image: url("assets/background7.webp");
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }

.cabin {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 16px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

@property --gradX {
  syntax: '<percentage>';
  initial-value: 50%;
  inherits: true;
}

@property --gradY {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: true;
}

:root {
  --d: 2500ms;
  --angle: 90deg;
  --gradX: 100%;
  --gradY: 50%;
  --c1: yellow;
  --c1-light: rgb(5, 5, 5);
  --c2: rgba(168, 239, 255, 0);
  --c2-light: rgb(255, 255, 255);
  --primary-color: rgb(255, 221, 1);
  --primary-color-light: rgb(26, 22, 1);
  --btn-color: rgb(117, 70, 161);
  --btn-color-light: rgb(117, 70, 161);
  --white-color: rgb(255, 255, 255);
  --black-color: rgb(0, 0, 0);
}

@keyframes borderRotate {
  100% {
    --angle: 420deg;
  }
}
  
  *,
  *::after,
  *::before {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    overflow-x: hidden;
  }
  
  a {
    transition: all 0.5s ease-out;
  }
  
  /* a:hover {
    opacity: 0.75;
  } */

  a:visited {
    text-decoration: none;
  }
  
  h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  h3 {
    margin: 0;
    font-size: 1.25rem;
  }
  
  h4 {
    margin: 0;
    font-size: 1rem;
  }
  
  h5 {
    margin: 0;
    font-size: 0.85rem;
  }
  
  h6 {
    margin: 0;
    font-size: 0.7rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  p {
    line-height: 1.6;
  }

/* ********** Header ********** */
.header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
  height: 120px;
}

@media screen and (min-width: 1024px) {
  .header > .container {
    padding: 0 1rem;
  }
}

/* ********** Menu ********** */
.menu-btn {
  border: 1px solid transparent;
  cursor: pointer;
  background-color: transparent;

}

.menu-btn svg {
  fill: var(--primary-color);
  width: 36px;
  height: 36px;
}

header {
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px) brightness(0.9);
  -webkit-backdrop-filter: blur(15px) brightness(0.9); /* Para Safari */
  z-index: -1; /* Para que no tape el contenido */
}

nav{
  backdrop-filter: blur(15px) brightness(0.9);
}

.menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);

}

.menu.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 99;
}

.menu a {
  font-family: var(--font);
  padding: 0.5rem;
  display: inline-block;
  text-decoration: none;
  color: var(--primary-color);
  border-top: 1px rgba(0, 153, 249, 0.15) solid;
}

.menu a:hover {
  color: white;
}

@media screen and (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .menu {
    display: contents;
    position: static;
    flex: 1;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    font-size: 1.3rem;
  }

  .menu a {
    position: relative;
    padding: 0 1rem;
    border-top: 0;
    transition: .5s;
    text-align: right;
  }

  .menu a:hover {
    color: white;
    background-color: transparent;
  }

  .menu a:hover::before {
    width: 101%;

  }

  .menu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    height: 3px;
    width: 0;
    background-color: white;
    transition: 0.5s;
  }
}

  /* About me */

  .about-me {
    margin: 50px 100px;
    padding: 20px;
    
  }

  .about-me .container {
    gap: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-me-left-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    height: 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
  }

  .about-me-left-card-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-me-left-card-avatar img {
    position: relative;
    z-index: 3;
    display: flex;
    margin-top: -200px;
    width: 220px;
    height: 220px;
	  transform: translatey(0px);
	  animation: float 6s ease-in-out infinite;
  }

  @media screen and (min-width: 1024px) {
    .about-me-left-card-avatar img {
      z-index: 1;
    }
  }

  .about-me-left-card-contact {
    margin-top: 50px;
  }

  .about-me-left-card-contact h5{
    padding: 8px;
    border-bottom: 1px solid var(--primary-color);
    margin: 0 32px 16px ;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .about-me-left-card .button {

    margin-top: 20px;
    margin-bottom: 20px;
    padding: 8px;
    color: var(--btn-color);
    background-color: var(--primary-color);
    border-radius: 8px;
    display: inline;
  }
  
  .cv-btn {
      margin: 20px 0;
  }

  .about-me-right-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    height: auto;
    min-width: 300px;
  }

  .about-me-right-card-description {
    margin: 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-me-right-card-description .description{
    margin-top: 20px;
  }

  .about-me-right-card-skills {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .about-me-right-card-skills svg{
    width: 50px;
    height: 50px;
    margin: 20px;
  }

  /* Portfolio */



  .portfolio {
    margin: 50px;
    padding: 20px;
    border-radius: 16px;
  }

  .portfolio .container h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .portfolio-contents-up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .portfolio-contents-down {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .portfolio-content {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    background-color: #e2e8f038;
  }

  .portfolio-content >*:not(img) {
    margin: 20px 20px;
    height: auto;
  }

  .portfolio-content img{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 2px solid #e2e8f038;
  }

  .portfolio a.button {
    margin-top: auto;
    margin-bottom: 20px;
    padding: 8px;
    color: var(--btn-color);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;  
    align-items: center;

  }

  .disabled {
    pointer-events: none;
    opacity: 0.6;
  }

  .disabled a.button{
    margin-top: auto;
    margin-bottom: 20px;
    padding: 8px;
    color: rgb(39, 39, 39) !important;
    background-color: rgb(255, 255, 255) !important;
    opacity: 1;
    
  }



  /* Modal */
  .modal {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    

  }
  
  .modal-content {
    position: relative;
    background-image: url("assets/background7.webp");
    border-radius: 16px;
    box-shadow: 0 8px 15px rgba(244, 243, 243, 0.856);
  }
  
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .modal-close svg {
    width: 3rem;
    height: 3rem;
  }
  

  .portfolio-modal {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
  }

  .portfolio-modal > img{
    width: 100%;
  }

  .portfolio-info {
    display: flex;
    flex-direction: column;
  }

  .portfolio-info h3{
    text-align: center;
  }

  .portfolio-info h3{
    margin-top: 40px;
  }

  .portfolio-info a.button {
    margin: 0 auto 30px;
    padding: 8px;
    color: var(--btn-color);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;  
    align-items: center;
  }

  .show {
    opacity: 1;
    pointer-events: auto;
  }

  .hidden {
    opacity: 0;
    pointer-events: none;
  }



  .modal-desktop{
    display: block;
  }
  .modal-tablet,
  .modal-mobile {
    display: none;
  }

  .group {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn {
    height: 48px; 
    padding: 0 24px; 
    overflow: hidden;
    border-radius: 0.375rem; 
    border: 1px solid #e2e8f0; 
    background-color: var(--primary-color);
    font-weight: 500; 
    transition: all 0.1s; 
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    transform: translate(-3px, -3px); 
    box-shadow: 5px 5px 12px var(--primary-color);
}

.btn:active {
    transform: translate(0, 0); 
    box-shadow: none; 
}


  /* Servicios */
  .services{
    margin: 50px 50px 0px;
    padding: 20px 20px 150px;
    border-radius: 16px;
  }

  .services h2 {
    text-align: center;
    margin-bottom: 60px;
  }

  .services-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
    gap: 20px;
  }


  .service svg {
    color: var(--primary-color);
    width: 50px;
    height: 50px;
  }

  .service :nth-child(3){
    align-self: flex-end;  
  }

  .service.back :nth-child(2){
    align-self: flex-end;
  }

  
  .service svg:last-child {
    width: 40px;
    height: 40px;
    align-self: flex-end;
  }


  .card {
    display: grid;
    width: 100%;
    position: relative;
    cursor: pointer;
  }

  .service {
    width: 100%;
  }

  

  .card .front {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    transition: 1s;
    border: 3px solid yellow;
    transform: perspective(500px) rotateY(0deg);
    border-radius: 16px;
    padding: 10px;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
	  animation: borderRotate var(--d) linear infinite forwards;
  }


  .front p{
    text-align: center;
  }

  .card .back {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    transition: 1s;
    border: 3px solid rgba(255, 255, 255, 0.6);
    transform: perspective(500px) rotateY(180deg);
    border-radius: 16px;
    padding: 20px;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
	  animation: borderRotate var(--d) linear infinite forwards;
  }

  .card:hover .front{
    position: absolute;
    transform: perspective(500px) rotateY(180deg);
  }

  .card:hover .back{
    transform: perspective(500px) rotateY(360deg);
    position: relative;
  }


  /* Formulario contacto */

  .contact {
    margin: 0px 50px;
    padding: 20px;
    border-radius: 16px;
  }
  .contact .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  
    gap: 20px;
  }

  .contact-form {
    gap: 35px;
    margin-bottom: 40px;
  }

  .contact-form h2 {
    text-align: center;
    margin: 20px 0 0;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
  }

  .contact-form form > *:not(input[type="submit"]) {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    
  }

  .contact-form-second input,
  .contact-form-second textarea {
    background-color: #2a2a2a;
    box-shadow: 0 8px 15px rgba(244, 243, 243, 0.856);
    color: white;

  }



  .contact-form form input[type="submit"] {
    color: var(--btn-color);
    background-color: var(--primary-color);
    width: 80%;
    margin: 40px auto;
  }

  .contact-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .location {
    display: flex;
    gap: 20px;
    margin-top: 80px;

  }

  .location svg {
    width: 25px;
    height: 25px;
    align-self: center;
  }

  .location h3 {
    text-align: center;
    margin: 20px 0;
  }

  .contact-image img{
    border-radius: 16px;
    width: 250px;
    height: 250px;
  }

  .social-media {
    position: relative;
  }


  .contact-form-response {
    padding: 1rem;
    width: 400px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
  }

  .visible {
    opacity: 1;
  }

  .contact-form-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  
  .none {
    display: none;
  }
  
  .display {
    display: block;
  }

  .sibling{
    display: inline;
  }

  @keyframes float {
    0% {
      transform: translatey(0px);
    }
    50% {
      transform: translatey(-20px);
    }
    100% {
      transform: translatey(0px);
    }
  }

  

  .social-media ul {
    position: relative;
    display: flex;
    gap: 15px;
    margin: 0;
    max-width: 300px;
    transform: rotate(-25deg) skew(25deg);
    transform-style: preserve-3d;
    padding-inline-start: 0px;
 }
 .social-media ul li {
   position: relative;
   list-style: none;
   width: 60px;
   height: 60px;
   margin: 0px 20px;
 }
 .social-media ul li:before{
   content: '';
   position: absolute;
   bottom: -10px;
   left: -5px;
   width: 100%;
   height: 10px;
   background: #2a2a2a;
   trnasform-origin: top;
   transform: skewX(-41deg);
 }
 .social-media ul li:after{
   content: '';
   position: absolute;
   top:5px;
   left: -9px;
   width: 9px;
   height: 100%;
   background: #2a2a2a;
   trnasform-origin: right;
   transform: skewY(-49deg);
 }
 .social-media ul li span{
   position: absolute;
   top: 0;
   lef: 0;
   width: 100%;
   height: 100%;
   display: flex !important;
   background: #2a2a2a;
   justify-content: center;
   align-items: center;
   color: #fff;
   font-size: 30px !important;
   transition: 1.5s ease-out;
 }
 .social-media ul li:hover span {
   z-index: 1000;
   transition: .3s;
   color: #fff;
   box-shadw: -1px 1px 1px rgba(0, 0, 0, .5);
 }
 .social-media ul li:hover span:nth-child(5){
   transform: translate(40px, -40px);
   opacity: 1;
 }
 .social-media ul li:hover span:nth-child(4){
   transform: translate(30px, -30px);
   opacity: .8;
 }
 .social-media ul li:hover span:nth-child(3){
   transform: translate(20px, -20px);
   opacity: .6;
 }
 .social-media ul li:hover span:nth-child(2){
   transform: translate(10px, -10px);
   opacity: .4;
 }.social-media ul li:hover span:nth-child(1){
   transform: translate(0px, 0px);
   opacity: .2;
 }
 .social-media ul li:nth-child(1):hover span{
   background: #52E19F !important;
 }
 .social-media ul li:nth-child(2):hover span{
   background: #2375d3 !important;
 }
 .social-media ul li:nth-child(3):hover span{
   background: #b12fba !important;
 }


  /* Tablet  */

  @media screen and (max-width: 768px) {

    .nav {
      width: 100%;
    }

    .about-me .container {
      flex-direction: column;
      gap: 20px;
      margin-top: 120px;
    }

    .about-me-right-card {
      height: auto;
    }

    .portfolio-contents-up {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
  
    .portfolio-contents-down {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  
    .portfolio-contents-down .portfolio-content:last-child{
      grid-column-start: span 2;
    }
  
    .portfolio-content p {
      height: 90px;
    }

    .modal-desktop,
    .modal-mobile {
      display: none;
    }

    .modal-tablet {
      display: block;
    }

    
  }

  @media screen and (max-width: 450px){

    .logo {
      margin-top: 35px;
    }



    .nav {
      width: 95%;
    }

    .nav.header-100 {
      height: auto;
    }

    .nav.header-100 input {
      left: 290px;
      top: 15px;
    }

    .nav input:checked ~ span {
      background-color: var(--primary-color);
      left: 300px;
      top: 33px;
    }

    .menu img {
      right: 0;
    }



    .nav input:checked ~ .menu {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;  
      width: 100%;
    }

    .portfolio-contents-up {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .portfolio-contents-down {
      display: grid;
      grid-template-columns: 1fr;
    }

    .portfolio-contents-down .portfolio-content:last-child{
      grid-column-start: span 1;
    }

    .modal-desktop,
    .modal-tablet {
      display: none;
    }

    .modal-mobile {
      display: block;
    }



    .services-icons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 100%));  
      gap: 20px;
    }

    .social-media ul {
      display: flex;
      flex-direction: column;
      gap: 50px;
      margin-top: 20px;
      max-width: 300px;
      padding-inline-start: 0px;
      transform: none;
   }

    
  
  }

  /* Tarifas */

  .tarif-card-selection{
    margin: 25px 0;
  }
  .breadcrumb {
    display: flex;
    text-align: center;
    top: 50%;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    z-index: 1;
    justify-content: center;
    padding: unset;
    }
    
    
    .breadcrumb__item {
    height: 100%;
    background: var(--primary-color);
    color: var(--btn-color);
    border-radius: 7px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: skew(-21deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.26);
    margin: 5px;
    padding: 0 40px;
    font-weight: bold;
    cursor: pointer;
    }
    
    
    .breadcrumb__item:hover, 
    .breadcrumb__item.checked{
      background: var(--btn-color);
      color: var(--primary-color);
    }

    .breadcrumb__inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg);  
    }
    
    .breadcrumb__title {
    font-size: 16px;
    text-overflow: ellipsis;  
    overflow: hidden;
    white-space: nowrap;  
    }
    
    
    @media all and (max-width: 1000px) {
    .breadcrumb {
    height: 35px;
    }
    
    .breadcrumb__title{
    font-size: 11px;
    }
    .breadcrumb__item {
    padding: 0 30px;
    }
    }
    
    @media all and (max-width: 710px) {
    .breadcrumb {
    height: 30px;
    }
    .breadcrumb__item {
    padding: 0 20px;
    }
    
    }

  
  #tarif-cards .container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .col-sm-4{
    min-width: 250px;
    min-height: 655px;
  }
  .card-tariff{
    position: relative;
    max-width: 300px;
    height: auto;
    background: linear-gradient(-45deg,#fe0847,#feae3f);
    border-radius: 15px;
    margin: 0 auto;
    padding: 40px 20px;
    -webkit-box-shadow: 0 10px 15px rgba(0,0,0,.1) ;
            box-shadow: 0 10px 15px rgba(0,0,0,.1) ;
  -webkit-transition: .5s;
  transition: .5s;
  }
  .card-tariff:hover{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .col-sm-4:nth-child(1) .card-tariff ,
  .col-sm-4:nth-child(1) .card-tariff .title .fa{
    background: radial-gradient(circle, rgba(255,206,2,1) 0%, rgba(0,0,0,1) 100%);
  }
  .col-sm-4:nth-child(2) .card-tariff,
  .col-sm-4:nth-child(2) .card-tariff .title .fa{
    background: radial-gradient(circle, rgba(255,248,2,1) 0%, rgba(0,0,0,1) 100%);
  }
  .col-sm-4:nth-child(3) .card-tariff,
  .col-sm-4:nth-child(3) .card-tariff .title .fa{
    background: radial-gradient(circle, rgba(224,255,2,1) 0%, rgba(0,0,0,1) 100%);
  }
  .col-sm-4:nth-child(4) .card-tariff,
  .col-sm-4:nth-child(4) .card-tariff .title .fa{
    background: radial-gradient(circle, rgba(2,156,255,1) 0%, rgba(0,0,0,1) 100%);
  }
  .col-sm-4:nth-child(5) .card-tariff,
  .col-sm-4:nth-child(5) .card-tariff .title .fa{
    background: radial-gradient(circle, rgba(27,2,255,1) 0%, rgba(0,0,0,1) 100%);
  }
  .col-sm-4:nth-child(6) .card-tariff,
  .col-sm-4:nth-child(6) .card-tariff .title .fa{
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(255, 184, 251, 1) 100%);
  }

  .col-sm-4:nth-child(6) .card-tariff .title h2, 
  .col-sm-4:nth-child(6) .card-tariff .price h4,
  .col-sm-4:nth-child(6) .card-tariff .option{
    color: black;
  }
  

  .title{
    min-height: 70px;
  }

  .title .fa{
    color:#fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius:  50%;
    text-align: center;
    line-height: 100px;
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.1) ;
            box-shadow: 0 10px 10px rgba(0,0,0,.1) ;

  }
  .title h2 {
    position: relative;
    margin: 20px  0 0;
    padding: 0;
    color: #fff;
    font-size: 28px;
    z-index: 2;
  }
  .price,.option{
    position: relative;
    z-index: 2;
  }
  .price h4 {
  margin: 0;
  padding: 20px 0 ;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  }

  sup{
    font-size: 1.5rem;
  }

  .price h4 span{
    font-size: 1.5rem;
    font-weight: normal;
  }

  .option ul {
    margin: 0;
    padding: 0;

  }
  .option{
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  font-size: 16px;
  }

  .option ul li{
    list-style: none;
  }
  .card-tariff a {
    width: 150px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    margin: 20px auto 0 ;
  }
  .card-tariff a:hover{
      text-decoration: none;
  }


  @media screen and (max-width: 450px){
    #tarif-cards .container{
      flex-direction: column;
    }
  }

  .anual-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  
  .switch-button {
    background: rgba(0, 0, 0, 1);
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-right: 120px;
    position: relative;
  }
  .switch-button:before {
    content: "Precio anual";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
  }
  .switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
  }
  .switch-button-checkbox:checked + .switch-button-label:before {
    transform: translateX(120px);
    transition: transform 300ms linear;
  }
  .switch-button-checkbox + .switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    user-select: none;
    pointer-events: none;
  }
  .switch-button-checkbox + .switch-button-label:before {
    content: "";
    background: rgba(255, 255, 255, .8);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    transform: translateX(0);
    transition: transform 300ms;
  }
  .switch-button-checkbox + .switch-button-label .switch-button-label-span {
    position: relative;
    margin: 10px;
  }

  .tariff-text{
    text-align: center;
    margin: 40px 100px;
  }


    /* ********** Hero blog ********** */

    #hero-banner {
      position: relative;
      width: 100%;
    }

    #hero-banner .container{
      max-width: 100%;
    }

    .hero-banner-text{
      padding: 2rem;
    }
  
    #hero-banner .container .hero .hero-banner-text h1,
    #hero-banner .container .hero .hero-banner-text p{
      position: relative;
      width: 100%;
      z-index: 1;
      text-align: left;
    }
  
    .hero-banner-img  {
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
    }
  
    .hero-banner-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .hero-banner-overlay {
      position: absolute;
      height: -webkit-fill-available; 
      height: -webkit-fill-available; 
      height: -moz-available;         
      top: 0;
      width: 100%;
      background: linear-gradient(223deg, rgba(255, 270, 255, .43) 0%, rgba(126, 126, 126, 1) 100%);
    }

  /* ********** Faqs ********** */

  #faqs .container{
    position: relative;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .faqs-title,
  .faqs-title-60{
    display: flex;
    flex-direction: column;
    padding: 2rem;
  }

  .faqs-title h2{
    text-align: center;
  }

  .accordion-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem;
    align-items: center;

  }
  .accordion {
      border-radius: 10px;
      width: 100%;
      color: white;
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: 0 4px 10px -1px rgb(117, 70, 161);
  }

  input.accordion-toggle{
    position: absolute;
    opacity: 0;
    z-index: -1;
  }

  .accordion-label {
      display: flex;
      -webkit-box-pack: justify;
      justify-content: space-between;
      padding: 16px;
      color: rgba(0, 0, 0, .6);
      background: rgb(255, 221, 1);
      font-weight: bold;
      cursor: pointer;
      font-size: 20px;
  }
  .accordion-label:hover {
      background: rgb(255, 236, 111);
      color: black;
  }
  .accordion-label::after {
      content: "\276F";
      width: 16px;
      height: 16px;
      text-align: center;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content {
      max-height: 0;
      padding: 0 16px;
      color: rgb(255, 236, 111);;
      background: rgba(0, 0, 0, 0.521);
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
  }
  .accordion-content p{
      margin: 0;
      color: white;
      font-size: 18px;
  }
  input:checked + .accordion-label {
      background: rgb(255, 236, 111);;
      color: black;
  }
  input:checked + .accordion-label::after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
  }
  input:checked ~ .accordion-content {
      max-height: 100vh;
      padding: 16px;
  }

  @media screen and (min-width: 768px) {
    .accordion {
      width: 75%;
    }

    .faqs-title-60{
      width: 60%;
    }

  }



