@import url('./fonts.css');
* {
    font-family: "Gilroy", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 200;
    transition: .1s;
}

body {
    font-size: 100%;
}

.logo {
    margin-bottom: 1vmin;
    /*width: 30vmin;*/
    width: 357.594px;
    text-align: center;
    opacity: 1;
    animation: logoAnimation 2s forwards;
}

@keyframes logoAnimation {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 3vmin;
    width: 100%;
}

h1 {
    font-size: 30px;
    margin-bottom: 2vmin;
    font-weight: 200;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

h2 {
    font-size: 18px;
    margin-bottom: 2vmin;
    font-weight: 200;
    animation: fadeIn 1.5s forwards 0.5s;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /*width: 100%;*/
    background-color: rgb(34, 34, 34);
    overflow: hidden;
    background-image: url('../images/output-onlinepngtools.png');
    background-position: center;
}

.wrapper-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    /*max-width: 100vmin;*/
    max-width: 1160px;
    overflow: hidden;
}

.container {
    text-align: center;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*width: 100vmin;*/
    max-width: 1160px;
    height: 100%;
    /* padding: 0 10px; */
}

.photo-button_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 850px;
    padding: 0 10px;
}

.photo_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* overflow: hidden; */
    /*width: 100vmin;*/
    max-width: 1160px;
    gap: 50px;
}

.photo_container_small {
    gap: 20px;
    /*width: 100vmin;*/
    max-width: 1160px;
}

.media-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-height: 60vmin;
    max-width: 40vmin;
    text-align: center;
    border-radius: 1rem;
    /*margin: 0px 1vmin;*/
    background-color: black;
    position: relative;
    opacity: 0;
}

.swiper {
    width: 100%;
    height: auto !important;
}

.swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g__video {
    height: 100%;
    object-fit: cover;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s;
    width: 100%;
}


/* .swiper-slide:nth-child(2n) {
    width: 60%;
}

.swiper-slide:nth-child(3n) {
    width: 40%;
} */


/* .owl-item {
    max-height: 60vmin !important;
    max-width: 40vmin !important;
    width: 100% !important;
} */


/* #step-3 {
    justify-content: flex-start;
} */

.media-container--left {
    transform: translateX(-100%);
    animation: slideInLeft 1s forwards;
}

.media-container--right {
    transform: translateX(100%);
    animation: slideInRight 1s forwards;
}

