p {
  margin: 0;
}

.header-logo img {
  max-width: 124px;
}

h2 {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 5px;
}

.lang {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 4px;
  grid-gap: 10px;
  transition: 0.4s linear;
}
.lang a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #D0D0D0;
}
.lang a :hover {
  color: #7E3A81;
  font-weight: bold;
}
.lang .active {
  font-weight: bold;
  color: #7E3A81;
}

.navbar-toggler,
.navbar {
  border: none;
  outline: none !important;
  padding: 0px;
}

.navbar-collapse {
  background-color: #FAF9FC;
  padding-bottom: 35px;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 9;
}

.navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
  background: url("/img/hamburger-open.svg") center center/contain no-repeat;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: url("/img/hamburger-close.svg") center center/contain no-repeat;
}

.navbar-nav {
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.navbar-nav .nav-link {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #0D0D0D !important;
  line-height: 1.4;
  padding: 10px 0;
  transition: 0.4s linear;
}
.navbar-nav .nav-link :hover {
  text-decoration: underline;
}

.link-btn {
  display: flex;
  justify-content: center;
}
.link-btn a {
  padding: 6px 18px;
  border-radius: 10px;
  color: #0D0D0D;
  border: 1px solid #7E3A81;
  transition: 0.4s linear;
  text-decoration: none;
  margin-bottom: 25px;
  margin-top: 30px;
}
.link-btn a:hover {
  background-color: rgba(126, 58, 129, 0.1);
}
.link-btn a:active {
  color: #fff;
  background-color: #7E3A81;
}

.contacts {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  margin-right: 16px;
  color: #0D0D0D;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  
}

.social-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  transition: 0.4s linear;
  text-decoration: none !important;
}
.social-icon:hover {
  opacity: 0.7;
}

.whatsapp {
  background: #7E3A81 url("../img/whatsapp.svg") center center/18px no-repeat;
}

.telegram {
  margin-left: 8px;
  background: #7E3A81 url("../img/telegram.svg") center center/17.3px 14.6px no-repeat;
}

.banner {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background: #E4E4E4 url("../img/background.jpg") center center/cover no-repeat;
}

.filter-form p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #0D0D0D;
  margin: 0;
}
.filter-form button {
  display: block;
  margin: auto;
  border: none;
  margin-top: 30px;
  border-radius: 10px;
  padding: 16px 32px;
  background-color: #7E3A81;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  transition: 0.4s linear;
}
.filter-form button:hover {
  background-color: #5F2661;
}
.filter-form button:active {
  background-color: #A657AA;
}

.group-input {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  align-items: center;
}
.group-input span {
  font-size: 12px;
  margin: 0 10px;
  text-align: center;
}
.group-input input {
  color: #000;
  padding: 8px 0 8px 16px;
  border: none;
  width: 50%;
  outline: none;
  border-radius: 10px;
}
.group-input select {
  width: 130%;
  outline: none;
  border-radius: 10px;
  color: #000;
  padding: 8px 16px 8px 16px;
  border: none;
  position: relative;
}

.main-banner-wrp {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.main-banner .slick-slide {
  height: auto;
}

.main-banner img {
  width: 100%;
  height: 100%;
  /* max-height: 321px; */
  -o-object-fit: cover;
     object-fit: cover;
  
}

.main-banner-carousel-nav {
  position: absolute;
  width: 100%;
  display: flex;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.main-banner-carousel-nav button {
  pointer-events: all;
  outline: none;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: none;
  transition: 0.4s linear;
  content: "";
}
.main-banner-carousel-nav button.owl-prev {
  margin-left: -15px;
}
.main-banner-carousel-nav button.owl-prev span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img/arrow-left.svg") center center/7px 15px no-repeat;
}
.main-banner-carousel-nav button.owl-next {
  margin-right: -15px;
}
.main-banner-carousel-nav button.owl-next span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/img/arrow-right.svg") center center/7px 15px no-repeat;
}

h1 {
  color: #0D0D0D;
  font-size: 24px;
  font-family: "PTSerif";
  font-weight: normal;
  text-align: center;
}

section.container-fluid {
  padding-bottom: 40px;
}

.girls-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.girls-item-imgs .owl-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 9;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 6px;
}

.girls-item-imgs .owl-dots button {
  height: 15px;
  width: 20%;
  outline: 0 !important;
}

.girls-item-imgs .owl-dots button span {
  display: block;
  height: 2px;
  width: auto;
  background-color: #fff;
  opacity: 0.3;
}

.girls-item-imgs .owl-dots button.active span {
  background-color: #fff;
  opacity: 1;
}

.girls-item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.girls-item a {
  position: relative;
  text-decoration: none !important;
}

.girls-item-tags {
  pointer-events: none;
  display: flex;
  gap: 2px;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  flex-wrap: wrap;
}
.girls-item-tags span {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.girls-item-tags div {
  display: flex;
  align-items: flex-end;
  border-radius: 5px;
  padding: 4px;
}
.girls-item-tags p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 9px;
  color: #fff;
  line-height: 1;
}

.girls-item-new {
  background-color: #A852AC;
}
.girls-item-new span {
  background: url("../img/new.svg") center center/contain no-repeat;
}

.girls-item-hit {
  background-color: #531D55;
}
.girls-item-hit span {
  background: url("../img/hit.svg") center center/contain no-repeat;
}

.girls-item-nobrush {
  background-color: #7E3A81;
}
.girls-item-nobrush span {
  background: url("../img/nobrush.svg") center center/contain no-repeat;
}

.girls-item-playvideo {
  background-color: #A852AC;
}
.girls-item-playvideo span {
  background: url("../img/playvideo.svg") center center/contain no-repeat;
}

.girls-item-media {
  position: relative;
  height: 52.7vw;
  width: 100%;
}

.girls-item-shadow {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 130px;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
}

.girls-item-imgs {
  position: relative;
  height: 100%;
  z-index: auto !important;
}
.girls-item-imgs .owl-stage-outer {
  height: 100%;
}

.girls-item-text {
  padding: 8px 13px 13px 13px;
  z-index: 2;
  pointer-events: none;
  position: absolute;
  width: 100%;
  color: #fff;
  bottom: 0;
}

.girls-item-station {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.girls-item-station span {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  background: url("../img/metro.svg") center center/contain no-repeat;
  margin-right: 8px;
}
.girls-item-station p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
}

.girls-item-name,
.girls-item-price {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
  text-align: left;
}

