html{
    scroll-behavior: smooth;
}

.card-div{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    width: 18.5%;
    min-width: 20rem;
    margin-bottom: 5rem;
    align-items: center;
}
.card-div .zbytek{
    display: flex;
    width: 20rem;
    margin-top: 1rem;
    justify-content: space-between;
}
.card-div-name{
    font-size: 1.5rem;
    text-align: left;
    font-weight: 600;
}
.card-div-price{
    font-size: 1.5rem;
    text-align: left;
    font-weight: 300;
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --textColor: #808080;
    --bluePrimary: #0077ff;
}
body{
    font-family: 'Roboto', sans-serif;
    height: 100%;
    background-color: rgb(255, 255, 255);
}
@keyframes animImg{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.home{
    display: flex;
    justify-content: center;
}
.home-text{
    position: absolute;
    color: white;
    font-size: 5vw;
    max-width: 50vw;
    text-align: center;
    animation: slideUp 1s linear normal;
    z-index: 1;
}
.homebox{
    pointer-events: none;
    overflow: hidden;
    margin-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.5%;
}
@keyframes slideUp{
    0%{
        transform: translateY(-50px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

.home-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    margin-top: 25%;
    background: none;
    background-color: rgba(24, 161, 180, 0.5);
    border: 2px solid rgba(24, 161, 180, 1);
    border-radius: 2rem;
    outline: none;
    text-align: center;
    text-decoration: none;
    width: 300px;
    height: 60px;
    font-size: 1.5em;
    font-weight: 600;
    color: white;
    animation: slideUpButton 1s linear normal;
    transition: all 1s;
    z-index: 1;
    pointer-events: all;
}

@keyframes slideUpButton{
    0%{
        transform: translateY(50px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

.home-button:hover{
    background-color: rgba(24, 161, 180, 1);
    transition: all 1s;
}
.frame{
    cursor: pointer;
    border-radius: 5%;
    display: flex;
    height:30%;
    width: 30vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;

}
.frameimg{
    height:100%;
    width: auto;
    border-radius: 5%;

}
.framecontainer{
    display: flex;
    flex-direction: column;
    height: 90vh;
    justify-content: space-around;
    margin:  0 2rem 0 2rem ;

}
.home-image{
    width: auto;
    position: relative;
    height: 90vh;
    min-height: 300px;
    min-width: auto;
    z-index: -1;
    border-radius: 1.5%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.onframe{
    transform: translate(-20%,0%);
    scale: 0.8;

    transition:all 450ms cubic-bezier(.25,.46,.45,.94);
    filter:opacity(0);


}
.offframe{

    transform: translate(0%,0);
    transition:all 450ms cubic-bezier(.25,.46,.45,.94);
    filter:opacity(1);
    scale: 1;

}
.on{
    opacity: 0.25;
    transform: translate(-5%,0%);
    transition:all 450ms cubic-bezier(.25,.46,.45,.94);
}
.off{

    opacity: 1;
    transform: translate(0%,0);
    transition:all 450ms cubic-bezier(.08,.82,.17,1);
    transition:450ms ;
}
.clothes-product-image
{
    width: auto;
    height: 120%;
}
.cards{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    height: auto;
    margin:  0 auto;
    gap: 2%;
    justify-content: center;
}
.feature-header{
    margin:3vw 0;
    font-size: 4rem;
    text-align: center;
}

.card-div p{
    font-size: 1.5rem;
    text-align: left;
    justify-self: flex-start;
    align-self: flex-start;
}
.arrow-down{
    width: 2vw;
    height: auto;
    margin: 0.3vw 49% 3vw 49%;
}

.arrow-down-card{
    width: 1.5rem;
    height: auto;
}
.cena{
    width: 20rem;
}
.card-div .zbytek{
    display: flex;
    width: 20rem;
    margin-top: 1rem;
    justify-content: space-between;
}
.card-div .card-img{
    width: 20rem;
    justify-content: center;
    display: flex;
    border-radius:4%;
    height: 25rem;
}

.cards a{
    justify-content: center;
    align-items: center;
    display: flex;
    max-height: 25rem;
    overflow: hidden;
    width: 20rem;
    border-radius: 4%;
}
.zbytek a{
    justify-content: flex-end;
    align-items: flex-start;
    height: 1.5rem;
    width: auto;
}


@media only screen and (max-aspect-ratio:5/4){
    .framecontainer{
        flex-direction: row;
        height: 18vh;
        gap:1rem;
        margin: 0.5rem;
        justify-content: center;
    }
    .frame{
        height: 18vh;
    }
    .homebox{
        margin: 0 0.5rem;
        height: 70vh;
    }
    .home{
        flex-direction: column;
        height: 92vh;
        justify-content: space-evenly;
    }
    .home-text{
        font-size: 7.5vw;
        max-width: 100vw;
    }
    .home-image{
        height: 70vh;
        width: auto;
    }
    .onframe{        transform: translate(0,-20%);
        scale: 0.8;
        transition:all 450ms cubic-bezier(.25,.46,.45,.94);
        filter:opacity(0);}
    .on{
        opacity: 0.25;
        transform: translate(0,-4%);
        transition:all 450ms cubic-bezier(.25,.46,.45,.94);
    }
    .home-button{
        width: 30vw;
        height: 7.5vw;
        font-size: 3vw;
    }

}
@media only screen and (max-aspect-ratio:10/16){
    .home{
        height: 88vh;
        margin-bottom: 8vh;
    }
    .framecontainer{
        height: 20vh;

    }
    .frame{
        height: 16vh;
    }
}
@media only screen and (max-aspect-ratio:3/4){

    .card-div p{
        text-align: left;
        width: 20rem;
        align-self: center;
    }
    .feature-header{font-size: 3.5rem;}
}

.fab-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: rgba(24, 161, 180, 1);
}

.fab-icon-holder:hover {
    opacity: 0.8;
}

.fab-icon-holder img{
    margin: 0px;
    padding: 0px;
    width: 20px;
    height: 20px;
    -webkit-filter: invert(100%);
}