body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, button, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

fieldset, img {
    border: 0;
}

img, object, embed {
    vertical-align: bottom;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}

q:before, q:after {
    content: '';
}

a * {
    cursor: pointer;
}

input,
textarea {
    outline: none;
}

a {
    text-decoration: none;
}

input {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

* {
    outline: none;
}

* {
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

i {
    backface-visibility: hidden;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body,
html {
    height: 100%;
}

body {
    font: 400 14px/1.2 'Noto Sans', sans-serif;
}

.container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1023px) {
    .container {
        padding: 0 10px;
    }
}

.section {
    margin-bottom: 30px;
}

header {
    background: linear-gradient(90.16deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%, rgba(118, 0, 210, 0.5) 100%);
    margin-bottom: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
}

@media (max-width: 1280px) {
    .header-inner {
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
}

@media (max-width: 1023px) {
    .header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 1023px) {
    .header-inner .nav {
        visibility: hidden;
        display: none;
    }
}

.burger {
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .burger:hover svg {
        fill: #000000;
    }
}

.burger svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: fill .3s;
}

.logo {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: 48px;
    flex-grow: 1;
    flex-shrink: 1;
    margin-left: 78px;
    margin-right: 10px;
}

@media (max-width: 1500px) {
    .logo {
        margin-left: 15px;
    }
}

@media (max-width: 1023px) {
    .logo {
        flex-grow: 0;
        flex-shrink: 0;
    }
}

.logo a {
    display: block;
    color: #ffffff;
    white-space: nowrap;
}

.search {
    max-width: 674px;
    width: 100%;
}

@media (max-width: 1280px) {
    .search {
        max-width: 100%;
    }
}

.search-inner {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.search-inner input {
    width: 100%;
    background: #FFFFFF;
    border: none;
    border-radius: 5px;
    height: 30px;
    color: #8D8D8D;
    padding: 5px 60px 5px 30px;
}

.search-inner input::placeholder {
    font-family: Noto Sans, sans-serif;
    font-size: 14px;
    color: #8D8D8D;
}

.search-inner .search-btn {
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
}

.snapshot {
    cursor: pointer;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 10px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.modal-container {
    width: 100%;
    max-width: 540px;
}

.modal-header {
    position: relative;
    padding: 10px;
    background-color: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-header img {
    display: block;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: -10px -10px 0 0;
    width: 28px;
    height: 28px;
    border: 2px solid #fff;
    border-radius: 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.modal-close i {
    position: relative;
    display: block;
    transform: rotate(45deg);
}

.modal-body {
    padding: 20px 50px;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #171717;
    text-align: center;
    font-size: 14px;
}

.modal-body h1, .modal-body h2, .modal-body h3, .modal-body .h1, .modal-body .h2, .modal-body .h3 {
    margin-bottom: 0;
    color: #171717;
}

.modal-body a {
    color: #000;
}

.modal-body a:hover {
    color: #CC6699;
}

.preview .modal-body {
    text-align: left;
}

.preview .modal-body .h1 {
    font-weight: 700;
    text-align: center;
}

.preview-content {
    margin: 20px 0;
    display: grid;
    gap: 20px;
    align-items: flex-start;
}

.preview-image {
    position: relative;
    background-color: #ababab;
}

.preview-image img {
    width: 100%;
    min-height: 100%;
    display: block;
}

.preview-comment label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

@media (min-width: 1025px) {
    .search-inner .search-btn:hover svg {
        fill: #290521;
    }
}

.search-inner .search-btn svg {
    width: 19px;
    height: 19px;
    fill: #D200A4;
    transition: fill .3s;
}

.nav {
    display: flex;
    font-size: 24px;
    margin-right: 90px;
}

@media (max-width: 1500px) {
    .nav {
        margin-right: 15px;
    }
}

@media (max-width: 1100px) {
    .nav {
        margin-right: 0;
    }
}

@media (max-width: 1023px) {
    .nav {
        flex-direction: column;
        background: #ffffff;
        margin-bottom: 20px;
    }
}

.nav .nav-link {
    font-weight: 700;
    color: #ffffff;
    align-items: center;
    display: flex;
    border-bottom: 2px solid transparent;
    padding: 35px 10px;
    transition: background .3s, box-shadow .3s, border-color .3s;
    margin-right: 50px;
}

@media (max-width: 1100px) {
    .nav .nav-link {
        margin-right: 15px;
    }
}

@media (max-width: 1023px) {
    .nav .nav-link {
        color: #D200A4;
        margin-right: 0;
        padding: 10px 20px;
        font-size: 16px;
    }
}

.nav .nav-link:last-child {
    margin-right: 0;
}

@media (min-width: 1025px) {
    .nav .nav-link:hover {
        background: #960076;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
        border-color: #C67CFF;
    }
}

.nav svg {
    margin-right: 5px;
    width: 19px;
    height: 19px;
}

@media (max-width: 1023px) {
    .nav svg {
        display: none;
    }
}

.nav .home-icon {
    width: 18px;
    height: 18px;
}

main {
    position: relative;
}

body.show-nav aside {
    transform: translate3d(0, -22px, 0);
}

aside {
    position: absolute;
    width: 398px;
    background: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 10;
    left: 0;
    top: 0;
    padding-top: 66px;
    transform: translate3d(-100%, -22px, 0);
    transition: transform .3s;
}

@media (max-width: 425px) {
    aside {
        width: 280px;
    }
}

aside .nav {
    display: none;
}

@media (max-width: 1023px) {
    aside .nav {
        display: flex;
    }
}

aside .close {
    position: absolute;
    background: transparent;
    border: none;
    top: 20px;
    right: 10px;
    z-index: 15;
    cursor: pointer;
}

aside .close svg {
    width: 16px;
    height: 16px;
}

.filter {
    border-bottom: 2px solid rgba(196, 196, 196, 0.1);
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.filter .title {
    padding: 0 50px 0 20px;
    font-weight: 700;
    font-size: 16px;
    color: #272727;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    transition: color .3s;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .filter .title:hover {
        color: #D200A4;
    }

    .filter .title:hover svg {
        fill: #D200A4;
    }
}

.filter .title svg {
    width: 16px;
    height: 9px;
    fill: #272727;
    transition: fill .3s, transform .3s;
    transform: rotate(0deg);
}

.filter .title.active {
    color: #D200A4;
}

.filter .title.active svg {
    fill: #D200A4;
    transform: rotate(180deg);
}

.filter .list {
    padding: 0 50px;
    display: none;
}

.filter .list a {
    display: block;
    font-size: 14px;
    color: #272727;
    margin-bottom: 5px;
}

@media (min-width: 1025px) {
    .filter .list a:hover {
        color: #D200A4;
    }
}

.filter .list a span {
    margin-left: 4px;
}

.btn-holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.btn-holder .show-more {
    color: #D200A4;
    font-weight: 400;
    font-size: 14px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    padding: 4px 8px;
    transition: background .3s, color .3s;
    border: 2px solid #D200A4;
    display: block;
}

@media (min-width: 1025px) {
    .btn-holder .show-more:hover {
        color: #ffffff;
        background: linear-gradient(180deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
    }
}

.tags-inner {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tags-inner .title {
    color: #272727;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.tags-inner .tag {
    color: #272727;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    border-radius: 5px;
    padding: 2px 6px;
    margin: 4px;
    display: block;
    position: relative;
    transition: background-color .3s, color .3s;
}

@media (min-width: 1025px) {
    .tags-inner .tag:hover {
        background: linear-gradient(0deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
        color: #ffffff;
    }
}

.tags-inner .tag::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(0deg, #7600D2, #D200A4);
    border-radius: 6px;
    z-index: -1;
}

.heading {
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .heading {
        margin-bottom: 10px;
    }
}

.heading .title {
    font-size: 18px;
    font-weight: 700;
    color: #D200A4;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.heading .title .girl-item {
    width: 19px;
    height: 19px;
    fill: #D200A4;
    margin-right: 5px;
}

@media (max-width: 1023px) {
    .heading .title .girl-item {
        visibility: visible;
    }
}

.heading .title span {
    font-weight: 400;
    font-size: 18px;
    color: #272727;
    margin-left: 5px;
}

.heading .title .text.second {
    margin-left: 0;
    font-weight: 700;
    color: #D200A4;
}

.heading.second .title {
    font-size: 24px;
}

.thumbs-holder {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.thumb {
    width: 20%;
    padding: 5px;
    margin-bottom: 25px;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .thumb {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .thumb {
        width: 33.33%;
    }
}

@media (max-width: 600px) {
    .thumb {
        width: 50%;
        margin-bottom: 5px;
    }
}

@media (max-width: 375px) {
    .thumb {
        width: 100%;
    }
}

.thumb a {
    display: block;
}

@media (min-width: 1025px) {
    .thumb a:hover .tip {
        color: #ffffff;
        background: linear-gradient(180deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
    }
}

.thumb .img {
    position: relative;
    padding-bottom: 57%;
}

.thumb .img img {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    /* height: 100%; */
    margin: 0 auto;
    min-height: calc(12vw);
}

.thumb .img .tip {
    color: #D200A4;
    font-weight: 400;
    font-size: 14px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    padding: 4px 8px;
    position: absolute;
    left: 5px;
    bottom: 5px;
    transition: background .3s, color .3s;
    border: 2px solid #D200A4;
}

@media (max-width: 1023px) {
    .thumb .img img {
        min-height: calc(14vw);
    }
}

@media (max-width: 768px) {
    .thumb .img img {
        min-height: calc(19vw);
    }
}

@media (max-width: 600px) {
    .thumb .img .tip {
        left: 4px;
        bottom: 4px;
    }
    .thumb .img img {
        min-height: calc(27vw);
    }
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination .item {
    position: relative;
    background: #ffffff;
    margin: 5px;
    cursor: pointer;
    padding: 5px 9px;
    border-radius: 4px;
    transition: background-color .3s;
}

.pagination .item::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(35deg, #7600D2, #D200A4);
    border-radius: 6px;
    z-index: -1;
}

@media (min-width: 1025px) {
    .pagination .item:hover {
        background: linear-gradient(180deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
    }

    .pagination .item:hover a {
        color: #ffffff;
    }

    .pagination .item:hover a svg {
        fill: #ffffff;
    }
}

.pagination .item.active {
    background: linear-gradient(180deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
}

.pagination .item.active a {
    color: #ffffff;
}

.pagination .item.active a svg {
    fill: #ffffff;
}

@media (max-width: 575px) {
    .pagination .item.active {
        display: block;
    }
    .pagination .item {
        display: none;
    }
    .pagination .next,
    .pagination .prev {
        display: flex;
    }
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272727;
    font-weight: 700;
    font-size: 14px;
    transition: color .3s;
}

.pagination a svg {
    width: 13px;
    height: 13px;
    transition: fill .3s;
}

.pagination .next,
.pagination .prev {
    width: 25px;
    height: 27px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.description {
    font-weight: normal;
    font-size: 14px;
    color: #272727;
    line-height: 19px;
}

.description .text {
    margin-bottom: 40px;
}

.description .text:last-child {
    margin-bottom: 0;
}

footer {
    background: linear-gradient(90.7deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    /* White */
    color: #FFFFFF;
}

.footer-inner .logo {
    margin-left: 0;
    margin-bottom: 30px;
}

.footer-link a {
    color: #ffffff;
}

.video-inner {
    display: flex;
    justify-content: center;
}

.video-holder {
    width: calc(84% - 386px);
}

.model-info {
    margin-left: 10px;
    width: 368px;
    box-shadow: 1px 4px 10px rgba(148, 148, 148, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 30px;
}

@media (max-width: 1180px) {
    .model-info {
        margin-left: 0;
        width: 100%;
    }
    .video-holder {
        width: 100%;
        margin-bottom: 10px;
    }
    .video-inner {
        flex-direction: column;
    }
}

.video-heading {
    background: #00FF19;
    font-weight: 600;
    font-size: 24px;
    color: #272727;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 5px;
    transition: color .3s;
}

@media (min-width: 1025px) {
    .video-heading:hover {
        color: #D102A5;
    }
}

.video-heading svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.ifr-holder {
    position: relative;
    padding-bottom: 53%;
}

.ifr-holder .item {
    position: absolute;
}

.ifr-holder .title-item {
    font-weight: 600;
    font-size: 18px;
    color: #D200A4;
    top: 30px;
    left: 38px;
}

.ifr-holder .online-item {
    display: flex;
    align-items: center;
    border: 1px solid #D200A4;
    font-weight: 600;
    font-size: 14px;
    color: #D200A4;
    border-radius: 5px;
    padding: 5px 8px;
    left: 38px;
    top: 65px;
}


.ifr-holder .online-item .dot {
    background: #00FF19;
    z-index: 5;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin-right: 3px;
}

.ifr-holder .volume-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #D200A4;
    background: #ffffff;
    top: 30px;
    right: 30px;
}

@media (max-width: 600px) {
    .ifr-holder .volume-item {
        right: 10px;
        top: 10px;
    }
    .ifr-holder .online-item {
        left: 10px;
        top: 40px;
    }
    .ifr-holder .title-item {
        left: 10px;
        top: 10px;
    }
    .video-heading {
        font-size: 16px;
    }
}

.ifr-holder .volume-item svg {
    width: 21px;
    height: 21px;
}

.ifr-holder iframe {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.model-holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 27px;
}

.model-holder .title {
    font-weight: 600;
    font-size: 18px;
    color: #D102A5;
    text-align: center;
    margin-bottom: 28px;
}

.model-holder .title svg {
    width: 14px;
    height: 14px;
}

.model-holder .sub-title {
    font-weight: 600;
    font-size: 14px;
    color: #272727;
    margin-bottom: 10px;
}

.model-holder .avatar-holder {
    position: relative;
    margin-bottom: 15px;
}

.model-holder .avatar-holder.active:before {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 15px;
    background: #00FF19;
    z-index: 5;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.model-holder .avatar {
    width: 113px;
    height: 113px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 1px solid #D102A5;
}

.model-holder .avatar img {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.model-holder .online {
    font-size: 12px;
    line-height: 16px;
    color: #272727;
    margin-bottom: 20px;
}

.model-holder .model-desc {
    font-size: 14px;
    color: #272727;
    text-align: center;
    line-height: 22px;
}

.info-holder {
    width: 100%;
}

.info-holder .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 2px solid rgba(196, 196, 196, 0.1);
    padding: 2px 0;
}

.info-holder .row .title {
    font-weight: 600;
    font-size: 14px;
    color: #272727;
    margin-right: 30px;
}

.info-holder .row .row-item {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    padding: 5px 8px;
    display: block;
    font-size: 14px;
    color: #272727;
    transition: background .3s, color .3s;
    margin: 5px;
}

@media (min-width: 1025px) {
    .info-holder .row .row-item:hover {
        background: linear-gradient(0deg, #D200A4 0%, rgba(118, 0, 210, 0.5) 100%);
        color: #ffffff;
    }
}

.info-holder .row .row-item::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(35deg, #7600D2, #D200A4);
    border-radius: 6px;
    z-index: -1;
}