@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/Outfit-Regular.woff2') format('woff2'),
    url('/assets/fonts/Outfit-Regular.woff') format('woff'),
    url('/assets/fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit Medium';
  src: url('/assets/fonts/Outfit-Medium.woff2') format('woff2'),
    url('/assets/fonts/Outfit-Medium.woff') format('woff'),
    url('/assets/fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

article>*+* {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



:root {
  --white: #fff;
  --grey-txt: #b5b5b5;
  --acsent: rgba(246, 187, 45, 1);
  --bg-elements: rgba(30, 30, 30, 0.84);
  --bg-elements-dark: rgba(30, 30, 30, 1);
  --bg-link: rgba(255, 255, 255, 0.04);
  --black: rgba(30, 30, 30, 1);
  --bg: rgba(238, 231, 249, 1);
  --btn-elements: #1E1E1E;
  --font-family: "Outfit", sans-serif;
  --second-family: "Outfit Medium", sans-serif;
}

.light-text {
  color: var(--white) !important;
}

.dark-text {
  color: var(--black) !important;
}

.modelprestigedubai-body {
  background: var(--bg);
}

.banner-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modelprestigedubai-container {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
}
.toggle-menu{
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--bg-link);
  border: none;
  box-shadow: none;
}
.toggle-menu img{
  width: 24px;
  height: 24px;
}
.modelprestigedubai-header {
  position: relative;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;

}

.modelprestigedubai-nav_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.modelprestigedubai-nav_item {
  border-radius: 50px;
  padding: 13px 30px;
  background: var(--bg-link);
}

.modelprestigedubai-nav_link {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
}

.modelprestigedubai-logo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-elements);
}

.modelprestigedubai-logo_text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
}

.lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: var(--bg-link);
}

.lang-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
  color: #fff;
}

.modelprestigedubai-banner {
  position: absolute;
  z-index: -1;
  top: 0;
  max-width: 100%;
  width: 100%;
  height: 850px;
  background: url('/assets/img/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%);
}

.modelprestigedubai-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.8);
}

.modelprestigedubai-content {
  max-width: 625px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 136px;
  margin-bottom: 232px;
}

.modelprestigedubai-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 100px;
  line-height: 120px;
  color: var(--white);
}

.modelprestigedubai-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 200%;
  color: var(--white);
}

.modelprestigedubai-wrapper-btn {
  border-radius: 50px;
  padding: 13px 24px;
  background: var(--acsent);
  width: max-content;
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
}

.modelprestigedubai-btn {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  width: max-content;
  padding: 0;
}

.modelprestigedubai-section_title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 82px;
  line-height: 103px;
  color: var(--black);
}

#contact .modelprestigedubai-section_title {
  color: var(--white);
}

.modelprestigedubai-section_text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: var(--black);
}

#contact .modelprestigedubai-section_text {
  color: var(--white);
}