.girls-item-info {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px 20px;
}
.girls-item-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7E3A81;
  padding: 5px 0 5px 0;
  width: 100%;
}
.girls-item-phone a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}
.girls-item-info p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #0D0D0D;
}
.girls-item-info div {
  display: flex;
  align-items: center;
}
.girls-item-info span {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.girls-item-age span {
  background: url("../img/icon-calendar.svg") center center/contain no-repeat;
}

.girls-item-breast span {
  background: url("../img/icon-bra.svg") center center/contain no-repeat;
}

.girls-item-weight span {
  background: url("../img/icon-weight.svg") center center/contain no-repeat;
}

.girls-item-height span {
  background: url("../img/icon-height.svg") center center/contain no-repeat;
}

.bestgirls {
  padding-top: 40px;
  background: #E4E4E4 url("../img/background-bestwhores.jpg") center center/cover no-repeat;
}
.bestgirls h2 {
  color: #0D0D0D;
}
.bestgirls .girls-list .girls-item:nth-child(1),
.bestgirls .girls-list .girls-item:nth-child(3n+4) {
  grid-column: span 2;
}
.bestgirls .girls-list .girls-item:nth-child(1) .girls-item-price,
.bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-price {
  display: inline-block;
  float: right;
}
.bestgirls .girls-list .girls-item:nth-child(1) .girls-item-name,
.bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-name {
  display: inline-block;
  float: left;
}
.bestgirls .girls-list .girls-item:nth-child(1) .girls-item-info,
.bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-info {
  grid-template-columns: repeat(4, auto);
}

.blog-list {
  display: grid;
  grid-gap: 17px;
}
.blog-list a {
  text-decoration: none !important;
}

.mainpage-blog-item {
  width: 100%;
  height: 60.8vw;
  position: relative;
  overflow: hidden;
}
.mainpage-blog-item:hover img {
  transform: scale(1.2);
}
.mainpage-blog-item img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s linear;
}

.mainpage-blog-item-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.newgirls-row {
  padding-top: 40px;
}

.mainpage-blog-item-text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 10px 18px;
}
.mainpage-blog-item-text h3 {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  color: #fff;
}
.mainpage-blog-item-text p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #D0D0D0;
  margin: 8px 0;
}
.mainpage-blog-item-text a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #D0D0D0;
  text-decoration: underline;
}
.mainpage-blog-item-text a:hover {
  color: #fff;
}
.mainpage-blog-item-text span {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #D0D0D0;
  margin-left: auto;
}

section.blog-row {
  padding-top: 0;
  padding-bottom: 0;
}

section.seo-row {
  padding-bottom: 16px;
}

.seotext-wrp {
  background-color: #FAF9FC;
  padding: 16px;
  margin-bottom: 24px;
}
.seotext-wrp b {
  color: #5F2661;
}
.seotext-wrp h2 {
  margin-top: 25px !important;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.seotext-wrp p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 16px;
}
.seotext-wrp a {
  color: #5F2661;
}
footer {
  background-color: #EFEFEF;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.footer-top img {
  max-width: 148px;
}

.footer-nav {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-gap: 16px;
  margin-bottom: 0;
}
.footer-nav a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.4;
  color: #0D0D0D;
}

.footer-line {
  border: none;
  margin: 24px 0;
  height: 1px;
  background-color: #D0D0D0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  color: #0D0D0D;
}

.footer-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 32px;
}
.footer-info p {
  display: flex;
  align-items: center;
}
.adultonly {
  display: flex;
  align-items: center;
  width: 60%;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  margin-left: 15px;
}
.adultonly span {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin-right: 8px;
  background: url("../img/sex.svg") center center/contain no-repeat;
}

.ui-widget.ui-widget-content {
  border: none !important;
}

.ui-widget-content {
  background-color: #B5B5B5 !important;
  height: 2px;
}

.ui-slider-horizontal .ui-slider-range {
  background-color: #7E3A81 !important;
}

.ui-slider-handle {
  border-radius: 50%;
  background-color: #7E3A81 !important;
  border: none !important;
  width: 11px;
  height: 11px;
  top: -8px !important;
}

.main-banner-big {
  display: none;
}

.desk-only {
  display: none;
}

.paginator ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
  margin-top: 28px;
  margin-bottom: 0;
}
.paginator a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #000;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}
.paginator a.active {
  color: #fff;
  background-color: #7E3A81;
  font-weight: 600;
  font-size: 18px;
}

.filter-dropdown button {
  border: 1px solid #555555 !important;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #000 !important;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  padding-left: 24px;
  padding-right: 16px;
  outline: none !important;
  box-shadow: none !important;
}
.filter-dropdown button[aria-expanded=true] {
  background-color: #F2F2F2 !important;
  border: 1px solid #F2F2F2 !important;
}
.filter-dropdown button[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.filter-dropdown button::after {
  display: none;
}
.filter-dropdown .dropdown-menu {
  border-radius: 10px;
  border: none;
  padding: 16px 17px;
  background-color: #F2F2F2;
  margin-top: 8px;
}
.filter-dropdown .dropdown-item {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  padding: 0;
  text-align: center;
}

.girl-filter-form {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 30px;
  border: 1px solid #555555;
  padding: 0.375rem 16px;
  outline: none !important;
}
.girl-filter-form[aria-expanded=true] {
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
}
.girl-filter-form[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.girl-filter-form span {
  display: block;
  width: 16px;
  height: 16.38px;
  margin-right: 12px;
  background: url("../img/filter-icon.svg") center center/contain no-repeat;
}

.divider {
  margin: 15px 0;
  height: 1px;
  width: 100%;
  background-color: #E2E2E2;
}

.girls-filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
}

#filterGirlForm {
  position: absolute;
  width: 100vw;
  z-index: 9999;
  left: -20px;
  top: 50px;
  padding: 16px 20px;
  background-color: #F2F2F2;
}
#filterGirlForm .filter-form {
  margin-left: 0;
}
#filterGirlForm button {
  margin-top: 30px;
}

.reset-filters {
  display: block;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  margin-top: 16px;
  color: #000 !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

section.breadcrumbs {
  padding-bottom: 23px;
}
section.breadcrumbs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
section.breadcrumbs ul a {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  color: #555555 !important;
}

.anketa-maininfo {
  display: flex;
  flex-direction: column;
}

.anketa-vertical-banner {
  height: 100%;
  width: 62px;
  float: left;
  margin-right: 30px;
  overflow: hidden;
}
.anketa-vertical-banner .slick-slide {
  height: 93px;
  border-right: none;
  border-left: none;
  border-top: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid rgba(0, 0, 0, 0);
}
.anketa-vertical-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.anketa-horizontal-banner-carousel-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto 0;
  display: flex;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.anketa-horizontal-banner-carousel-nav button {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  pointer-events: all;
  padding: 0;
  outline: none !important;
}
.anketa-horizontal-banner-carousel-nav button.owl-prev {
  margin-left: -15px;
}
.anketa-horizontal-banner-carousel-nav button.owl-next {
  margin-right: -15px;
  transform: rotate(180deg);
}
.anketa-horizontal-banner-carousel-nav span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/anketa-arrow.png") center center/4px 8px no-repeat;
}

