/* Styles for the entire document */
html {
    height: 100%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Stage Grotesk';
    font-size: 16px;
}

body {
    height: 100%;
    margin: auto;
    background: var(--Black-2);
}

:root {
    --Black-1: #090909;
    --Black-2: #0c0c0c;
    --Black-3: #1d1d1d;
    --Gray-1: #616161;
    --Gray-2: #F4F4F4;
    --White-1: #fefefe;
}

/*----------------------h1----------------------*/

h1 {
    font-size: 190px;
    font-weight: 400;
}

/*----------------------h2----------------------*/

h2 {
    color: var(--White-1);
    font-size: 128px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 a {
    color: var(--White-1);
    font-size: 160px;
    font-weight: 400;
    line-height: 100%; /* 8rem */
    text-transform: uppercase;
    text-decoration: none;
}

h2 a:hover {
    text-decoration: underline;
}

/*----------------------h3----------------------*/

h3 {
    font-size: 96px;
    font-weight: 400;
}

/*----------------------h4----------------------*/

h4 {
    font-size: 64px;
    font-weight: 400;
}

/*----------------------h5----------------------*/

h5 {
    color: var(--White-1);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

h5 a{
    color: var(--White-1);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

h5 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px
}

/*----------------------h6----------------------*/

h6 {
    font-size: 20px;
    font-weight: 400;
}

h6 a{
    color: var(--White-1);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

h6 a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px; 
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
1) Transition grid styles
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.transition-grid-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 600;
    background-color: var(--Black-1);

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 20px;
}

.counter-transition {
    grid-column: 2;
    grid-row: 9;
    font-size: 300px;
    color: var(--White-1);   
}

.invisible-index {
    display: none !important;
}  

/*---------------------------------------------------------------------------------------------------------------------------------------------------
2) Custom - cursor
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.special-cursor, .special-cursor * {
    cursor: none !important;
}
  
.custom-cursor {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--White-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    text-align: center;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-cursor span {
    color: var(--Black-2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------
3) Navbar section
----------------------------------------------------------------------------------------------------------------------------------------------------*/
  
.navbar-section {
    width: 100%;
    height: 95px;
    gap: 20px;
    grid-area: 1 / 1 / 1 / 21; /* row-start, column-start, row-end, column-end */
    
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: auto;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .navbar-section { 
        grid-area: 1 / 1 / 1 / 5; /* row-start, column-start, row-end, column-end */
    
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
}

.navbar-grid {
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 20px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .navbar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header {
    grid-column: 1 / span 20;
    grid-row: 1;
    height: 95px;
    z-index: 500;
}

@media (max-width: 430px) {
    .header { 
        grid-column: 1 / span 4;
        height: 100px;
      
    }
}

/* Navbar styles */
.header-content {
    height: 95px;
    width: 100%;
    z-index: 500;
    grid-area: 1 / 1 / 1 / 21; /* row-start, column-start, row-end, column-end */

    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
}

@media (max-width: 430px) {
    .header-content{ 
        grid-area: 1 / 1 / 1 / 5; /* row-start, column-start, row-end, column-end */
        display: grid;
    }
}

.brand-logo  {
    height: 45px;
    width: 33.659px;
    grid-column: 2;
    height: 100%;
    width: 100%;

    grid-area: 1 / 2 / 1 / 4; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: center;
    justify-content: flex-start;

    opacity: 1;
    transform: translateY(0%);
    transition: opacity 0.2s, transform 0.8s;
}

@media (max-width: 430px) {
    .brand-logo { 
        grid-area: 1 / 1 / 1 / 2; /* row-start, column-start, row-end, column-end */
    }
}

.brand-logo a {
    cursor: pointer;
}

.brand-logo img {
    height: 45px;
    cursor: pointer;
}

.navbar-list {
    grid-area: 1 / 8 / 1 / 14; /* row-start, column-start, row-end, column-end */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    opacity: 1;
    transform: translateY(0%);
    transition: opacity 0.2s, transform 0.8s;
}

/* Estilos para dispositivos móviles */
@media (max-width: 1280px) {
    .header-content .navbar-list {
      display: none;  
    }
}

.header-content .navbar-list .navbar-text {
    display: flex;
    width: 100%;
    justify-content: space-between;
    list-style: none;
    text-transform: uppercase;
}

.header-content .navbar-list .navbar-text li a{
    text-decoration: none;
    list-style: none;
    color: var(--White-1);
    font-weight: 400;
}

.header-content .navbar-list .navbar-text li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px; 
}

/* Header Burger */

.navbar-burger-menu {
    width: 100%;
    height: 100%;
    grid-area: 1 / 18 / 1 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 430px) {
    .navbar-burger-menu { 
        grid-area: 1 / 4 / 1 / 5; /* row-start, column-start, row-end, column-end */
    }
}

/* Estilos proporcionados previamente */
.header__burger {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 38px;
    vertical-align: middle;
    cursor: pointer;
    pointer-events: initial;
}
  
.header__burger:hover .header__burger-line:nth-of-type(1) {
    transform: scaleX(1);
}
  
.header__burger:hover .header__burger-line:nth-of-type(2) {
    transform: scaleX(0.75);
}
  
.header__burger:hover .header__burger-line:nth-of-type(3) {
    transform: scaleX(1);
}
  
.header__burger_opened .header__burger-line:nth-of-type(1),
.header__burger_opened:hover .header__burger-line:nth-of-type(1) {
    transform: scaleX(1) rotate(45deg) translate(13px, 20px);
}
  
.header__burger_opened .header__burger-line:nth-of-type(2),
.header__burger_opened:hover .header__burger-line:nth-of-type(2) {
    transform: scaleX(0);
}
  
.header__burger_opened .header__burger-line:nth-of-type(3),
.header__burger_opened:hover .header__burger-line:nth-of-type(3) {
    transform: scaleX(1) rotate(-45deg) translate(13px, -20px);
}
  
.header__burger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--White-1);
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
  
.header__burger-line:nth-of-type(1) {
    top: 9px;
    left: 0;
    transform-origin: right center;
    transform: scaleX(0.75);
}
  
.header__burger-line:nth-of-type(2) {
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: left center;
}
  
.header__burger-line:nth-of-type(3) {
    bottom: 9px;
    left: 0;
    transform-origin: right center;
    transform: scaleX(0.75);
}
  
.header__wrapper-menu {
    position: relative;
    width: 100%;
    max-width: 50%;
    margin: auto 0;
}
  
/* Estilos adicionales para la animación del menú y el botón de cierre */
.header-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--Black-1); /* Color de fondo del menú */
    transform: translateY(-100%);
    z-index: 100;

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 495px 305px 240px;
    gap: 20px;
    overflow: hidden;
}
  