.media-container--middle {
    opacity: 0;
    animation: fadeIn 1s forwards 0.1s;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-20%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(20%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.media-container--sex {
    height: 70vmin;
    width: 46.6vmin;
    /* max-height: 832px; */
}

.media-container--big {
    height: 45vmin;
    width: 40vmin;
}

.media-container--small {
    /*height: 47vmin;*/
    /*width: 37vmin;*/
    height: 43vmin;
    width: 30vmin;
}

img {
    height: 100%;
    display: block;
    opacity: .8;
    border-radius: 8px;
    width: 100%;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    z-index: 1000;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.layer.visible {
    opacity: 1;
    visibility: visible;
}

li {
    text-align: center;
    border-radius: .3rem;
    font-size: 1.5vmin;
    background-color: rgb(34, 34, 34);
    color: rgb(242, 242, 242);
    margin: .2vmin;
    padding: .3vmin;
    opacity: .8;
}

ul {
    list-style: none;
    display: flex;
}

.category_section {
    margin-bottom: 2vmin;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1vmin;
    width: 100%;
    justify-self: center;
}

.category_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .2vmin;
    /*font-size: 2.3vmin;*/
    font-size: 27.5px;
    width: 100%;
}


/* Toggle active background on label click */

.category_container label {
    background-color: rgba(106, 106, 106, 0.7);
    padding: .5vmin;
    border-radius: .5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    transition: background-color 0.3s ease;
}

.category_container label.active {
    background-color: rgba(234, 128, 252, .7) !important;
    /* Ensure it's applied */
}


/* Animation for label appearance */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Apply delay sequentially to all labels */

.category_container label:nth-child(1) {
    animation-delay: 0.55s;
}

.category_container label:nth-child(2) {
    animation-delay: 0.6s;
}

.category_container label:nth-child(3) {
    animation-delay: 0.65s;
}

.category_container label:nth-child(4) {
    animation-delay: 0.7s;
}

.category_container label:nth-child(5) {
    animation-delay: 0.75s;
}

.category_container label:nth-child(6) {
    animation-delay: 0.8s;
}

.category_container label:nth-child(7) {
    animation-delay: 0.85s;
}

.category_container label:nth-child(8) {
    animation-delay: 0.9s;
}

.category_container label:nth-child(9) {
    animation-delay: 0.95s;
}

.category_container label:nth-child(10) {
    animation-delay: 1s;
}

.category_container label:nth-child(11) {
    animation-delay: 1.1s;
}

.category_container label:nth-child(12) {
    animation-delay: 1.15s;
}

.category_container label:nth-child(13) {
    animation-delay: 1.2s;
}

.category_container label:nth-child(14) {
    animation-delay: 1.25s;
}

.category_container label:nth-child(15) {
    animation-delay: 1.3s;
}

.category_container label:nth-child(16) {
    animation-delay: 1.35s;
}

.category_container label:nth-child(17) {
    animation-delay: 1.4s;
}

.category_container label:nth-child(18) {
    animation-delay: 1.45s;
}

.category_container label:nth-child(19) {
    animation-delay: 1.5s;
}

.category_container label:nth-child(21) {
    animation-delay: 1.55s;
}

.category_container label:nth-child(22) {
    animation-delay: 1.6s;
}

.category_container label:nth-child(23) {
    animation-delay: 1.65s;
}


/* Add more nth-child selectors as needed for each additional label */

.layer .main_layer {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(to top, rgba(234, 128, 252, .6), rgba(234, 128, 252, .0));
    align-self: flex-start;
}

.layer .main_layer--trans {
    background: linear-gradient(to top, rgba(167, 139, 250, .5), rgba(167, 139, 250, .0));
}

.layer .main_layer--male {
    background: linear-gradient(to top, rgba(56, 189, 248, .5), rgba(56, 189, 248, .0));
}

.layer .empty_layer {
    width: 100%;
    height: 70%;
}

.text_descriptor-block {
    width: initial;
    height: initial;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .7);
    padding: 1vmin;
    border-radius: 1rem;
    text-align: center;
    font-size: 20px;
    display: flex;
    align-self: flex-end;
    margin: 1vmin;
    justify-content: center;
}

.text_descriptor-block--female {
    background-color: rgb(244, 114, 182);
    padding: 10px;
}

.text_descriptor-block--trans {
    padding: 10px;
    background-color: rgb(167, 139, 250);
}

.text_descriptor-block--male {
    background-color: rgb(56, 189, 248);
    padding: 10px;
}

.image-descriptor {
    font-size: 14px;
}

footer {
    background-color: rgb(0, 0, 0);
    justify-self: flex-end;
    width: 100%;
    height: 20vmin;
}

.cta-button {
    background-color: rgba(234, 128, 252, .8);
    border: 1px solid rgba(234, 128, 252, .8);
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: 20px auto;
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    min-width: 250px;
    animation: buttonAppear 1s forwards 0s;
}

@keyframes buttonAppear {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-button:hover {
    border: 1px solid #ea80fc;
    background-color: transparent;
    transition: .3s;
}

.progress-bar {
    font-size: 20px;
    margin-bottom: 1vmin;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 900px) and (max-height: 1000px) {
    .container-tags {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    .category_container {
        font-size: 2.7vh;
    }
}

@media (max-width: 1024px) {
    .photo-button_container {
        max-width: 100vw;
    }
}


/* 
@media (max-width: 900px) {
    .photo-button_container {
        max-width: 750px;
    }
}

@media (max-width: 800px) {
    .photo-button_container {
        max-width: 700px;
    }
}

@media (max-width: 720px) {
    .photo-button_container {
        max-width: 600px;
    }
}

@media (max-width: 540px) {
    .photo-button_container {
        max-width: 500px;
    }
}

@media (max-width: 415px) {
    .photo-button_container {
        max-width: 410px;
    }
}

@media (max-width: 380px) {
    .photo-button_container {
        max-width: 370px;
    }
}

@media (max-width: 320px) {
    .photo-button_container {
        max-width: 300px;
    }
} */

@media (min-width: 500px) and (max-height: 1000px) {
    .photo_container {
        width: unset;
    }
    .media-container--sex {
        height: 60vmin;
        width: 40vmin;
    }
}

@media (max-width: 600px) {
    .photo_container {
        gap: 10px;
    }
}

@media (max-width: 400px) and (max-height: 900px) {
    .logo {
        width: 90%;
    }
}