.anketa-horizontal-banner-wrp {
  height: 100%;
  min-height: 373px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.anketa-horizontal-banner {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.anketa-horizontal-banner img {
  width: 100%;
  height: 100%;
  min-height: 373px;
  max-height: 373px;
  -o-object-fit: cover;
     object-fit: cover;
}

.anketa-horizontal-tags {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  gap: 2px;
}
.anketa-horizontal-tags > div {
  display: flex;
  align-items: center;
  padding: 2.5px 4px;
  border-radius: 5px;
}
.anketa-horizontal-tags span {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.anketa-horizontal-tags p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  color: #fff;
}
.anketa-horizontal-tags .new {
  background-color: #A852AC;
}
.anketa-horizontal-tags .new span {
  background: url("../img/new.svg") center center/cover no-repeat;
}
.anketa-horizontal-tags .hit {
  background-color: #531D55;
}
.anketa-horizontal-tags .hit span {
  background: url("../img/hit.svg") center center/cover no-repeat;
}
.anketa-horizontal-tags .without {
  background-color: #7E3A81;
}
.anketa-horizontal-tags .without span {
  background: url("../img/nobrush.svg") center center/cover no-repeat;
}

.anketa-name {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 32px;
  margin-bottom: 16px;
  margin-top: 6px;
}

.anketa-description {
  margin-bottom: 15px;
}

.anketa-description p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.anketa-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
}
.anketa-contacts .phone {
  color: #fff;
  background-color: #7e3a81;
  padding: 5px 10px;
  border-radius: 6px;
}
.anketa-contacts .telegram {
  margin-left: 0 !important;
}
.anketa-station {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.anketa-station span {
  display: block;
  width: 32px;
  height: 32px;
  background: #7E3A81 url("../img/map-location.png") center center / 18px no-repeat;
  /* background: url("../img/metro-icon.png") center center/31px no-repeat; */
  margin-right: 16px;
  border-radius: 100%;
}
.anketa-station p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-address {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.anketa-address span {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/address-icon.png") center center/31px no-repeat;
  margin-right: 16px;
}
.anketa-address p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-video {
  height: 267px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}
.anketa-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.anketa-video div {
  width: 31.5px;
  height: 31.5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  border-radius: 100%;
  cursor: pointer;
  background: url("../img/video-play-icon.png") center center/contain no-repeat;
}
.anketa-video div:hover {
  animation: radial-pulse 1.3s infinite;
}

.anketa-params-content .anketa-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px 25px;
  background-color: #E4DFEF;
  border-radius: 10px;
  padding: 24px 30px;
  margin-bottom: 24.5px;
}

.anketa-params-item {
  display: flex;
  align-items: center;
}
.anketa-params-item span {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin-right: 8px;
}
.anketa-params-item:nth-child(1) span {
  background: url("../img/icon-calendar.svg") center center/contain no-repeat;
}
.anketa-params-item:nth-child(2) span {
  background: url("../img/icon-weight.svg") center center/contain no-repeat;
}
.anketa-params-item:nth-child(3) span {
  background: url("../img/icon-bra.svg") center center/contain no-repeat;
}
.anketa-params-item:nth-child(4) span {
  background: url("../img/icon-height.svg") center center/contain no-repeat;
}
.anketa-params-item p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
}

.anketa-services {
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 40px;
  background: url("../img/anketa-services.png") center center/cover no-repeat;
}
.anketa-services > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.anketa-services .q-service {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  flex-grow: 0;
}
.anketa-services span {
  display: inline-block;
  background-color: #BFBFBF;
  height: 2px;
  flex-grow: 1;
}
.anketa-services .a-service {
  font-family: "Helvetica-bold";
  font-weight: bold;
  font-size: 14px;
  flex-grow: 0;
}

section.anketa-params-block {
  padding-bottom: 0;
}

.anketa-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 16px;
}
.anketa-prices div {
  position: relative;
  background-color: #E4E4E4;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 35px;
  padding-bottom: 25px;
}
.anketa-prices div.zapis {
  width: 32%;
}
.anketa-prices div.zapis span {
  background: #531D55 url("../img/clock.svg") 4px center/13.5px no-repeat;
}
.anketa-prices div.vyezd {
  width: 49%;
}
.anketa-prices div.vyezd span {
  background: #531D55 url("../img/vyezd.svg") 4px center/17.7px 7.5px no-repeat;
}
.anketa-prices span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
  padding: 0 4px 0 26px;
}
.anketa-prices p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 18px;
}

.anketa-uslugi-wrp {
  display: flex;
  flex-direction: column;
}
.anketa-uslugi-wrp h2 {
  margin-top: 40px;
}

.anketa-uslugi-main .anketa-uslugi-content > div {
  background-color: #F4F4F4;
}

.anketa-uslugi-dop .anketa-uslugi-content > div {
  background-color: #E4DFEF;
}

.anketa-uslugi-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anketa-uslugi-content div {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 10px;
  padding: 16px 8px;
}
.anketa-uslugi-content span {
  display: none;
}

.anketa-uslugi-content-title {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.anketa-uslugi-content-title strong {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
}

.anketa-uslugi-content-desc {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 11px;
  line-height: 1.4;
}

.anketa-schedule-row {
  background: url("../img/anketa-schedule.png") center center/cover no-repeat;
  padding-top: 40px;
  padding-bottom: 40px;
}
.anketa-schedule-row h2 {
  -moz-text-align-last: left;
       text-align-last: left;
}

.anketa-schedule-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.anketa-schedule-legend span {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.anketa-schedule-legend div {
  display: flex;
}
.anketa-schedule-legend div:nth-child(1) span {
  background: url("../img/anketa-airplane.svg") center center/contain no-repeat;
}
.anketa-schedule-legend div:nth-child(2) span {
  background: url("../img/anketa-weekend.svg") center center/contain no-repeat;
}
.anketa-schedule-legend div:nth-child(3) span svg {
  stroke-width: 0.1;
}
.anketa-schedule-legend div:nth-child(4) span svg {
  stroke-width: 0.1;
}
.anketa-schedule-legend p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-reviews-row {
  margin-top: 40px;
}

.anketa-schedule-table {
  display: flex;
  overflow: auto;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 23px;
  margin-left: 20px;
}

.anketa-schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.anketa-schedule-item div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 131px;
  height: 60px;
  border: 0.5px solid #E4E4E4;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.anketa-schedule-date span {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
}
.anketa-schedule-date p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-schedule-icon {
  width: 100%;
}
.anketa-schedule-icon.icon-dayoff {
  background: #fff url("../img/anketa-weekend.svg") center center/32px no-repeat;
}
.anketa-schedule-icon.icon-weekend {
  background: #fff url("../img/anketa-airplane.svg") center center/32px no-repeat;
}
.anketa-schedule-icon.icon-inwork svg {
  stroke-width: 0.1;
}
.anketa-schedule-icon.icon-outwork svg {
  stroke-width: 0.1;
}

.open-review-modal {
  border-radius: 10px;
  margin: 0 auto;
  color: #fff;
  background-color: #7E3A81;
  border: 1px solid #7E3A81;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  padding: 14px 32px;
  display: block;
  margin: auto;
}

#makeReview .modal-content {
  background-color: #E4E4E4;
  border-radius: 25px;
}
#makeReview .modal-body {
  padding: 8px 20px 40px;
}

.new-review-close {
  width: 24px;
  height: 24px;
  background: url("../img/review-close.svg") center center/contain no-repeat;
  margin-left: auto;
  margin-bottom: 8px;
}

.new-review-title {
  text-align: center;
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 24px;
}

.send-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 16px 0;
}
.send-stars span {
  display: block;
  width: 22.4px;
  height: 22.4px;
  background: url("../img/strawberry.png") center center/contain no-repeat;
}
.send-stars span:hover {
  background: url("../img/strawberry-active.png") center center/contain no-repeat;
}
.send-stars span.star {
  background: url("../img/strawberry-active.png") center center/contain no-repeat;
}

.new-review-form {
  display: flex;
  flex-direction: column;
}
.new-review-form button[type=submit] {
  margin-top: 24px;
}
.new-review-form label {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}
.new-review-form textarea {
  min-height: 182px;
}
.new-review-form input, .new-review-form textarea {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #000;
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
}
.new-review-form input:focus-visible, .new-review-form textarea:focus-visible {
  outline: #7E3A81;
}

