@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    appearance: none;
    background: none;
    box-sizing: border-box;
    text-decoration: none;
    text-align: inherit;
    position: relative;
    overflow: auto;
    color: currentColor;
    font: inherit;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    zoom: 1;
    line-height: inherit;
    word-spacing: 0;
    letter-spacing: 0;
    cursor: inherit;
    overflow-wrap: inherit;
    word-break: inherit;
    white-space: inherit;
}

html{
    background-color: #f1f1f1;
}

#app{
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    user-select: none;
    -webkit-tap-highlight-color: transparent;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #161616;
    text-align: left;
}

.lh0{
    line-height: 0;
}
.flx{
    display: flex;
}
.fdc{
    flex-direction: column;
}
.fw{
    flex-wrap: wrap;
}
.f1{
    flex: 1;
}
.fs0{
    flex-shrink: 0;
}
.ma{
    margin: auto;
}
.mla{
    margin-left: auto;
}
.p1{
    padding: 8px 12px;
}
.ml4{
    margin-left: 4px;
}
.cp{
    cursor: pointer;
}




#men_women_img_con{
    display: flex;
    margin-top: 70px;
}
#men_women_img_con_in{
    margin: auto;
}
#men_women_img{
    width: 160px;
    height: 160px;
    object-fit: contain;
}

#nav_top{
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    display: flex;
}
#nav_top_in{
    margin: auto;
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#logo_con{
    line-height: 0;
}
#logo_img{
    height: 24px;
}

#register{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #105BCB;
    border-radius: 8px;
    padding: 4px 12px;
    cursor: pointer;
}

#register_svg{
    position: absolute;
    top: 8px;
    left: 8px;
    transform: scale(2.0);
    opacity: .1;
}

#nav{
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    display: flex;
    overflow: visible;
}
#nav_in{
    margin: auto;
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    overflow: visible;
}

#nav_men{
    font-weight: 600;
}
#nav_women{
    opacity: .5;
}

#nav_women_tezlikle{
    color: red;
    position: absolute;
    top: -16px;
    right: 16px;
    font-size: 16px;
}



#list_con{
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    margin: auto;
}
.list_item{
    width: 100%;
    padding: 8px;
}
.list_item_in{
    height: 90px;
    border-radius: 8px;
    display: flex;
    background: linear-gradient(0.125turn, #161616, #292929);
    cursor: pointer;
}
.list_item_text{
    flex: 1;
    padding: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    overflow: hidden;
}
.list_item_img_con{
    line-height: 0;
}
.list_item_img{
    width: 100%;
    height: 100%;
}



@media only screen and (min-width: 800px){
    #nav_top_in{
        padding: 0 32px;
    }
    #nav_in{
        padding: 0 32px;
        font-size: 48px;
        width: 750px;
    }
    #nav_men{
        padding-left: 46px;
    }
    #nav_women_tezlikle{
        right: 32px;
        font-size: 18px;
    }
    #register{
        font-size: 16px;
    }
    #men_women_img_con{
        margin-top: -70px;
    }
    #men_women_img{
        width: 400px;
        height: 400px;
    }
    #list_con{
        padding: 24px;
    }
    .list_item{
        width: 50%;
    }
    .list_item_in{
        height: 130px;
    }
    .list_item_text{
        font-size: 24px;
    }
}

@media only screen and (min-width: 1300px){
    .list_item{
        width: 33.33%;
    }
}