.modelprestigedubai-socia_wrapper {
  border-radius: 50%;
  padding: 35px;
  width: 120px;
  height: 120px;
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
  background: var(--acsent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-about_content {
  max-width: 665px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;

}
.about-container{
  height: 588px;
}
.modelprestigedubai-about_section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.modelprestigedubai-about_social {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.modelprestigedubai-about_social_item {
  flex: 0 0 232px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.modelprestigedubai-banner_wrapper {
  position: absolute;
  border-radius: 0 50px 50px 0;
  width: 769px;
  z-index: -1;
  height: 588px;
  background: url('/assets/img/about-img-after.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  right: 0;
}

.modelprestigedubai-galery {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 120px;
}

.modelprestigedubai-galery_content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modelprestigedubai-galery_content .modelprestigedubai-section_text{
  max-width: 665px;
  margin: 0 auto;
}
.modelprestigedubai-galery_models {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

.modelprestigedubai-card {
  position: relative;
  flex: 1 1 410px;
  border-radius: 30px;
  overflow: hidden;
}

.modelprestigedubai-card-info {
  position: absolute;
  border-radius: 30px;
  max-width: 370px;
  width: 100%;
  background: rgba(255, 255, 255, .84);
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modelprestigedubai-card-info_text,
.modelprestigedubai-card-info_btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.modelprestigedubai-card_name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: var(--black);
}

.modelprestigedubai-card_price {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: var(--black);
}

.modelprestigedubai-currency {
  font-size: 22px;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 600;
}

.modelprestigedubai-card-info_btn {
  border-radius: 50px;
  padding: 10px 30px;
  cursor: pointer;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-card-info_btn.info {
  border: 1px solid var(--black);
}

.modelprestigedubai-card-info_btn.booking {
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
  background: var(--acsent);
}

.modelprestigedubai-card-info_btn_text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
}

.modelprestigedubai-section_text.white {
  color: var(--black);
  text-align: center;
}

.modelprestigedubai-booking {
  border-radius: 50px;
  padding: 50px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--acsent);
  margin-top: 120px;
}

.modelprestigedubai-booking_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

}
.modelprestigedubai-booking_text .modelprestigedubai-section_text{
  max-width: 550px;
  margin: 0 auto;
}
.modelprestigedubai-booking_contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.modelprestigedubai-booking_btn {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 232px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modelprestigedubai-booking_icon {
  border-radius: 100px;
  padding: 35px;
  width: 120px;
  height: 120px;
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
  background: var(--black);
}

.modelprestigedubai-booking_icon img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(96%) saturate(373%) hue-rotate(356deg) brightness(100%) contrast(94%);
}

.modelprestigedubai-booking_btn_text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: var(--black);
}

.modelprestigedubai-services {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-services_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.modelprestigedubai-services_list {
  display: flex;
  gap: 30px;
}

.modelprestigedubai-services_item {
  border-radius: 50px;
  padding: 30px;
  width: 100%;
  flex: 1 1 410px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--btn-elements);
  align-items: center;
  justify-content: flex-start;
}

.modelprestigedubai-services_item_icon {
  border-radius: 50%;
  padding: 35px;
  width: 120px;
  height: 120px;
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
  background: var(--acsent);
}

.modelprestigedubai-services_item_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-services_item_title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
}

.modelprestigedubai-services_item_text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-services_info {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.modelprestigedubai-services_info_advent {
  flex: 0 0 636px;
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-content: space-between;
}

.modelprestigedubai-services_info_advent_item {
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modelprestigedubai-services_info_advent_title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 52px;
  color: var(--acsent);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.modelprestigedubai-services_info_advent_title sup {
  font-size: 32px;
}

.modelprestigedubai-contacts {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 50px;
  padding: 50px 20px;
  align-items: center;
  flex-direction: column;
  background: var(--btn-elements);
}

.modelprestigedubai-contacts_list {
  display: flex;
  flex-direction: row;
  gap: 40px 88px;
  flex-wrap: wrap;
  justify-content: center;

}

.modelprestigedubai-contacts_item {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.modelprestigedubai-contacts .modelprestigedubai-services_wrapper .modelprestigedubai-section_text {
  max-width: 550px;
}

.modelprestigedubai-contacts_item_icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 22.4px 0px rgba(246, 187, 45, 0.34);
  background: var(--acsent);
}

.modelprestigedubai-contacts_item_icon img {
  width: 40px;
  height: 40px;
  filter: invert(11%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(12%) contrast(100%);
}

.modelprestigedubai-contacts_item_text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-seo_text {
  max-width: 960px;
  width: 100%;
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modelprestigedubai-footer {
  width: 100%;
  padding: 50px 0 30px 0;
  background: #1C1C1C;
}

.modelprestigedubai-footer_contetn {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.modelprestigedubai-nav_item.footer {
  background-color: #252525;
  padding: 13px 30px;
}

.modelprestigedubai-footer_privacy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-align: center;
  color: var(--grey-txt);
}

.modelprestigedubai-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modelprestigedubai-modal-content {
  margin: 0 auto;
  position: absolute;
  border-radius: 50px;
  padding: 50px;
  max-width: 1101px;
  width: 100%;
  background: var(--bg);
  height: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 95vh;
}

.modelprestigedubai_model_content_wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.modelprestigedubai-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  font-weight: bold;
  padding: 13px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--bg-elements-dark);
}

.modelprestigedubai_model_meadia_wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 600px;
  width: 100%;
}

.modelprestigedubai_main_img {
  max-width: 476px;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
}

.modelprestigedubai_main_img img {
  object-fit: cover;
}

.modelprestigedubai_trumnail_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modelprestigedubai_trumnail {
  border-radius: 20px;
  width: 100px;
  height: 100px;
  background-color: var(--bg-elements-dark);
  filter: brightness(50%);
  overflow: hidden;
  cursor: pointer;
}

.modelprestigedubai_trumnail.active {
  filter: brightness(100%);
}

.modelprestigedubai-model_info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 365px;
}

.modelprestigedubai-model_info_name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  color: var(--black);
}

.modelprestigedubai-model_info_price {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.modelprestigedubai-model_tel_wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  cursor: pointer;
}

.modelprestigedubai-model_tel {
  border: 1px solid rgba(181, 181, 181, 1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-model_tel img {
  filter: invert(11%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(12%) contrast(100%);
  width: 24px;
  height: 24px;
}

.modelprestigedubai-model_tel_text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: var(--black);
}

.modelprestigedubai-model_params {
  display: flex;
  flex-direction: row;
  gap: 20px;
  border-radius: 20px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  background: var(--black);
}

.modelprestigedubai-model_param_item {
  flex: 0 0 68px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.modelprestigedubai-model_param_title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: var(--grey-txt);
}

.modelprestigedubai-model_param_value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-model_price_wprapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  background: var(--bg-elements-dark);

}

.modelprestigedubai-model_price_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.modelprestigedubai-model_price_list {
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.modelprestigedubai-currency.small {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-model_price_title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-model_price_value {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: var(--white);
}

.modelprestigedubai-model_price_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

  .modelprestigedubai-container,
  .modelprestigedubai-seo_text {
    padding: 0 20px;
  }
  .modelprestigedubai-card-info_text{
    gap: 10px;
  }
  .modelprestigedubai-modal-content{
    max-width: calc(100vw - 20px);
  }
  .modelprestigedubai-card-info{
    max-width: calc(100% - 20px);
  }
  .modelprestigedubai-card{
    flex: 0 0 calc(33% - 20px);
  }

}

@media screen and (max-width: 1024px) {
  .modelprestigedubai-services_list {
    gap: 20px;
  }
.modelprestigedubai_main_img img{
  border-radius: 50px;
}
    .modelprestigedubai-card{
    flex: 0 0 calc(49% - 10px);
  }
  .modelprestigedubai-content {
    margin-bottom: 182px;
  }

  .modelprestigedubai-seo_text {
    margin: 70px auto;
  }
}
@media all and (max-width: 920px) {
  .modelprestigedubai_model_content_wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .modelprestigedubai-model_info {
    width: 100%;
    gap: 20px;
    flex-flow: row wrap;
    justify-content: center;
  }
  .modelprestigedubai-model_tel_wrapper,.modelprestigedubai-model_params, .modelprestigedubai-model_price_wprapper{
    width: 100%;
    flex: 0 0 100%;
  }
  .modelprestigedubai-model_header {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }

  .modelprestigedubai-model_price_wprapper{
    flex-direction: row;
  }
  .modelprestigedubai-model_tel_wrapper{
    justify-content: center;
  }
  .modelprestigedubai-modal-content{
    padding: 20px;
  }
  .modelprestigedubai_model_meadia_wrapper{
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .modelprestigedubai-nav_item {
    padding: 13px 20px;
  }
.modelprestigedubai-modal-content{
  overflow-y: auto;
}
  .modelprestigedubai-banner {
    display: none;
  }

  .banner-section {
    max-width: 100%;
    background: url(/assets/img/banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
  }

  .modelprestigedubai-services_info {
    flex-direction: column;
    gap: 50px;
  }

  .modelprestigedubai-banner {
    height: 100%;
  }

  .modelprestigedubai-services_info_advent {
    flex: 1;
    justify-content: flex-start;
    gap: 50px;
  }

  .modelprestigedubai-services_list {
    flex-flow: column;
  }

  .modelprestigedubai-services_item {
    flex-flow: row;
    flex: 0 0 auto;
  }

  .modelprestigedubai-services_item_icon {
    flex: 0 0 120px;
  }

  .modelprestigedubai-services_item_content {
    flex: 1;
  }

  .modelprestigedubai-services_item_text {
    text-align: left;
  }

  .modelprestigedubai-contacts,
  .modelprestigedubai-galery,
  .modelprestigedubai-booking,
  .modelprestigedubai-services {
    margin-top: 70px;
  }
  .modelprestigedubai-model_price_wprapper{
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .modelprestigedubai-content {
    margin-top: 105px;
    margin-bottom: 138px;
    gap: 20px;
  }
  .about-container{
    height: 100%;
  }
  .modelprestigedubai-banner_wrapper {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    width: 100%;
  }

  .modelprestigedubai-services_item {
    flex-direction: row;
    gap: 20px;
  }

  .modelprestigedubai-section_title {
    font-size: 62px;
    line-height: 78px;
  }

  .modelprestigedubai-title {
    font-size: 82px;
    line-height: 103px;
  }

  .modelprestigedubai-contacts_item {
    flex: 0 0 auto;
  }

  .modelprestigedubai-booking_btn {
    flex: 0 0 49%;
  }

  .modelprestigedubai-footer {
    padding: 50px 15px 30px 15px;
  }

  .modelprestigedubai-nav_container {
    flex-flow: row wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 650px) {
  .toggle-menu{
    display: flex;
  }
  .modelprestigedubai-nav{
    display: none;
  }
  .modelprestigedubai-nav ul{
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .modelprestigedubai-card{
    flex: 0 0 100%;
  }
  .modelprestigedubai-nav.show{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -15px;
    top: 100%;
    width: 100vw;
    background: rgba(30, 30, 30, 0.99);
    height: calc(100vh - 65px);
  }
  .modelprestigedubai-header{
    margin-top: 0;
    padding-top: 15px;
  }
  .header-container.open{
    background: rgba(30, 30, 30, 0.99);  
  }
}

@media screen and (max-width: 560px) {
  .banner-section {
    margin-bottom: 10px;
    background: transparent;
  }
.modelprestigedubai-banner{
  display: block;
  height: 100vw;
}
.modelprestigedubai-title{
  color: rgba(30, 30, 30, 1);
  font-size: 44px;
  line-height: 55px;
  margin-bottom: 0;
}
.modelprestigedubai-banner_wrapper{
  background-position: top right;
  background-size: auto;
}
.modelprestigedubai-content{
  margin-top: calc(100vw - 55px);
  gap: 10px;
  margin-bottom: 40px;
}
.about-container{
  padding: 0!important;
}
.modelprestigedubai-description{
  color: var(--black);
  margin-bottom: 10px;
}
.modelprestigedubai-about_content{
  padding: 0 15px;
}
.modelprestigedubai-banner_wrapper{
  border-radius: 0;
  height: 100vw;
}
  .modelprestigedubai-seo_text {
    margin: 40px auto;
  }

  .modelprestigedubai-section_title {
    font-size: 38px;
    line-height: 48px;
  }
.modelprestigedubai_model_meadia_wrapper{
  flex-direction: column-reverse;
}
.modelprestigedubai_trumnail_wrapper{
  flex-direction: row;
  flex-wrap: wrap;
}
  .modelprestigedubai-galery_content {
    gap: 10px;
  }

  .modelprestigedubai-galery,
  .modelprestigedubai-about_section {
    gap: 20px;
  }
.modelprestigedubai-galery_models{
  gap: 10px;
}
  .modelprestigedubai-contacts,
  .modelprestigedubai-galery,
  .modelprestigedubai-booking,
  .modelprestigedubai-services {
    margin-top: 40px;
  }

  .modelprestigedubai-container {
    padding: 0 15px;
  }

  .modelprestigedubai-contacts {
    padding: 20px 15px;
  }

  .modelprestigedubai-contacts_item {
    flex: 0 0 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .modelprestigedubai-contacts_item_text {
    font-size: 20px;
    line-height: 25px;
  }

  .modelprestigedubai-services_info {
    gap: 30px;
  }

  .modelprestigedubai-services_info_advent,
  .modelprestigedubai-contacts,
  .modelprestigedubai-services_item {
    flex-direction: column;
    gap: 15px;
  }
.modelprestigedubai-services_info_advent_item{
  flex-flow: row;
  align-items: center;
  gap: 15px;
}
  .modelprestigedubai-services_item_text {
    text-align: center;
  }

  .modelprestigedubai-services_item {
    padding: 15px;
    flex-direction: column;
  }

  .modelprestigedubai-services_wrapper {
    gap: 10px;
  }

  .modelprestigedubai-services {
    gap: 30px;
  }

  .modelprestigedubai-section_text {
    font-size: 15px;
    line-height: 24px;
  }

  .modelprestigedubai-contacts_item_icon {
    width: 50px;
    height: 50px;
  }

  .modelprestigedubai-contacts_item_icon img {
    width: 24px;
    height: 24px;
  }

  #contact,#booking {
    padding: 0;
  }
  .modelprestigedubai-booking{
    padding: 20px 15px;
  }
  .modelprestigedubai-booking_btn{
    gap: 15px;
  }
  .modelprestigedubai-booking_icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modelprestigedubai-booking_icon img{
    width: 24px;
    height: 24px;
  }
  .modelprestigedubai-booking_btn_text,.modelprestigedubai-model_info_name{
    font-size: 24px;
    line-height: 30px;
  }
  .modelprestigedubai-contacts,.modelprestigedubai-booking {
    border-radius: 0;
  }
.modelprestigedubai-services_info_advent_title{
  font-size: 32px;
  line-height: 40px;
}
.modelprestigedubai-services_info_advent_title sup{
  font-size: 22px;
  line-height: 32px;
}
  .modelprestigedubai-footer {
    padding: 20px 15px;
  }

  .modelprestigedubai-footer_contetn {
    gap: 20px;
  }
}

@media screen and (max-width: 475px) {
  .modelprestigedubai-contacts_list{
    gap: 20px;
  }
.modelprestigedubai-card-info{
  max-width: calc(100% - 20px);
  padding: 15px;
}
.modelprestigedubai-card_name,.modelprestigedubai-card_price{
  font-size: 22px;
  line-height: 28px;
}
.modelprestigedubai-currency{
  font-size: 15px;
}
.modelprestigedubai-model_price_list{
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 16px;
}
.modelprestigedubai-model_params{
  flex-wrap: wrap;
  gap: 10px;
}
.modelprestigedubai-model_param_item{
  flex: 0 0 auto;
  width: 45%;
}
.modelprestigedubai-nav_link{
  font-size: 18px;
  line-height: 21px;
}
.modelprestigedubai-nav_item.footer{
  padding: 13px 20px;
}
}

@media screen and (max-width: 375px) {
    .modelprestigedubai-contacts_item_text{
    font-size: 17px;
  }
}