.anketa-review-item {
  background-color: rgba(197, 187, 216, 0.1);
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}
.anketa-review-item hr {
  height: 1px;
  width: 100%;
  background-color: #D0D0D0;
  margin-top: 38px;
  margin-bottom: 16px;
}

.anketa-review-author div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anketa-review-author-name {
  font-family: "Helvetica-bold";
  font-weight: bold;
  font-size: 16px;
}

.anketa-review-author-date {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.anketa-review-text {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
}

.anketa-reviews-slider-wrp {
  position: relative;
}

.got-stars {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.got-stars li {
  display: block;
  width: 22.4px;
  height: 22.4px;
  background: url("../img/strawberry.png") center center/contain no-repeat;
}
.got-stars li.active {
  background: url("../img/strawberry-active.png") center center/contain no-repeat;
}

.anketa-reviews-slider-carousel-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  margin: auto 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.anketa-reviews-slider-carousel-nav button {
  pointer-events: all;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  pointer-events: all;
  padding: 0;
  outline: none !important;
}
.anketa-reviews-slider-carousel-nav button.owl-prev {
  margin-left: -15px;
}
.anketa-reviews-slider-carousel-nav button.owl-next {
  margin-right: -15px;
  transform: rotate(180deg);
}
.anketa-reviews-slider-carousel-nav span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/anketa-arrow.png) center center/4px 8px no-repeat;
}

.anketa-schedule-table-container {
  padding: 0;
  max-width: 100%;
}

.blogpage-row {
  overflow: hidden;
}

.blogpage-list {
  display: flex;
  flex-direction: column;
  margin-top: 23px;
}
.blogpage-list > div {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogpage-list > div > div {
  display: grid;
  gap: 25px;
  padding-left: 20px;
  padding-right: 20px;
}

.blogpage-list-firstrow {
  padding-bottom: 35px;
}

.blogpage-list-secondrow {
  padding-top: 40px;
  padding-bottom: 35px;
}

.grey-bg {
  position: relative;
}
.grey-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/blogpage-bg.png") 0% 0%/cover no-repeat;
}

.blogpage-list-thirdrow {
  padding-top: 40px;
}

.blogpage-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 8px 17px 10px;
  min-height: 218px;
  overflow: hidden;
  text-decoration: none !important;
}
.blogpage-item:hover img {
  transform: scale(1.2);
}
.blogpage-item::before {
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
.blogpage-item img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.7s linear;
}

.blog-item-title {
  z-index: 3;
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.blog-item-description {
  z-index: 3;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  color: #D0D0D0;
  margin-bottom: 8px;
}
.blog-item-description a {
  color: inherit;
  text-decoration: underline;
}

.blog-item-date {
  z-index: 3;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  text-align: right;
  color: #D0D0D0;
}

.blog-item-tags {
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  gap: 7px;
  margin-bottom: auto;
}
.blog-item-tags li {
  display: block;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  background-color: #fff;
  border-radius: 50px;
  padding: 4px 16px;
}

.blog-item-page {
  position: relative;
  max-height: 401px;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.blog-item-page::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
.blog-item-page img {
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.blog-item-page-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  padding: 10px 0px;
}

.blog-item-page-header-bottom h1 {
  color: #fff;
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  text-align: left;
}
.blog-item-page-header-bottom .date {
  color: #D0D0D0;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  text-align: right;
}

section.seo-row {
  padding-top: 34px;
}

.blog-item-video {
  background-color: #A852AC;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-radius: 100%;
}
.blog-item-video:hover {
  animation: radial-pulse 1.3s infinite;
}
.blog-item-video svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.blog-item-page-content {
  padding-top: 23px;
  padding-bottom: 35px;
}
.blog-item-page-content h2 {
  margin-top: 10px;
  text-align: left !important;
}
.blog-item-page-content p {
  margin-bottom: 15px;
}
.blog-item-page-content li, .blog-item-page-content p, .blog-item-page-content span, .blog-item-page-content b, .blog-item-page-content ol {
  font-family: "Montserrat" !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-size: 16px !important;
}
.blog-item-page-content li::marker {
  color: #7E3A81;
}

.aboutpage-header {
  position: relative;
  background: url("../img/about-header-bg.jpg") center center/cover no-repeat;
  padding-bottom: 0 !important;
}
.aboutpage-header .container:nth-child(2) {
  padding-left: 0;
  margin-left: 0;
}

.aboutpage-header-title {
  background-color: #fff;
  padding-bottom: 23px;
  padding-top: 40px;
  text-align: center;
}
.aboutpage-header-title p {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 18px;
}

.aboutpage-header-icons {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 24px;
  max-height: 554px;
  height: 100%;
  max-width: 202px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.aboutpage-header-icons div {
  display: flex;
  flex-direction: column;
}
.aboutpage-header-icons p {
  margin-top: 15.56px;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.aboutpage-pluses {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.aboutpage-pluses .container {
  padding: 0;
}

.aboutpage-pluses-bg {
  width: 100%;
  height: 242px;
  background: url("../img/about-pluses-bg.jpg") center center/cover no-repeat;
}

.aboutpage-pluses-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
}
.aboutpage-pluses-items div {
  display: flex;
  flex-direction: column;
}
.aboutpage-pluses-items p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  margin-top: 8px;
}

.aboutpage-list {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  background: #E4E4E4 url("../img/background.jpg") center center/cover no-repeat;
}

.aboutpage-list-img {
  position: absolute;
  left: 0;
  top: 40px;
  height: 292px;
  width: 100%;
  background: url("../img/about-list-img.jpg") center center/cover no-repeat;
}

.aboutpage-list-content {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 24px;
  margin-top: 186px;
}

.aboutpage-list-content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
  padding-left: 0;
}
.aboutpage-list-content li {
  display: flex;
  border-bottom: 1px solid #D0D0D0;
  padding: 16px 0;
}
.aboutpage-list-content li:nth-child(5) {
  border: none;
  padding-bottom: 0;
}
.aboutpage-list-content span {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  margin-right: 31px;
  color: #D0D0D0;
}
.aboutpage-list-content p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}


.aboutpage-video {
  padding-top: 40px;
  padding-bottom: 40px;
}

.aboutpage-video-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 267px;
  background: url("../img/about-video-img.jpg") center center/cover no-repeat;
}

.blog-item-video {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: url("../img/video-play-icon.png") center center/cover no-repeat;
}

.work-header {
  background: url("../img/work-header-bg.jpg") 72% center/cover no-repeat;
}

.work-conditions {
  padding: 40px 0;
}

.work-conditions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-conditions-item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 10px;
  position: relative;
  height: 234px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.work-conditions-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.work-conditions-title {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.work-conditions-description {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.work-requirements {
  padding: 40px 0;
  background: #E4E4E4 url("../img/background-bestwhores.jpg") center center/cover no-repeat;
}

.work-requirements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-requirements-item {
  position: relative;
  display: flex;
  height: 149px;
  width: 100%;
  border-radius: 10px;
  padding: 16px;
  z-index: 0;
}
.work-requirements-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  border-radius: 10px;
}
.work-requirements-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0.69%, #0D0D0D 53.33%);
}
.work-requirements-item span {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 24px;
  color: #D0D0D0;
  margin-right: 16px;
}