.header__burger_opened + #menu + .header__overlay-menu-back {
      display: block;
}

.header__burger_opened .header__burger-line {
    background-color: var(--White-1); /* Cambia el color de las líneas cuando el menú está abierto */
}

  
/* Responsive */
  @media screen and (max-width: 991px) {
    .header__wrapper-overlay-menu {
      text-align: center;
    }
    
    .header__wrapper-menu {
      max-width: 100%;
      margin-top: calc(var(--gutter-horizontal) * 2);
      margin-bottom: calc(var(--gutter-horizontal) * 2);
    }
    
    .header__wrapper-overlay-widgets {
      max-width: 100%;
      margin-top: 0;
      margin-bottom: calc(var(--gutter-horizontal) * 2);
    }
    
    .header__widget {
      margin-bottom: 1em;
    }
    
    .header__widget:last-child {
      margin-bottom: 2em;
    }
    
    .header__burger {
      width: 30px;
      height: 35px;
    }
    
    .header__burger_opened .header__burger-line:nth-of-type(1),
    .header__burger_opened:hover .header__burger-line:nth-of-type(1) {
      transform: scaleX(1) rotate(45deg) translate(10px, 15px);
    }
    
    .header__burger_opened .header__burger-line:nth-of-type(2),
    .header__burger_opened:hover .header__burger-line:nth-of-type(2) {
      transform: scaleX(0);
    }
    
    .header__burger_opened .header__burger-line:nth-of-type(3),
    .header__burger_opened:hover .header__burger-line:nth-of-type(3) {
      transform: scaleX(1) rotate(-45deg) translate(11px, -16px);
    }
    
    .header__overlay-menu-back {
      top: 2px;
    }
}


