.girl-header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

video.main-image {
    width: 100%;
}
.verification_header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.neighbour_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    width: max-content;
}

.neighbour_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: 60px;
    padding: 0 20px;
    border-radius: 100px;
    width: max-content;
    text-decoration: none;
    cursor: pointer;
}

.neighbour_btn::before {
    border-radius: 100px;
}

.neighbour_btn p {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0;
    position: relative;
    z-index: 3;
}

.neighbour_btn:hover {
    background: var(--main);
}

.neighbour_btn:hover p {
    background: linear-gradient(157.73deg, #FFFBFB 0%, #F9CAB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.neighbour_btn.prev {
    flex-flow: row-reverse;
}

.neighbour_btn img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 3;
}

.neighbour_btn.prev img {
    transform: rotate(90deg);
}

.neighbour_btn.next img {
    transform: rotate(-90deg);
}

.girl-name {
    margin: 0;
}

.girl-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.model-gallery-section {
    width: 100%;
    max-width: 320px;
    flex: 0 0 320px;
    display: flex;
    flex-flow: column;
}

.slider {
    width: 320px;
    margin: 0 auto;
    font-family: sans-serif;
    display: flex;
    flex-flow: column;
    margin-bottom: 30px;
}

.slider-main {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;

}

.slider-main img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.slider .slider-track {
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    width: 100%;
    transition: transform 350ms ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex: 0 0 calc((100% - 60px) / 4) !important;

}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    pointer-events: none;
    -webkit-user-drag: none;
}

.slide video {
    pointer-events: auto;
}

.model-gallery-section .arrow {
    position: absolute;
    bottom: 20px;
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 7;
}

.model-gallery-section .arrow::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.model-gallery-section .arrow img {
    position: relative;
    z-index: 3;
    width: 24px;
    height: 24px;
}

.model-gallery-section .arrow:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.model-gallery-section .arrow.prev:hover img {
    transform: rotate(180deg);
}

.model-gallery-section .arrow.next:hover img {
    transform: rotate(0);
}

.model-gallery-section .arrow.prev {
    left: 20px;
}

.model-gallery-section .arrow.next {
    right: 20px;
}

.slider-drag-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
    cursor: grab;
    pointer-events: none;
}

.thumb {
    border-radius: 24px;
    overflow: hidden;
}

.thumbs-wrapper {
    margin-top: 10px;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    /* scrollbar-color: #171502 #EFA75E; */
}



.thumbs-wrapper::-webkit-scrollbar {
    height: 10px;
    border-radius: 10px;
}

.thumbs-wrapper::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    border-radius: 10px;
}

.thumbs-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    border-radius: 10px;
}

.thumbs-wrapper::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}


.thumbs-track {
    display: flex;
    gap: 8px;
    width: max-content;
}

.thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 24px;
    cursor: pointer;
    transition: 0.25s;
    flex-shrink: 0;

    position: relative;
    border-radius: 24px;
}

.thumb-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.thumb::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: rgba(23, 21, 2, 0.44);
    z-index: 1;
}

.thumb:hover::before,
.thumb.active::before {
    display: none;
}

.thumb.active {
    opacity: 1;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-flow: column;
}

.verified-section {
    padding: 20px;
    border-radius: 24px;
}

.verified-btn {
    width: 40px;
    height: 40px;
}

.verified-section h2 {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    color: #FFFFFF;
    width: fit-content;
    margin: 0;
}