.work-requirements-item-text {
  display: flex;
  flex-direction: column;
}

.work-requirements-item-title {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.work-requirements-item-description {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.work-info {
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}
.work-info .container {
  padding: 0;
}

.work-info-img {
  position: relative;
  padding: 0 10px;
  width: 100%;
  height: 204px;
}
.work-info-img > div {
  width: 100%;
  height: 100%;
  background: url("../img/work-info-img.jpg") bottom center/cover no-repeat;
}

.work-info-content {
  position: relative;
  top: -55px;
  padding-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.work-info-content h2 {
  text-align: left;
}
.work-info-content hr {
  margin-top: 56px;
  margin-bottom: 32px;
  border: none;
  height: 1px;
  width: 100%;
  background-color: #D0D0D0;
}
.work-info-content p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.work-form h2 {
  margin-bottom: 8px;
}
.work-form .work-form-content > p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
}

.work-form form {
  display: flex;
  flex-direction: column;
  -moz-text-align-last: left;
       text-align-last: left;
}
.work-form form label {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 16px;
}
.work-form form input, .work-form form textarea {
  border-radius: 10px;
  padding: 9px 16px;
  border: 1px solid #D0D0D0;
}
.work-form form button {
  display: block;
  margin: auto;
  border: none;
  margin-top: 20px;
  border-radius: 10px;
  padding: 16px 32px;
  background-color: #7E3A81;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  transition: 0.4s linear;
}
.work-form form p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 16px;
}

.work-form form .timeradio-group label {
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.work-form form .timeradio-group label input {
  margin-right: 16px;
}

.anketa-reviews-slider-carousel-nav.disabled {
  display: none;
}

.work-form-img {
  display: none;
}

.timeradio-group {
  margin-bottom: 20px;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.videogallery-item {
  display: flex;
  flex-direction: column;
}

.videogallery-media {
  position: relative;
}
.videogallery-media img {
  width: 100%;
  height: 100%;
  max-height: 195px;
  -o-object-fit: cover;
     object-fit: cover;
}

.videogallery-play {
  position: absolute;
  display: block;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: url("../img/video-play-icon.png") center center/cover no-repeat;
  text-decoration: none !important;
}
.videogallery-play:hover {
  animation: radial-pulse 1.3s infinite;
}

.videogallery-text {
  padding-top: 8px;
}
.videogallery-text p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
}

.videogallery-row {
  padding-top: 40px;
}

.dnd-block {
  position: relative;
  width: 100%;
  height: 144px;
  border-radius: 20px;
  border: 1px dashed #D0D0D0;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px;
}
.dnd-block span {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  padding: 6px 18px;
  display: block;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #7E3A81;
}
.dnd-block p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px !important;
  pointer-events: none;
  margin: 0 !important;
}
.dnd-block input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.work-form #upload-all {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  display: none;
  transition: 0.4s linear;
  border-radius: 6px;
  transition: 0.4s linear;
  padding: 10px;
  text-decoration: none;
}

.work-form .preImages h3 {
  display: none;
}
.add-girl-form .preImages,
.add-girl-form .preview-images {
  display: none;
}

.work-form .add-photos-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 20px;
}
.work-form .add-photos-preview .progress {
  width: 100%;
  border: 1px solid #888;
  height: 18px;
  text-align: center;
  background-color: #fff;
  padding-left: 5px;
  margin-top: 10px;
}
.work-form .add-photos-preview li {
  margin: 5px;
  border: 1px dashed gray;
  padding: 10px;
  list-style-type: none;
}
.work-form .add-photos-preview li > div:not(.progress) {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  color: #8b8b8b;
  margin-bottom: 5px;
}

.work-form h3 {
  margin: 0 0 15px;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  color: #464646;
}

.work-form .my-girl-sortable {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
}

.add-girl-form {
  margin-top: 20px;
}
.add-girl-form sub {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
}
.add-girl-form legend {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 20px;
}
.add-girl-form input[type=text], .add-girl-form select, .add-girl-form input[type=date] {
  margin-top: 5px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
}
.add-girl-form textarea {
  margin-top: 5px;
  width: 100%;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  min-height: 218px;
}
.add-girl-form .form-group {
  padding-left: 20px;
  padding-right: 20px;
}
.add-girl-form .form-group > label {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 16px;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

label[for=weight], label[for=height] {
  position: relative;
}
label[for=weight] input[type=text], label[for=height] input[type=text] {
  padding-right: 40px;
}
label[for=weight] div, label[for=height] div {
  height: auto;
  width: auto;
  display: inline-flex;
  align-items: end;
  position: absolute;
  padding: 8px 16px 8px 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}

.form-group-second > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.add-girl-form .form-group.form-group-third > label {
  flex-direction: row;
  justify-content: space-between;
}

.custom-check {
  display: block;
  width: 72px;
  height: 28px;
  background: rgba(237, 237, 237, 0.8);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}
.custom-check span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  top: 0;
  right: 0;
  height: 100%;
  width: 45px;
  color: #fff;
  background-color: #B5B5B5;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.4s linear;
}
.custom-check.active span {
  left: 0;
  right: auto;
  background-color: #7E3A81;
}

.form-group-fourth span {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 16px;
}
.form-group-fourth p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 16px;
  margin-bottom: 24px;
}

.form-services-main {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background-color: #F4F4F4;
  margin-bottom: 16px;
  border-radius: 10px;
}
.form-services-main input[type=checkbox] {
  position: relative;
  margin-right: 16px;
}
.form-services-main input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #F4F4F4;
  border: 1px solid #D0D0D0;
}
.form-services-main input[type=checkbox]:checked::before {
  background: #D0D0D0 url("../img/checked-icon.svg") center center/13px no-repeat;
}

.form-services-dop {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background-color: #EBE6F5;
  border-radius: 10px;
}
.form-services-dop label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form-services-dop input[type=checkbox] {
  position: relative;
  margin-right: 16px;
}
.form-services-dop input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #EBE6F5;
  border: 1px solid #D0D0D0;
}
.form-services-dop input[type=checkbox]:checked::before {
  background: #C5BBD8 url("../img/checked-icon.svg") center center/13px no-repeat;
}
.form-services-dop input[type=text] {
  margin-top: 0;
}

.add-girl-form .form-group-fifth {
  padding: 0;
}
.add-girl-form .form-group-fifth legend {
  padding: 0 20px;
}
.add-girl-form .form-group-fifth p {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 16px;
}

.rub-input {
  width: 115px;
  min-width: 115px;
  margin-left: auto;
  position: relative;
}
.rub-input span {
  display: flex;
  align-items: center;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
}
.rub-input input {
  border: none !important;
  padding-right: 30px !important;
}

.add-girl-form .form-group.form-group-sixth {
  padding-left: 0;
  padding-right: 0;
}
.add-girl-form .form-group.form-group-sixth legend {
  padding-left: 20px;
  padding-right: 20px;
}
.add-girl-form .form-group.form-group-sixth > div {
  padding: 16px 20px;
  background-color: #F4F4F4;
  margin-bottom: 16px;
  border-radius: 10px;
}
.add-girl-form .form-group.form-group-sixth label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}
.add-girl-form .form-group.form-group-sixth input[type=text] {
  margin-top: 0;
}

