@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid black; */
}

.c15-hor-body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
   /*  min-height: 100vh; */
    background-color: #c4212100;
    flex-direction: column;
}

.c15-hor-button {
    font-family: "Rubik", sans-serif;
    background-color: transparent;
    border: 1px solid white;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    height: 50px;
    transition: 0.5s ease;
}

.c15-hor-button:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    transition-delay: 0 !important;
}

.c15-hor-container {
    /* position: relative;
    width: 1280px; */
    /* height: 720px; */
    height: 600px;
    /* border-radius: 10px; */
    overflow: hidden;
    background-color: #767676;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #e7ffda;
}

.c15-hor-container .c15-hor-content {
    width: 100%;
    display: flex;
}

.c15-hor-content .introduce {
    position: relative;
    width: 40%;
    height: 100%;
    z-index: 20;
}

.introduce .c15-hor-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    padding: 0 25px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.introduce .c15-hor-wrapper span {
    overflow: hidden;
}

.introduce .c15-hor-wrapper span>* {
    transition: 0.5s ease;
    opacity: 0;
    transform: translateY(300px);
    transition-delay: calc((3 - var(--idx)) * 0.1s);
}

.introduce .c15-hor-wrapper.active {
    pointer-events: all;
}

.introduce .c15-hor-wrapper.active span>* {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--idx) * 0.1s);
}

.introduce:not(.place) {
    font-family: "Rubik", sans-serif;
}

.introduce .country {
    font-size: 1.5rem;
    font-weight: 400;
}

.introduce .place {
    font-family: "Bebas Neue", sans-serif;
    font-size: 5.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-top: 10px;
}

.introduce .describe {
    /* font-size: 1rem; */
    margin-top: 8px;
    font-weight: 300;
}

.introduce .discover-button {
    width: 250px;
    height: 50px;
    border-radius: 50px;
    margin-top: 20px;
}

.c15-hor-content .thumbnail-list {
    position: relative;
    height: 300px;
    flex: 1;
}

.thumbnail-list .c15-hor-wrapper {
    position: relative;
    z-index: 10;
    height: 300px;
}

.thumbnail-list .c15-hor-wrapper .thumbnail {
    position: absolute;
    transition: 0.75s cubic-bezier(0.6, 0.1, 0.3, 1);
    height: 300px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    transform: translateX(calc(var(--idx) * 230px));
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
}

.thumbnail-list .c15-hor-wrapper .thumbnail.zoom {
    width: 1280px;
    height: 720px;
    transform: translate(-512px, -270px);
    filter: brightness(40%);
    box-shadow: none;
}

.thumbnail img {    
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail{
    padding: 0;
}

.c15-hor-container .c15-hor-navigation {
    margin-left: 40%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 50px 50px 0;
    z-index: 20;
}

.c15-hor-navigation .next-button {
    width: 180px;
    border-radius: 60px;
}

.c15-hor-navigation .line {
    flex: 1;
    height: 2px;
    background-color: #ffffff;
}

.c15-hor-navigation .ordinal-number {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
   /*  width: 50px;
    height: 50px;
    overflow: hidden; */
}

.ordinal-number h2 {
    position: absolute;
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(200%);
    transition: 0.5s ease;
}

.ordinal-number h2.active {
    transform: unset;
}

.c15-ubicacion {
    width: 30px;
    height: 30px;
}