.verified-description {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.verified-description p {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.verified-description p span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/*Girl content*/
.girl-contacts {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin-bottom: 20px;
}

.girl-contacts__item {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    color: #FFFFFF;
}

.booking-link {
    text-decoration: none;
    cursor: pointer;
    padding: 5px 40px;
    height: 60px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    transition: background 0.3s;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-link span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.content-wrapper {
    margin-bottom: 70px;
}

.main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.main-content::before {
    display: block;
    display: block;
    content: '';
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    width: 250px;
    height: 250px;
    right: 50px;
    top: 75px;
    border-radius: 50%;
    position: absolute;
}

.main-content::after {
    display: block;
    display: block;
    content: '';
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    width: 250px;
    height: 250px;
    left: 50px;
    bottom: 10px;
    border-radius: 50%;
    position: absolute;
}

.model-prices-container {
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.model-prices-header {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.model-prices-container::before {
    border-radius: 24px;
}

.model-prices-container .tabs-content {
    width: 100%;
}

.tabs-nav {
    margin-bottom: 0;
}

.tab-btn {
    border-radius: 50px;
    height: 50px;
    padding: 0 20px;
}

.tab-btn.active span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tab-btn span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
}

.prices-title,
.parameters-title,
.services-title,
.locations-title {
    margin: 0;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    color: #FFFFFF;
}

.model-prices-list {
    width: 100%;
}

.prices-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 11px;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.prices-list__item {
    flex: 0 0 auto;
    width: max-content;
}

.prices-list__item-wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 5px;

}

.prices-list__item-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.prices-list__item-value {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    height: 50px;
    gap: 5px;
}

.prices-list__item-value {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
}

.prices-list__item-value sup {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.74);
}

.parameters-section {
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    z-index: 1;
}

.data-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, 240px));
    gap: 10px 50px;
    width: 100%;
}

.model-data {
    display: flex;
    flex-flow: row;
    align-items: center;
}

.model-data__link {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 7px;
}

.data-link__title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
}

div .data-link__value {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

a .data-link__value {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

a.model-data__link .data-link__value:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.model-services {
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    z-index: 1;
}

.model-services>* {
    position: relative;
    z-index: 3;
}

.model-services-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 11px;
    list-style-type: none;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.model-services-list__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.service_without_link,
.model-services-list__item a,
.model-services-list__item div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    height: 50px;
    gap: 5px;
    flex: 0 0 auto;
    width: max-content;
    cursor: pointer;
}

.service_without_link {
    cursor: auto;
}

.model-services-list__item a span,
.model-services-list__item div {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.model-services-list__item a:hover span,
.model-services-list__item div:hover {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.model-services .collapse-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.parameters-section .collapse-toggle-btn {
    background: rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.collapse-toggle-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px;
    gap: 5px;
    height: 40px;
    width: 100%;
    max-width: 290px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.74);
    border-radius: 14px;
    border: none;
    outline: none;
    margin: 0 auto;
    cursor: pointer;
}

.collapse-toggle-btn::before {
    border-radius: 14px;
}

.model-locations {
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 1;
}

.model-locations-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.model-locations-list__item {
    position: relative;
    flex: 0 0 auto;
    width: max-content;
}

.model-locations-list__item::after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 0.6;
    position: absolute;
    bottom: 0;
    left: 0;
}

.model-locations-list__item:hover::after {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 1;
}

.model-locations-list__item a {
    text-decoration: none;
}

.model-locations-list__item a span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}


.model-locations-list__item:hover a span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.locations_without_link {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #ccc7c7;
}

/*About me*/
.about-me {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 70px;
}

.model-description {
    display: flex;
    flex-flow: column;
    gap: 10px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 0 0;
}

.model-description-title {
    margin: 0 auto 10px 0;
}

.model-description p {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0;
}

.content-container {
    display: flex;
    flex-flow: column;
}

/*Reviews*/
.reviews {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 70px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
}

.reviews-title {
    margin: 0;
}

.reviews-header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.create-review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    gap: 10px;
    width: max-content;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    cursor: pointer;
}

.create-review span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.reviews-content-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.reviews-content-wrapper::before {
    display: block;
    content: '';
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    opacity: 14%;
    width: 250px;
    height: 250px;
    right: 50px;
    top: 40px;
    border-radius: 50%;
    position: absolute;
}

.reviews-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    padding: 20px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    gap: 10px;
}

.reviews-model__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.reviews-model__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

.reviews-item::before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 24px;
}