/*become a model big text*/
.become-a-model-big {
    width: 100%;
    height: 100%;
    grid-area: 1 / 2 / 1 / 12; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.become-a-model-big,
.overlay-menu-list {
  opacity: 0;
}

/*menu list overlay*/
.menu-list-overlay-container {
    width: 100%;
    height: 100%;
    grid-area: 2 / 16 / 2 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.overlay-menu-list li a{
    color: var(--White-1);
    font-size: 48px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    text-decoration: none;
}

.overlay-menu-list li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px; 
}


/* Social media titles */
.social-media-links-overlay-menu {
    width: 100%;
    height: 100%;
    grid-area: 2 / 2 / 2 / 10; /* row-start, column-start, row-end, column-end */
}

.overlay-social-media-titles {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
4) Photo slider frame
----------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Photo slider frame styles */
.photo-slider-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-slider-frame img {
    max-width: 100%;
    object-fit: cover; /* Scale the image to cover the container completely without distortion */
    transition: transform 1.3s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave para transformaciones */
}

.photo-slider-frame img:hover {
    transform: scale(1.2); /* Escala la imagen al 110% del tamaño original */
    transition: 1s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave */
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------
3) Master-model-profile-grid
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.master-model-profile-grid {
    display: grid;
    grid-template-rows: repeat(3, auto) 400px 1fr;
    grid-template-columns: repeat(20, 1fr); 
    gap: 20px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .master-model-profile-grid {
        width: calc(100vw - 48px);
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 100px 1030px auto 130px 450px;
        gap: 10px;
        margin-left: 24px;
        margin-right: 24px;
    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
4) model-info
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.model-info {
    width: 100%;
    height: 1080px;
    grid-area: 2 / 1 / 2 / 21; /* row-start, column-start, row-end, column-end */

    display: grid;
    grid-template-rows: 65px 245px 130px 425px 60px 55px;
    grid-template-columns: repeat(20, 1fr); 
    gap: 20px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-info {
        grid-area: 2 / 1 / 2 / 5; /* row-start, column-start, row-end, column-end */
        grid-template-columns: repeat(4, 1fr); 
        grid-template-rows: 680px 105px 205px;
    }
}

.model-360 {
    width: 100%;
    height: 100%;
    grid-area: 2 / 2 / 6 / 8; /* row-start, column-start, row-end, column-end */
    background-color: var(--Black-1);
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-360{
        grid-area: 1 / 1 / 1 / 5; /* row-start, column-start, row-end, column-end */
    }
}

.model-360-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: self-start;
    justify-content: center;
    overflow: hidden;
}

.model-360-frame img {
    max-width: 100%;
    object-fit: cover; /* Scale the image to cover the container completely without distortion */
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-360-frame img  {
        max-height: 100%;
        max-width: 122%;
    }
}

.model-name-text {
    width: 100%;
    height: 100%;
    grid-area: 2 / 9 / 2 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: flex-end;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-name-text {
        grid-area: 2 / 1 / 2 / 5; /* row-start, column-start, row-end, column-end */
        justify-content: center;
        align-items: center;
    }
}

.model-name-text h3 {
    color: var(--White-1);
    text-transform: uppercase;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-name-text h3 {
        font-size: 2rem;
        text-align: center;
    }
}

.model-sizes {
    width: 100%;
    height: 100%;
    grid-area: 3 / 9 / 3 / 15; /* row-start, column-start, row-end, column-end */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-sizes {
        grid-area: 3 / 1 / 3 / 3; /* row-start, column-start, row-end, column-end */
    }
}

.model-clothing-sizes {
    width: 100%;
    height: 85%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-clothing-sizes {
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.model-clothing-sizes h6 {
    color: var(--White-1);
    text-transform: uppercase;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-clothing-sizes h6 {
        font-size: 16px;
    }
}

.model-sizes-line {
    height: 1px;
    width: 100%;
    background-color: var(--Gray-1);
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-sizes-line {
        display: none;
    }
}

.model-social-media {
    width: 100%;
    height: 100%;
    grid-area: 5 / 9 / 5 / 20; /* row-start, column-start, row-end, column-end */

    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

/* Ajustes para eliminar espacios extra y ajustar el tamaño al texto */
.model-social-media h5 {
    margin: 0; 
    padding: 0; 
    display: inline; 
    height: 26px;
    display: flex;
    align-items: center;
}

.model-social-media h5 a {
    display: inline-block; 
    text-decoration: none; 
    color: inherit; 
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-social-media  {
        grid-area: 3 / 3 / 3 / 5; /* row-start, column-start, row-end, column-end */
        height: 88%;
        align-items: flex-end;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

/* Ajustes adicionales para dispositivos móviles */
@media (max-width: 430px) {
    .model-social-media h5 a {
        font-size: 16px;
        display: inline;
    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
5) model-polaroids
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.model-polaroids {
    width: 100%;
    height: 100%;
    grid-area: 3 / 2 / 3 / 20; /* row-start, column-start, row-end, column-end */

    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: auto; 
    gap: 20px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-polaroids {
        grid-area: 3 / 1 / 3 / 5; /* row-start, column-start, row-end, column-end */
        grid-template-columns: repeat(4, 1fr);
    }
}

.model-polaroids-container {
    width: 100%;
    height: 704px;
    grid-column: span 6;
}

/* Estilos para dispositivos móviles */
@media (max-width: 430px) {
    .model-polaroids-container {
        grid-column: span 4;
        height: 580px;
    }
}

/* Photo slider frame styles */
.photo-slider-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.photo-slider-frame img {
    max-width: 100%;
    object-fit: cover; /* Scale the image to cover the container completely without distortion */
    transition: transform 1.3s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave para transformaciones */
}

.photo-slider-frame img:hover {
    transform: scale(1.2); /* Escala la imagen al 110% del tamaño original */
    transition: 1s cubic-bezier(.215,.61,.355,1); /* Agrega una transición suave */
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
6) Footer
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
    width: 100%;
    height: 100%;
    grid-area: 5 / 1 / 5 / 21; /* row-start, column-start, row-end, column-end */
    background-color: var(--Black-2);
    height: 350px;
}

@media (max-width: 430px) {
    .footer {
        grid-area: 5 / 1 / 5 / 5; /* row-start, column-start, row-end, column-end */
    }
}

.footer-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 95px 100px 115px;
    grid-gap: 20px;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 130px 80px 80px 100px;
    }
}

.footer-mail {
    width: 100%;
    height: 100%;
    grid-area: 1 / 2 / 3 / 8; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: center;
}

.footer-mail a {
    text-decoration: none;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .footer-mail {
        grid-area: 1 / 1 / 1 / 5; /* row-start, column-start, row-end, column-end */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.footer-mail h4 {
    color: var(--White-1);
    font-style: normal;
    text-transform: uppercase;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .footer-mail h4 {
        font-size: 42px;
        text-align: center;
    }
}

/* Social media titles */
.footer-social-media-titles {
    width: 100%;
    height: 100%;
    grid-area: 1 / 14 / 1 / 20; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 1792px) {
    .footer-social-media-titles {
        grid-area: 1 / 11 / 1 / 20; /* row-start, column-start, row-end, column-end */
    }
}

@media (max-width: 430px) {
    .footer-social-media-titles {
        display: none;
    }
}

.footer-social-media-icons {
    display: none;
    grid-area: 1 / 14 / 2 / 20; /* row-start, column-start, row-end, column-end */
}

.social-icon {
    width: 32px;
    height: 32px;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .footer-social-media-icons {
        display: block;
        width: 100%;
        height: 100%;
        grid-area: 2 / 2 / 2 / 4; /* row-start, column-start, row-end, column-end */
    }
}

.footer-social-media-icons-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Copyright & made by */
.copyright-made-by {
    width: 100%;
    height: 100%;
    grid-area: 3 / 14 / 3 / 17; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--White-1);
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .copyright-made-by {
        display: block;
        width: 100%;
        height: 100%;
        grid-area: 4 / 1 / 4 / 3; /* row-start, column-start, row-end, column-end */
    }
}

.copyright-made-by h3 a {
    color: var(--White-1);
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.skopos-discover-container-link {
    width: 100%;
    height: 100%;
    grid-area: 3 / 17 / 3 / 20; /* row-start, column-start, row-end, column-end */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .skopos-discover-container-link {
        grid-area: 4 / 4 / 4 / 5; /* row-start, column-start, row-end, column-end */
    }
}

.skopos-discover-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .skopos-discover-container {
        align-items: flex-start;
    }
    .skopos-discover-container:hover .skopos-discover-btn-text .text-skopos,
    .skopos-discover-container .skopos-discover-btn-text .text-skopos {
        transform: translate3d(0, -100%, 0);  /* Siempre mostrando el estado de hover */
    }
}

.skopos-discover-container h3 a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--White-1);
    font-weight: 400;
}

.skopos-discover-btn-wrap {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.skopos-discover-btn span {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 20px;
    background-color: var(--White-1);
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

.skopos-discover-btn-text-wrap {
    height: 50px;
    display: flex;
    align-items: center;
    padding-top: 2px;
    padding-right: 5px;
}

/* ------------------------------------ Styles for mobile devices ------------------------------------ */
@media (max-width: 430px) {
    .skopos-discover-btn-text-wrap {
        align-items: flex-start;
    }
}

.skopos-discover-btn-text {
    float: left;
    overflow: hidden;
    text-align: right;
    font-size: 16px;
    color: var(--White-1);
}

.skopos-discover-btn-text .text-skopos {
    position: relative;
    display: inline-block;
    text-align: right;
    transition: transform 0.3s;
}

.skopos-discover-btn-text .text-skopos::before {
    position: absolute;
    top: 100%;
    right: 0;
    content: attr(data-hover);
}

  
.skopos-discover-container:hover .skopos-discover-btn-text .text-skopos {
    transform: translate3d(0, -100%, 0);
}