.block-unlock-feature {
    max-width: 100% !important;
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
}

.block-unlock-feature h1 {
    font-size: 5.125rem;
}

.block-unlock-feature .gallery {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
    max-height: 344px;
    max-width: 459px;
}

.block-unlock-feature .unlock-feature-swiper {
    width: 150%;
}

.block-unlock-feature .unlock-feature-swiper .swiper-slide-active figure {
    border: 2px solid #000;
}

.block-unlock-feature .unlock-feature-swiper .swiper-slide-next .overlay {
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1.47%, #FFF 87.34%);
}

.block-unlock-feature figure {
    position: relative;
    height: 344px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.block-unlock-feature figure figcaption {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    place-content: center;
    height: 2rem;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: -webkit-fill-available;
}

.block-unlock-feature .circle {
    width: 52px;
    height: 52px;
    /* background-color: #000; */
    transform: translateY(-50%);
    border-radius: 100px;
    position: absolute;
    z-index: 1;
    top: 0;
    margin-left: -1rem;
}

.block-unlock-feature .pulsing {
    animation: block-unlock-feature__pulsing 1s 1;
    animation-delay: 0s;
}
  
@keyframes block-unlock-feature__pulsing {
    0% {
      box-shadow: 0 0 0 0px rgba(0,0,0,.5);
    }
    100% {
      box-shadow: 0 0 0 30px rgba(0,0,0,0);
    }
}

.block-unlock-feature .buttons {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.block-unlock-feature .buttons .button {
    margin-right: 1.75rem;
}

/** RESPONSIVENESS **/

/* NOT MOBILE FIRST STYLES */

/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
    /* ---XS ZONE--- */
}

/* END NOT MOBILE FIRST STYLES */

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) {
    /* ---S ZONE--- */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /* ---M ZONE--- */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* ---L ZONE--- */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /* ---XL ZONE--- */
}

/* Orientation: Portrait / Landscape */
@media only screen and (orientation: landscape) {
  /* empty */
}