.reviews-item:hover .reviews-model__name {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.reviews-model,
.reviews-item__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.reviews-model {
    flex: 0 0 120px;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.reviews-model__name {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.review-header {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    width: 100%;
    gap: 15px;
}

.reviews-item__date {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: right;
    color: rgba(255, 255, 255, 0.74);
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-header__author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
    max-width: max-content;
    gap: 20px;
}

.review-header__author-name {
    display: flex;
    flex-flow: row;
    max-width: max-content;
    margin: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    color: rgba(255, 255, 255, 0.74);
}

.review-item__rating {
    display: flex;
    flex-flow: row;
    align-items: center;
    max-width: max-content;
    padding: 10px;
    gap: 5px;
    height: 38px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.reviews-item__info {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.no-reviews {
    background: transparent;
}

.review-errors-list ul {
    margin: 0;
}

.review-errors-list ul li {
    color: #cc1313;
}

.reviews>* {
    position: relative;
    z-index: 3;
}

.reviews-content {
    display: flex;
    flex-flow: column;
    gap: 30px;
    width: 100%;
}

.star-icon {
    user-select: none;
    width: 24px;
    height: 24px;
    display: inline-block;
    font-size: inherit;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.star-icon.filled {
    user-select: none;
    width: 24px;
    height: 24px;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: inherit;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: rgba(239, 167, 94, 1);
    stroke: rgba(239, 167, 94, 1);
}

#reviewModal h2 {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 56px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
}

#reviewModal .modal-content {
    padding: 50px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
    backdrop-filter: blur(20px);
}

.star-icon.outline {}

.star {
    width: 24px;
    height: 24px;
    background-image: url('../../images/front/star-empty.svg');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: filter .15s ease;
}

.star.filled {
    background-image: url('../../images/front/star-filled.svg');
}

.rating-stars {
    display: flex;
    gap: 6px;
}

.review-fields {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 100%;
    gap: 20px;
}

.review-fields .input-group {
    flex: 0 0 calc(50% - 12px);
    position: relative;
}

.review-fields .input-group.firstname img {
    position: absolute;
    top: 18px;
    right: 24px;
}

.review-fields input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 1);
}

.review-fields input::placeholder {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.74);
}

.review-fields input:focus,
.review-fields input:active,
.review-fields input:visited {
    outline: none;
    border: none;
}

.custom-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    isolation: isolate;
    height: 60px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    flex: 0 0 calc(50% - 12px);
}

.input-group.message {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
    position: relative;
}

.input-group.message img {
    position: absolute;
    top: 26px;
    right: 26px;
}

.input-group textarea {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.74);
}

.rating-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.74);
}

.send-review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 40px;
    gap: 10px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 10px auto 0 auto;
}

.send-review span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/*Recommended girls*/
.recommended-girls {
    width: 100%;
    max-width: 100%;
    margin-bottom: 70px;
}

.recommended-girls .slick-track{
    display: flex;
}
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.recommended-girls-title {
    margin: 0 0;
}

.slick-slide::before,
.girl-card::before {
    display: none !important;
}

.custom-slider {
    position: relative;
    max-width: 1300px;
    margin: 40px auto 70px auto;
}

.slider-wrapper {
    width: 100%;
}

/* .slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slider-track,
.slider-track * {
    user-select: none;
}

/* .slider-track img {
    pointer-events: none;
} */
*/ .girl-reviews .slider-wrapper {
    gap: 20px;
}

.slide,
.girl-card {
    box-sizing: border-box;
    overflow: hidden;
}

.reviews-item__content.slide {
    flex: 1 1 100% !important;
}

.post-info {
    padding: 10px;
}

.slider-arrow {
    position: absolute;
    top: -103px;
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 10;
    transition: background 0.3s;
    border: none;
    outline: none;
}

.slick-arrow {
    position: absolute;
    top: -100px;
    background: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border: none;
    outline: none;
}