.form-group-seventh .dnd-block {
  height: 234px;
  border: 1px solid #D0D0D0;
}
.form-group-seventh .dnd-block span {
  margin-bottom: 0;
}

.add-girl-form button {
  display: block;
  margin: auto;
  border: none;
  margin-top: 20px;
  border-radius: 10px;
  padding: 16px 32px;
  background-color: #7E3A81;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 16px;
  color: #fff;
  transition: 0.4s linear;
}

#submitModal .modal-content {
  border-radius: 25px;
  padding: 50px 40px;
  background: url("../img/alert-modal.jpg") center center/cover no-repeat;
}
#submitModal .modal-body {
  text-align: center;
}
#submitModal .closeModal {
  background: rgba(0, 0, 0, 0);
  border: none;
  position: absolute;
  right: 14px;
  top: 14px;
}
.footer-top .footer-nav {
  width: 100%;
}
.bigform .container {
  padding: 0;
}

.fixed-social-wrp {
  padding-bottom: 0 !important;
  pointer-events: none;
  position: fixed;
  bottom: 40%;
  right: 0;
}
.fixed-social-wrp .container {
  pointer-events: none;
}

.fixed-social {
  pointer-events: none;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
}
.fixed-social a {
  z-index: 9999999;
  pointer-events: all;
  margin: 0;
}
.contacts-info .aboutpage-list-img {
  position: relative;
  width: 100%;
  top: 0;
  background: url("../img/87696.jpg") center center/cover no-repeat;
  height: 371px;
}
.contacts-info .aboutpage-list-content {
  background: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  margin-top: 227px;
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.contacts-info .aboutpage-list-content p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seotext-wrp li {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
}
.seotext-wrp li::marker {
  color: #7E3A81;
}
.seotext-wrp ul {
  margin-top: 1rem;
}
.profileseo-row {
  background-color: #FAF9FC;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 40px;
}
.profileseo-row p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 16px;
}
.profileseo-row h2 {
  margin-top: 25px !important;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.profileseo-row a {
  color: #5F2661;
}
.profileseo-row ul {
  margin-top: 1rem;
}
.profileseo-row li {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
}
.profileseo-row li::marker {
  color: #7E3A81;
}
.about_txt .aboutpage-pluses-wrp {
  display: grid;
  grid-template-columns: 50% 50%;
}
.about_txt .aboutpage-pluses-items {
  gap: 0;
}
.about_txt h3 {
  font-family: "PTSerif";
  font-weight: normal;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.about_txt a {
  color: #7E3A81;
}
.aboutpage-list_text h3 {
  font-family: "PTSerif";
  font-weight: normal;
  margin-bottom: 24px;
  text-align: center;
}
.aboutpage-list_text p {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 20px;
} 
.aboutpage-list_text li {
  display: list-item;
  padding: 0;
  border: 0 solid #000;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 14px;
}
.aboutpage-list_text ul {
  list-style-type: disc;
  padding-left: 15px;
}
.aboutpage-list_text li::marker {
  color: #7E3A81;
}
@media (min-width: 576px) {
  .main-banner img {
    padding: 0px;
  }
  .girls-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .bestgirls .girls-list .girls-item:nth-child(1),
  .bestgirls .girls-list .girls-item:nth-child(3n+4) {
    grid-column: auto;
  }
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-info,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-info {
    grid-template-columns: repeat(2, auto);
  }
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-name,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-name,
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-price,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-price {
    display: block;
    float: none;
  }
  .girls-item-tags p {
    font-size: 12px;
  }
  .girls-item-media {
    height: 43.7vw;
  }
  .mainpage-blog-item {
    height: 46.8vw;
  }
 .adultonly {
    width: auto;
  }
  .girls-item-imgs .owl-stage,
  .girls-item-imgs img,
  .girls-item-imgs .owl-item {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #filterGirlForm {
    max-width: 368px;
    border-radius: 10px;
    left: 0;
  }
  .paginator {
    max-width: 309px;
    margin: auto;
  }
  .anketa-horizontal-banner img {
    max-height: 452px;
  }
  .anketa-vertical-banner .slick-slide {
    height: 114px;
  }
  .anketa-horizontal-tags {
    gap: 5px;
  }
  .anketa-horizontal-tags p {
    font-size: 14px;
  }
  .blogpage-item {
    min-height: 250px;
  }
  .blogpage-list > div > div {
    max-width: 540px;
  }
  .blog-item-page-header-top,
  .blog-item-page-header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .blog-item-video {
    margin-top: 0;
  }
  .blog-item-tags {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .footer-top .footer-nav {
    width: auto;
  }
  .girls-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .anketa-prices div.zapis {
    width: 15%;
  }
  .anketa-prices div.vyezd {
    width: 25%;
  }
  .anketa-video {
    width: 48%;
  }
  .anketa-params-content {
    width: 48%;
  }
  .anketa-prices {
    width: 100%;
  }
  .anketa-params-content .anketa-params {
    grid-gap: 8px 30px;
  }
  .blogpage-item {
    min-height: 240px;
  }
  .blogpage-list > div > div {
    max-width: 720px;
  }
  .blogpage-list-secondrow-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogpage-list-firstrow {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogpage-list-firstrow .blogpage-item:nth-child(1) {
    grid-column: 1/3;
  }
  .blogpage-list-secondrow,
  .blogpage-list-thirdrow {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutpage-header-title {
    background: rgba(0, 0, 0, 0);
  }
  .aboutpage-header-title * {
    color: #fff;
  }
  .aboutpage-header-icons {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 202px;
  }
  .aboutpage-header-icons p {
    font-size: 11px;
  }
  .aboutpage-header .container:nth-child(2) {
    padding-left: 20px;
    margin-left: auto;
  }
  .aboutpage-pluses-wrp {
    display: grid;
    grid-template-columns: 60% 40%;
  }
  .aboutpage-pluses-bg {
    height: 340px;
  }
  .aboutpage-pluses-items {
    padding-right: 0;
    padding-top: 0;
    justify-content: space-evenly;
  }
  .aboutpage-list .container {
    display: flex;
    flex-direction: row-reverse;
  }
  .aboutpage-list-img {
    left: auto;
    right: 0;
    height: 500px;
    width: 70%;
  }
  .aboutpage-list-content {
    margin-top: 127px;
    margin-left: 0;
    margin-right: auto;
  }
  .aboutpage-video-content {
    height: 320px;
  }
  .contacts-info .aboutpage-list-img {
    position: relative;
    width: 100%;
    top: 0;
    background: url("../img/87696.jpg") center center/cover no-repeat;
    height: 471px;
  }
  .contacts-info .aboutpage-list-content {
    background: rgba(255, 255, 255, 0.8);
    margin-left: auto;
    margin-right: auto;
    margin-top: 227px;
    width: 70%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .contacts-info .aboutpage-list-content p {
    font-family: "Montserrat";
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-item-video {
    width: 50px;
    height: 50px;
  }
  .work-info-img {
    height: 300px;
  }
  .work-conditions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .work-form .container {
    display: flex;
    gap: 24px;
  }
  .work-form-img {
    display: block;
    width: 50%;
    height: 785px;
    background: url("../img/work-form-img.jpg") center center/cover no-repeat;
  }
  .work-form-content {
    width: 50%;
  }
  .video-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group-first, .form-group-second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .add-girl-form .form-group.form-group-third > label {
    justify-content: start;
  }
  .add-girl-form .form-group.form-group-third > label .custom-check {
    margin-left: 40px;
  }
  .form-group-fourth {
    display: flex;
    flex-direction: row-reverse;
  }
  .form-group-fourth label {
    min-width: 60%;
    margin-right: 24px;
  }
  .form-group-fifth, .form-group-sixth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .form-services-main,
  .form-services-dop,
  .add-girl-form .form-group.form-group-sixth > div {
    align-self: start;
  }
  .fixed-social-wrp {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-banner-wrp {
    /* display: grid;
    grid-template-columns: 68px 1fr;
    grid-auto-flow: column;
    grid-gap: 30px; */
    margin-bottom: 0;
  }
  .main-banner {
    gap: 13px;
  }
  .banner {
    margin-bottom: 80px;
  }
  .banner .container {
    display: flex;
    justify-content: center;
  }
  .main-banner-carousel-nav button.slick-prev {
    margin-left: 83px;
  }
  .main-banner .slick-slide {
    padding: 6px 0;
    border: none !important;
  }
  .main-banner .slick-slide a {
    pointer-events: none;
  }
  .main-banner img {
    padding: 0px;
  }
  .main-banner-big {
    display: block;
    width: 100%;
    height: 100%;
  }
  .main-banner-big img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .girls-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .main-banner-big {
    display: block;
    width: 360px;
  }
  .main-banner-big img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .girls-item-media {
    height: 32.7vw;
  }
  .filter-form {
    display: flex;
    margin-left: 40px;
    flex-direction: column;
  }
  .filter-form button[type=submit] {
    margin-bottom: 0;
    margin-top: auto;
  }
  .bestgirls .girls-list .girls-item:nth-child(1),
  .bestgirls .girls-list .girls-item:nth-child(3n+4) {
    grid-column: span 2;
  }
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-info,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-info {
    display: flex;
  }
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-name,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-name {
    display: inline-block;
    float: left;
  }
  .bestgirls .girls-list .girls-item:nth-child(1) .girls-item-price,
  .bestgirls .girls-list .girls-item:nth-child(3n+4) .girls-item-price {
    display: inline-block;
    float: right;
  }
  .blog-list {
    display: grid;
    grid-template-rows: repeat(4, 126px);
    grid-template-columns: repeat(8, 1fr);
  }
  .blog-list .mainpage-blog-item {
    height: auto;
  }
  .blog-list .mainpage-blog-item:nth-child(1) {
    grid-row: 1/5;
    grid-column: 1/6;
  }
  .blog-list .mainpage-blog-item:nth-child(2) {
    grid-row: 1/3;
    grid-column: 6/9;
  }
  .blog-list .mainpage-blog-item:nth-child(3) {
    grid-row: 3/5;
    grid-column: 6/9;
  }
  .footer-nav {
    display: flex;
    justify-content: space-evenly;
  }
  footer .link-btn.desk-only {
    display: block;
    min-width: 290px;
    width: 290px;
  }
  footer .link-btn:not(.desk-only) {
    display: none;
  }
  footer .contacts {
    width: 30%;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  footer .contacts a {
    margin-right: 0;
  }
  .footer-top .footer-nav {
    margin: 0 auto;
  }
  .footer-top .lang {
    margin: 0 auto 0 50px;
  }
  .footer-top .link-btn a {
    display: inline-block;
    margin: 0;
  }
  .footer-links {
    width: 70%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-info {
    clear: both;
  }
  .anketa-maininfo {
    flex-direction: row;
  }
  .anketa-sliders {
    width: 46%;
    min-width: 46%;
    max-width: 508px;
    margin-right: 24px;
  }
  .anketa-name {
    margin-top: 0;
  }
  .anketa-uslugi-wrp {
    flex-direction: row;
  }
  .anketa-params-block .container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .anketa-params-block .container.without-video .anketa-params-content {
    width: 100%;
  }
  .anketa-params-block .container.without-video .anketa-params {
    max-width: 50%;
  }
  .anketa-params-block .container.without-video .anketa-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .anketa-reviews-row h2 {
    float: left;
    margin: 14px 0;
  }
  .anketa-reviews-row .open-review-modal {
    margin-right: 0;
    clear: right;
  }
  .anketa-schedule-top {
    display: flex;
    justify-content: space-between;
  }
  .anketa-schedule-legend {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
  .anketa-schedule-legend div {
    align-items: center;
  }
  .anketa-schedule-row h2 {
    margin-bottom: 0;
  }
  .anketa-schedule-table {
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(8, 1fr);
  }
  .anketa-schedule-date,
  .anketa-schedule-item {
    background-color: #fff;
  }
  .anketa-schedule-item div {
    width: 100%;
  }
  .anketa-schedule-table-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 960px;
  }
  h2 {
    font-size: 32px;
  }
  .anketa-uslugi-wrp {
    gap: 52px;
  }
  .anketa-uslugi-wrp h2 {
    font-size: 24px;
  }
  .anketa-prices {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .anketa-prices div {
    width: 100% !important;
    max-height: 118px;
  }
  .anketa-uslugi-content div {
    padding-left: 56px;
  }
  .anketa-uslugi-main {
    width: 55%;
  }
  .anketa-uslugi-dop {
    width: 45%;
  }
  .anketa-uslugi-main .anketa-uslugi-content > div {
    position: relative;
  }
  .anketa-uslugi-main .anketa-uslugi-content > div::before {
    content: "";
    position: absolute;
    left: -13.5px;
    top: 0;
    bottom: 0;
    display: block;
    width: 36px;
    margin: auto;
    height: 24.7px;
    background: url("../img/anketa-main-services.svg") center center/cover no-repeat;
  }
  .anketa-uslugi-dop .anketa-uslugi-content > div {
    position: relative;
  }
  .anketa-uslugi-dop .anketa-uslugi-content > div::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 0;
    bottom: 0;
    display: block;
    width: 56px;
    margin: auto;
    height: 56px;
    background: url("../img/anketa-dop-services.svg") center center/cover no-repeat;
  }
  .anketa-reviews-slider-wrp,
  .anketa-reviews-slider-wrp .owl-stage-outer {
    width: 100%;
  }
  .blogpage-list > div > div {
    max-width: 960px;
  }
  .blogpage-list-firstrow .blogpage-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .blogpage-list-firstrow .blogpage-item:nth-child(2) {
    grid-column: 2/3;
  }
  .blogpage-list-firstrow .blogpage-item:nth-child(3) {
    grid-column: 2/3;
  }
  .main-banner img {
    /* max-height: 97px; */
  }
  #navbarSupportedContent .nav-item:hover {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%237E3A81' stroke-width='1' class='squiggle' d='M0,3.5 c 5,0,5,-2,10,-2 s 5,2,10,2 c 5,0,5,-2,10,-2 s 5,2,10,2'/%3E%3C/svg%3E");
    background-position: 0 100%;
    background-size: auto 4px;
    background-repeat: repeat-x;
    text-decoration: none;
  }
  .newgirls-row {
    padding-top: 80px;
  }
  section.seo-row {
    padding-top: 70px;
  }
  .blog-item-page {
    max-height: 420px;
  }
  .aboutpage-header-icons p {
    font-size: 14px;
  }
  .aboutpage-list-content li {
    justify-content: space-between;
    align-items: center;
  }
  .aboutpage-list-content li p {
    width: 70%;
  }
  .work-conditions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .work-conditions-item {
    height: 304px;
  }
  section.work-conditions {
    padding: 80px 0;
  }
  section.work-info {
    padding: 80px 0 !important;
  }
  section.work-info .container {
    position: relative;
  }
  .work-info-img {
    height: 463px;
    width: 80%;
    margin-left: auto;
  }
  .work-info-content {
    position: absolute;
    width: 40%;
    height: 370px;
    bottom: 0;
    top: auto;
  }
  .work-requirements-item {
    height: 135px;
    padding-left: 40%;
  }
  .work-form form textarea {
    min-height: 80px;
  }
  .work-form-inpts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .video-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .videogallery-row h2 {
    margin-bottom: 40px;
  }
  .form-group-second {
    width: 65%;
    float: left;
  }
  .form-group-third {
    float: right;
  }
  .add-girl-form .form-group.form-group-third > label {
    justify-content: space-between;
  }
  .form-group-fourth {
    clear: both;
  }
}
@media (min-width: 1200px) {
  h1, h2 {
    font-size: 32px;
  }
  h1 br, h2 br {
    display: none;
  }
  .girls-item-media {
    max-height: 321px;
  }
  .girls-item-info {
    display: flex;
    justify-content: space-between;
    grid-gap: 0;
  }
  .seo-row .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
  }
  #navbarSupportedContent {
    position: relative;
    display: block !important;
    background-color: #fff;
  }
  #navbarSupportedContent .navbar-nav {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 30px;
  }
  #navbarSupportedContent .link-btn, #navbarSupportedContent .contacts, #navbarSupportedContent .container {
    display: none;
  }
  .header .desk-only {
    display: flex;
  }
  .header .contacts {
    order: 2;
    margin-right: 22px;
  }
  .header .link-btn {
    order: 3;
  }
  .header .navbar-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 25px;
    order: 2;
  }
  .header .navbar-nav .nav-link {
    padding: 0 !important;
  }
  .header .navbar-nav .nav-item:hover {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%237E3A81' stroke-width='1' class='squiggle' d='M0,3.5 c 5,0,5,-2,10,-2 s 5,2,10,2 c 5,0,5,-2,10,-2 s 5,2,10,2'/%3E%3C/svg%3E");
    background-position: 0 100%;
    background-size: auto 4px;
    background-repeat: repeat-x;
    text-decoration: none;
  }
  .header .link-btn a {
    margin: 0;
  }
  .header > .lang {
    margin-left: 27px;
    margin-right: auto;
    order: 1;
  }
  .header-logo {
    order: 0;
  }
  .anketa-uslugi-content-title {
    font-size: 18px;
  }
  .anketa-uslugi-content-desc {
    font-size: 14px;
  }
  .anketa-prices p {
    font-size: 24px;
  }
  .anketa-uslugi-wrp h2 {
    margin-top: 80px;
  }
  .anketa-params-content .anketa-params {
    grid-template-columns: repeat(4, auto);
  }
  .anketa-params-content .anketa-params {
    padding: 32px 17px;
    grid-gap: 8px 5px;
  }
  .anketa-video {
    height: 100%;
    max-height: 426px;
    max-width: 508px;
  }
  .anketa-params-content {
    width: 50%;
  }
  .anketa-horizontal-banner img {
    max-height: 641px;
  }
  .anketa-vertical-banner {
    width: 65px;
  }
  .anketa-horizontal-banner img,
  .anketa-horizontal-banner a {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .anketa-schedule-table-container {
    max-width: 1140px;
  }
  .blogpage-list > div > div {
    max-width: 1140px;
  }
  .blogpage-list-thirdrow {
    grid-template-columns: repeat(3, 1fr);
  }
  .aboutpage-header-icons {
    margin-top: 332px;
  }
  .aboutpage-header-title p {
    font-size: 24px;
  }
  .aboutpage-header-icons {
    padding: 24px 48px;
  }
  .aboutpage-pluses {
    padding-top: 80px !important;
    padding-bottom: 90px !important;
  }
  .aboutpage-pluses h2 {
    margin-bottom: 40px;
  }
  .aboutpage-pluses-bg {
    height: 460px;
  }
  .aboutpage-pluses-items {
    padding-left: 40px;
  }
  .aboutpage-pluses-items p {
    margin-top: 10px;
  }
  .aboutpage-list-img {
    top: 0;
    height: 100%;
  }
  .aboutpage-list .container {
    position: relative;
  }
  .aboutpage-video-content {
    height: 526px;
  }
  .contacts-info .aboutpage-list-img {
    position: static;
    width: 100%;
    background: url("../img/87696.jpg") center center/cover no-repeat;
    height: 471px;
  }
  .contacts-info .aboutpage-list-content {
    background: rgba(255, 255, 255, 0.8);
    margin-left: auto;
    margin-right: auto;
    margin-top: 227px;
    width: 60%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .contacts-info .aboutpage-list-content p {
    font-family: "Montserrat";
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profileseo-row .container {
    column-count: 2;
    column-gap: 40px;
  }
}
input:focus-visible, input:active, input:focus,
textarea:focus-visible, textarea:active, input:focus {
  outline: none !important;
}


@keyframes radial-pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}/*# sourceMappingURL=main.css.map */
a.phone {
  text-decoration: none;
}
.mari {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 12px;
  text-align: center;
  display: block;
  width: 100%;
  color: #000 !important;
  text-decoration: none !important;
}

.add-girl-form #upload-all {
  border: 1px solid #7E3A81 ;
  background-color: #7E3A81 ;
  color: #fff;
  display: none;
  transition: .4s linear;
  border-radius: 6px;
  transition: .4s linear;
  padding: 10px;
  text-decoration: none;
}
.add-girl-form #upload-all:hover {
  background-color: #fff;
  color: #7E3A81 ;
}
.add-photos-preview {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  margin-bottom: 20px;
  list-style-type: none;
  padding-left: 0;
}
.preImages .add-photos-preview li {
  margin: 5px;
  border: 1px dashed gray;
  padding: 10px;
}
.add-photos-preview li > div:not(.progress) {
  font-family: montserrat-regular;
  font-size: 12px;
  color: #8b8b8b;
  margin-bottom: 5px;
}
.add-photos-preview .progress {
  width: 100%;
  border: 1px solid #888;
  height: 18px;
  text-align: center;
  background-color: #fff;
  padding-left: 5px;
  margin-top: 10px;
}
.my-girl-sortable {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-gap: 10px;
  padding-left: 0;
}
.my-girl-sortable .radio-custom {
  border-radius: 3px;
  position: relative;
  display: block;
}
.my-girl-sortable .prevImage {
  cursor: pointer;
}
.my-girl-sortable .prevImage img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  position: relative;
}
.my-girl-sortable input[type="radio"] {
  display: none;
}
.my-girl-sortable .preview .delete {
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  font-family: montserrat-bold;
  font-size: 12px;
  display: block;
  margin: 10px auto;
  width: 40px;
  padding: 10px 5px;
  color: #fff;
  border: 1px solid #7E3A81;
  background-color: #7E3A81;
  border-radius: 6px;
  transition: .4s linear;
  min-width: 50px;
  background: #7E3A81 url(../img/icon-delete.gif) center center / 13px no-repeat;
}