.slider-arrow:focus,
.slider-arrow:active {
    outline: none;
    border: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slider-arrow.prev,
.slick-arrow.prev {
    right: 70px;
}

.slider-arrow.next,
.slick-arrow.next {
    right: 0;
}

.slider-arrow.prev img,
.slick-arrow.prev img {
    transform: rotate(90deg);
}

.slider-arrow.next img,
.slick-arrow.next img {
    transform: rotate(-90deg);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots button.active {
    background: #333;
}


.recommended-girls-list{
    margin-top: 40px;
}


@media (max-width: 1200px) {
    .data-wrapper {
        column-gap: 20px;
    }
}
@media (max-width: 1140px) {
    .model-gallery-section {
        max-width: 100%;
        flex: 1;
    }
    .custom-slider {
        margin: 30px auto 50px auto;
    }

    .slider {
        flex-flow: row;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
        gap: 10px;
    }

    .slider-main {
        width: 320px;
        flex: 0 0 auto;
    }

    .thumbs-track {
        flex-flow: column;
        max-height: 480px;

    }


    .thumbs-track::-webkit-scrollbar {
        display: none;
    }

    .thumbs-wrapper {
        margin-top: 0;
        flex: 0 0 auto;
        max-width: 100px;
    }
}

@media (max-width: 1100px) {
    .girl-contacts {
        gap: 30px;
    }

    .custom-slider .slide {
        flex: 0 0 calc((100% - 40px) / 3) !important;
        max-width: calc(100% - 40px);
    }

    .data-wrapper {
        column-gap: 30px;
        grid-template-columns: repeat(2, minmax(auto, calc(50% - 15px)));
    }

    .slider-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    h2.page-title {
        font-size: 44px;
        line-height: 56px;
    }

    .girl-name {
        font-size: 44px;
        line-height: 56px;
    }

    .slider-arrow {
        top: -93px;
    }

    .recommended-girls {
        margin-bottom: 50px;
    }

    .content-wrapper {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .girl-content {
        flex-flow: column;
        align-items: center;
    }

    
}

@media (max-width: 900px) {
    .custom-slider .slide {
        flex: 0 0 calc((100% - 20px) / 2) !important;
    }

    /* .slider-track {
        display: flex !important;
        flex-flow: column;
        align-items: center;
    } */

    .slick-list {
        width: 100%;
        max-width: 640px;
        margin: 0 auto !important;
    }

    .verified-description {
        align-items: center;
    }

    .prices-list {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 768px) {


    .content-wrapper,
    .about-me,
    .reviews {
        margin-bottom: 50px;
    }

    

    .recommended-girls {
        margin-bottom: 40px;
    }

    #reviewModal .modal-content {
        padding: 30px;
    }
    .about-me-content .toggle-info-btn {
        background: transparent;
        border: none;
        box-shadow: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: max-content;
        margin: 0 auto;
        cursor: pointer;
        position: absolute;
        bottom: 15px;
        z-index: 3;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-main);
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 24px;
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .about-me-content .toggle:hover,
    .about-me-content .toggle-info-btn:focus,
    .about-me-content .toggle-info-btn:active,
    .about-me-content .toggle-info-btn:visited {
        box-shadow: none;
        overlay: none;
    }
    .slick-list {
        max-width: 340px;
    }
}

@media (max-width: 700px) {
    .girl-contacts__item span {
        display: none;
    }

    .girl-contacts {
        gap: 10px;
    }
}

@media (max-width: 650px) {
    

    .slider-arrow,
    .slick-arrow {
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .data-wrapper {
        grid-template-columns: 1fr;
    }

    .slider-arrow.next,
    .slick-arrow.next {
        right: -15px;
    }

    .reviews-content-wrapper::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main-content::before {
        right: 50%;
        top: 18%;
        transform: translateX(50%);
    }

    .main-content::after {
        left: 50%;
        bottom: 100px;
        transform: translateX(-50%);
    }

    .slider-arrow.prev,
    .slick-arrow.prev {
        right: auto;
        left: -15px;
    }

    .girl-contacts.mobile .girl-contacts__item .circle-btn {
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
        box-shadow: 0px 0px 10px 0px rgba(234, 223, 130, 0.34) inset;
        backdrop-filter: blur(20px);
    }

    .prices-list {
        grid-template-columns: repeat(3, auto);
    }

    .content-container {
        padding-inline: 0;
    }

    .about-me,
    .recommended-girls {
        padding-inline: 15px;
    }

    .reviews {
        padding: 20px 15px;
    }

    .circle-btn {
        height: 40px;
    }

    .booking-link {
        height: 40px;
    }
}

@media (max-width: 600px) {

    .review-fields .input-group,
    .custom-rating {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .neighbour_wrapper {
        flex-shrink: 1;
    }

    .girl-header {
        gap: 10px;
        margin: 10px 0;
    }

    .slider-main {
        width: 260px;
        height: 400px;
    }

    .thumb {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .thumbs-wrapper {
        max-width: 310px;
        width: 100%;

    }

    h2.page-title,
    .girl-name,
    #reviewModal h2 {
        font-size: 32px;
        line-height: 48px;
    }

    .slider {
        flex-flow: column;
        align-items: center;
    }

    .thumbs-track {
        flex-flow: row;
        flex: 0 0 auto;
    }

    .girl-content {
        gap: 10px;
    }

    .girl-contacts {
        margin-bottom: 10px;
    }

    .model-prices-container,
    .parameters-section,
    .model-services,
    .model-locations {
        margin-bottom: 10px;
    }

    .girl-contacts__item .circle-btn {
        width: 100%;
        border-radius: 35px;
    }

    #reviewModal h2 {
        margin-bottom: 20px;
    }

    .neighbour_wrapper {
        width: 100%;
        gap: 0px;
    }

    .neighbour_btn {
        height: 40px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 calc(50% - 5px);
        justify-content: center;
        padding: 0 10px;
    }

    .prices-title,
    .parameters-title,
    .services-title,
    .locations-title {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        width: 100%;
    }

    .model-prices-header {
        flex-flow: column;
        gap: 15px;
    }

    .tabs-nav {
        width: 100%;
        justify-content: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 100%;
        flex: 0 0 calc(50% - 5px);
        justify-content: center;
    }

    .custom-slider .slide {
        max-width: 310px;
    }

    .slider-wrapper {
        width: 100%;
        max-width: 310px;
    }

    .prices-list {
        grid-template-columns: repeat(2, auto);
    }

    .model-prices-container,
    .parameters-section,
    .model-services,
    .model-locations {
        padding: 15px;
    }

    .content-wrapper {
        margin-bottom: 30px;
    }

    .about-me,
    .reviews {
        margin-bottom: 40px;
    }

    .about-me-content {
        display: flex;
        flex-flow: column;
        position: relative;
        margin-bottom: 40px;
    }

    .service-container {
        position: relative;
        overflow: hidden;
        max-height: 350px;
        transition: max-height 1s ease;
    }

    .about-me {
        max-height: 350px;
        overflow: hidden;
    }

    .js-collapse {
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .js-collapse.collapsed {
        position: relative;
    }

    .js-collapse.expanded {}

    .about-me-content.open .about-me {
        max-height: 5000px;
        transition: max-height .4s ease;
    }

    


    .about-me-content .overlay {
        width: 100%;
        max-width: calc(100% - 10px);
        height: 60%;
        box-shadow: inset 0px -20px 91px 0px rgba(0, 0, 0, 1);
        position: absolute;
        z-index: 99;
        display: block;
        left: 5px;
        top: auto;
        bottom: 5px;
        z-index: 1;
    }

    .create-review {
        margin-top: 10px;
    }

    .reviews-content-wrapper::before {
        display: none;
    }

    .reviews::before {
        display: block;
        content: '';
        background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
        opacity: 14%;
        width: 150px;
        height: 150px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        position: absolute;
    }

    .reviews-header {
        flex-flow: column;
    }

    #reviewModal .modal-content {
        padding: 20px;
    }

    .send-review {
        margin-top: 0;
    }

    .reviews-title {
        width: 100%;
        text-align: left;
    }

    .custom-slider {
        margin: 20px auto 40px auto;
    }

    .girl-name.page-title.mobile {
        margin: 0 !important;
    }
     .girl-contacts {
        flex-flow: row wrap;
    }
    .girl-contacts__item {
        flex: 0 0 calc(50% - 5px);
    }
    .booking-link {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 475px) {
    .create-review {
        width: 100%;
        max-width: 100%;
    }

   

    

    

    .modal-close {
        width: 40px !important;
        height: 40px !important;
    }

    .review-header {
        flex-wrap: wrap;
    }

}









.girls-list {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.girl-card {
    max-width: 310px;
    height: 460px;
    width: 100%;
    flex: 1 1 calc(25% - 15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    border-radius: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.girl-card::before {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 0;
}

.girl-card a {
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 24px;
}

.girl-thumb {
    width: 100%;
    height: 100%;
    margin: 0 0;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.girl-thumb img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 24px;

}

.left-card-btns {
    display: flex;
    flex-flow: column;
    gap: 10px;
    position: absolute;
    left: 15px;
    top: 15px;
}

.left-card-btns .circle-btn,
.right-card-btns .circle-btn {
    background: rgba(0, 0, 0, 0.24);
}

.right-card-btns {
    display: flex;
    flex-flow: column;
    gap: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.girl-card:hover .girl-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
}

.girl-card-wrapper {
    display: flex;
    width: 100%;
    height: 460px;
    z-index: 1;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.girl-card:hover .girl-card-wrapper {
    width: 100%;
    padding: 0;
}

.girl-card-img-holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.girl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.2s ease-in-out;
}

.girl-info {
    position: absolute;
    left: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    bottom: 25px;
    padding-inline: 10px;
    width: calc(100% - 10px);
}

.girl-card-data {
    display: flex;
    justify-content: center;
    padding: 0 25px;
}

.girl-info__title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.girl-card-name {
    flex: 1;
    text-align: center;
    padding: 5px 30px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 100px;
}

.girl-card-name span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
}

.girl-card:hover .girl-card-name span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.girl-card:hover .favorite {
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 35px;
}

.girl-card:hover .girl-thumb {
    margin: 0;
}

.favorite {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 35px;
}

.girl-card .favorite:hover,
.girl-card .favorite.active {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
}

.favorite.active img {
    transform: rotate(45deg);
}

.girl-card-model-icons {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 10px;
}

.girl-card-model-icon {
    flex: 1 1 32%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 20px 0 rgba(205, 52, 51, 0.5);
    background: var(--acsent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.girl-card-model-icon-img {
    width: 30px;
    height: 30px;
}

.girl-card-container:hover .girl-card-img {
    transform: scale(1.2) translateY(5%);
}

.girl-card-container:hover .girl-card-name {
    color: var(--acsent);
}

.girl-card-container:hover {
    background-color: #000;
}

.girl-card-container:hover .girl-card-img-wrapper {
    padding: 0;
}

.girl-card-container:hover .girl-card-img-holder {
    border-radius: 0;
}

@media screen and (max-width: 1224px) {
    .girl-card-container {
        max-width: 451px;
        min-width: 315px;
    }

    .girl-card-img-wrapper {
        padding: 20px 20px 0;
        height: 343px;
        margin-bottom: 15px;
    }

    .girl-card-data {
        padding: 0 20px;
    }

    .girl-card-model-icons {
        padding: 0 20px 20px 20px;
    }
}


@media screen and (max-width: 1024px) {
    .girl-card-container {
        max-width: 354px;
        min-width: 290px;
    }

    .girl-card {
        height: auto;
        max-height: 526px;
    }

    .girl-card-img-wrapper {
        height: 392px;
    }

    .girl-card-name,
    .girl-card-price {
        font-size: 24px;
    }

    .girl-card-info {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {

    .girls-list,
    .slider-wrapper {
        flex-wrap: nowrap;
    }

    .girl-card {
        flex: 1 1 49%;
        max-width: 354px;
        height: 526px;
    }

    .girl-slider-wrapper,
    .slider-wrapper {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .girl-slide {
        flex: 0 0 320px !important;
        max-width: calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
        box-sizing: border-box;
        transition: transform .55s cubic-bezier(.4, .0, .2, 1);
        will-change: transform;
        gap: 10px;
        height: 461px;
    }

    .slider-progress-bars {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 0;
        margin-top: 15px;
    }

    .slider-mobile {
        overflow: hidden;
    }

    .slider-mobile a,
    .slider-mobile img {
        -webkit-user-drag: none;
        user-drag: none;
        touch-action: pan-y;
    }

    .slider-wrapper {
        touch-action: pan-y;
    }


    .slider-progress-segment {
        width: 20px;
        height: 3px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        overflow: hidden;
    }

    .slider-progress-segment.active {
        width: 32px;
        background: rgba(255, 255, 255, 0.6);
    }

    .slider-progress-fill {
        width: 0;
        height: 100%;
        background: #EFA75E;
        transition: width 5s linear;
    }
}

@media (max-width: 350px){
     .girl-header {
        flex-direction: column-reverse;
        align-items: center;
    }
}
