@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.woff2");
  font-style: italic;
}
@font-face {
  font-display: swap;
  font-family: "FreeSerif";
  src: url("../fonts/FreeSerif.woff2");
  font-weight: 400;
}
@font-face {
  font-display: swap;
  font-family: "FreeSerif";
  src: url("../fonts/FreeSerifItalic.woff2");
  font-weight: 400;
  font-style: italic;
}
:root {
  --black: #2B2A29;
  --white: #FFF;
  --blue: #00ADCA;
  --crimson: #852839;
  --brown: #846F61;
  --font-family-1: 'Inter', Arial, sans-serif;
  --font-family-2: 'FreeSerif', Arial, sans-serif;
  --common-gap: 32px;
  --padding: 112px;
}

@media (max-width: 991px) {
  :root {
    --common-gap: 24px;
    --padding: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --common-gap: 16px;
    --padding: 64px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container .row {
    margin-right: -12px;
    margin-left: -12px;
  }
  .container .row .col-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
}
header, nav, menu, main, section, article, aside, address, footer, noscript {
  display: block;
}

p, ul, ol, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration: underline;
  /*color: var(--color-font-grey);*/
}
a:hover {
  /*text-decoration: none;		
  color: var(--color-font-grey);*/
}
a:active, a:hover, a:focus {
  outline: none !important;
}

/*footer a {
	color: var(--color-link-footer);
	text-decoration: none;

	&:hover {
		color: var(--color-font-white);
		text-decoration: underline;
	}
}

.dalex_block {
	margin-bottom: 104px;

	@include _1199 {
		margin-bottom: 80px;
	}

	@include _991 {
		margin-bottom: 60px;
	}

}

.block_header {
	margin: 0 auto 60px;
	max-width: 975px;

	@include _1199 {
		margin-bottom: 48px;
	}

	@include _991 {
		margin-bottom: 40px;
	}

	@include _767 {
		margin-bottom: 30px;
	}

	& > * {
		color: var(--color-font-black);
		text-align: center;

		@include _767 {

		}
	}

	.block_header_text {
		margin: 24px auto 0;
		max-width: 975px;
		color: var(--color-font-grey);		
		text-align: center;
		font-size: 18px;
		line-height: 145%;
		letter-spacing: -0.072px;

		@include _991 { 
			margin-top: 16px;
			font-size: 16px;
			line-height: 130%;
		}
	}
}

.block_footer {
	margin-top: 80px;
	text-align: center;

	@include _991 {
		margin-top: 48px;
	}

	@include _767 {
		margin-top: 32px;
	}

	a {
		padding-left: 72px;
		padding-right: 72px;

		@include _767 {
			padding: 14px 35px;
		}

	}
}
*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-style: normal;
  font-weight: 400;
  color: var(--black);
  line-height: 100%;
  /*b {
  	font-weight: 700;
  }*/
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, .h1 span, .h2 span, .h3 span {
  font-style: italic;
}

h1, .h1 {
  font-size: 50px;
  font-family: var(--font-family-2);
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  font-size: 60px;
  letter-spacing: -0.6px;
  font-family: var(--font-family-2);
  text-align: center;
}
h2 span, .h2 span {
  font-style: italic;
}
@media (max-width: 1199px) {
  h2, .h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}

h3, .h3 {
  font-size: 32px;
}

button,
.btn {
  border: none;
  outline: none;
  display: inline-block;
  border-radius: 12px;
  border: 0.5px solid var(--crimson);
  background: var(--crimson);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  padding: 14px 32px 16px;
  /*transition: background-color $transition, color $transition;	*/
  text-decoration: none;
  color: var(--white);
}
button:hover,
.btn:hover {
  /*background: transparent;
  color: var(--black);	*/
  color: var(--white);
}
button:focus,
.btn:focus {
  outline: none;
}
@media (max-width: 991px) {
  button,
  .btn {
    font-size: 18px;
    padding: 16px 32px;
  }
}
@media (max-width: 767px) {
  button,
  .btn {
    padding: 16px;
    font-size: 16px;
  }
}

button.type2,
.btn.type2 {
  color: var(--black);
  border: 0.5px solid var(--white);
  background: var(--white);
}
button.type2:hover,
.btn.type2:hover {
  /*background: var(--bgcolor-red);
  color: var(--color-font-white);*/
}

button.type3,
.btn.type3 {
  color: var(--white);
  border: 0.5px solid var(--blue);
  background: linear-gradient(222deg, var(--blue) -2.61%, #005664 86.62%);
  box-shadow: 0 0 10px 0 var(--white) inset;
}
button.type3:hover,
.btn.type3:hover {
  /*background: var(--bgcolor-red);
  color: var(--color-font-white);*/
}

.swiper-horizontal {
  position: relative;
  height: 100%;
}

html {
  height: 100%;
  width: 100%;
  /*scroll-behavior: auto !important;	*/
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  background: var(--white);
  font-family: var(--font-family-1);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 18px;
  line-height: 145%;
  font-weight: 400;
  color: var(--black);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-synthesis: none !important;
}

body.mm_active {
  overflow: hidden;
}

/*
body.active, 
body.search,
body.filter {
	overflow: hidden;
}

body.filter:after {

}
*/
.block_header {
  margin: 0 auto 60px;
  max-width: 800px;
}
@media (max-width: 991px) {
  .block_header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .block_header {
    margin-bottom: 32px;
  }
}

.block_header_text {
  margin: 24px auto 0;
  max-width: 800px;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.096px;
}
@media (max-width: 991px) {
  .block_header_text {
    font-size: 18px;
    line-height: 130%;
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .block_header_text {
    font-size: 16px;
  }
}

.block_footer {
  text-align: center;
  margin-top: 48px;
}

textarea,
input[type=text],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
}

textarea,
input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  border-radius: 12px;
  background: var(--white);
  padding: 12px 16px;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder {
  /*color: var(--color-font-grey);*/
  opacity: 1;
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
  /*color: var(--color-font-grey);*/
  opacity: 1;
}

label {
  display: flex;
  align-items: center;
  gap: 8px;
}
label span {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}

/*
button[type='submit']:not(.btn) {	
	margin-top: 16px;
	padding: 13px;
	width: 100%;
	color: var(--white);	
	font-size: 16px;	
	font-weight: 700;
	line-height: 150%;
	letter-spacing: -0.064px;
	border-radius: 200px;
	background: var(--black);	

	@include _991 {
		margin-top: 8px;
	}

	span {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;

		&:after {
			content: '';
			display: block;
			width: 20px;
			height: 20px;			
			background-size: contain;
		}
	}

}
*/
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
  top: auto;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  padding: 0;
  width: 100%;
  gap: 10px;
  position: relative;
}
.swiper-pagination.swiper-pagination-bullets:not(:has(.swiper-pagination-bullet:only-child)) {
  height: 12px;
  margin-bottom: 48px;
}
@media (max-width: 1199px) {
  .swiper-pagination {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination {
    gap: 8px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #D3D8DF;
  margin: 0;
  opacity: 1;
}
@media (max-width: 767px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--crimson);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  /*opacity: 1;
  position: static;*/
  top: calc(50% - 32px);
  border-radius: 50%;
  background-color: #fff;
  width: 64px;
  height: 64px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px auto;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 32px;
    height: 32px;
    background-size: 24px auto;
  }
}

.swiper-button-prev {
  left: -32px;
  background-image: url("../img/slider_next.svg");
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: -16px;
  }
}

.swiper-button-next {
  right: -32px;
  background-image: url("../img/slider_next.svg");
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: -16px;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 767px) {
  .visible-xs {
    display: flex;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 122px;	*/
  z-index: 1;
}
header.shadow {
  /*border-bottom: 1px solid #A9A9A9;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, .25);*/
}
@media (max-width: 767px) {
  header {
    height: 81px;
  }
}
header {
  /*&:after {
  	content: '';
  	position: absolute;
  	left: 50%;
  	bottom: 0;
  	width: 100%;
  	max-width: 1440px;
  	height: 1px;
  	background: radial-gradient(49.78% 190.34% at 50.22% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  	transform: translateX(-50%);
  }*/
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  gap: var(--common-gap);
  padding: 5px 0 3px;
}
.hw_left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 88px;
}
@media (max-width: 767px) {
  .hw_left {
    width: 80px;
  }
}

.hwl_location {
  position: relative;
}
.hwll_selected {
  padding-left: 18px;
  padding-right: 4px;
  height: 17px;
  display: flex;
  gap: 4px;
  align-items: center;
  background: url("../img/location_sign.svg") left top no-repeat;
  background-size: 14px auto;
  cursor: pointer;
}

.hwlls_city {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.048px;
}

.hwlls_arrow {
  width: 16px;
  height: 16px;
  background: url("../img/white_arrow_down.svg") center no-repeat;
  background-size: contain;
}

.hwll_list {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 15px;
  padding-top: 5px;
  transition: opacity 0.2s ease-in-out;
}
.hwll_list ul {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hwll_list ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.048px;
}
.hwll_list ul li a {
  color: var(--black);
  text-decoration: none;
  display: block;
  padding: 2px 16px;
}
.hwll_list ul li a:hover {
  background: #f3f3f3;
  color: #000;
}

.hwl_location:hover .hwll_list {
  opacity: 1;
  pointer-events: all;
}

.ht_logo img {
  width: 100%;
}
.hw_center {
  display: flex;
  align-items: center;
}

.hw_right {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .hw_right {
    width: 60%;
    margin-top: 0;
  }
}

.hwr_contacts_wrapper {
  display: flex;
  gap: 16px;
}
.hwr_metro {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .hwr_metro:after, .hwr_metro:before {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 1px;
    height: 100%;
  }
  .hwr_metro:after {
    left: auto;
    right: 0;
  }
}
@media (max-width: 767px) {
  .hwr_metro {
    display: none;
  }
}

.hwrm_one {
  padding: 0 24px;
  position: relative;
  display: flex;
  gap: 8px;
  min-width: 240px;
}
@media (max-width: 991px) {
  .hwrm_one {
    min-width: 1px;
  }
}
.hwrm_one:after, .hwrm_one:last-child:before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #B3A398;
}
.hwrm_one:last-child:before {
  left: auto;
  right: 0;
}

.hwrmo_img {
  width: 29px;
  flex-shrink: 0;
}
.hwrmo_img img {
  width: 100%;
}

.hwrmo_data {
  color: var(--black);
}

.hwrmod_caption {
  margin-top: 3px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.064px;
}

.hwrmod_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.048px;
}
.hwr_phone {
  /*margin-right: 16px;*/
  display: flex;
  align-items: center;
}
.hwr_phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  height: 32px;
}
.hwr_phone a > * {
  display: block;
}
.hwr_phone a:hover .hwrp_phone {
  text-decoration: underline;
}

.hwrp_img {
  width: 32px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hwrp_img {
    width: 24px;
  }
}
.hwrp_img img {
  width: 100%;
}

.hwrp_phone {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.072px;
}

.hwr_icons ul {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.hwr_icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(222deg, #FFF -2.61%, #8DEEFF 86.62%);
  box-shadow: 0 0 8px 0 rgba(0, 86, 100, 0.4);
}
@media (max-width: 767px) {
  .hwr_icons ul li a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
  }
}
.hwr_icons ul li a img {
  max-width: 32px;
}
@media (max-width: 767px) {
  .hwr_icons ul li a img {
    max-width: 16px;
  }
}

.thanks_page .page_wrapper {
  height: 100%;
}

main {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.has_header .delete_1 {
  padding-top: 218px;
}
@media (max-width: 991px) {
  .has_header .delete_1 {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .has_header .delete_1 {
    padding-top: 147px;
  }
}

.delete_1 {
  padding-top: 170px;
  padding-bottom: 40px;
  background: url("../img/main_bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 27px;
}
@media (max-width: 991px) {
  .delete_1 {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .delete_1 {
    padding-top: 115px;
  }
}
.delete_1:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 200px;
  height: 40px;
  background: url("../img/scroll_elem.svg") center no-repeat;
  transform: translateX(-50%);
  z-index: 2;
}
.delete_1:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 48px;
  height: 48px;
  background: url("../img/scroll_icon.svg") center no-repeat;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 991px) {
  .delete_1 {
    /*padding-top: 160px;	
    padding-bottom: 80px;	*/
  }
}
@media (max-width: 767px) {
  .delete_1 {
    /*padding-top: 125px;	
    padding-bottom: 60px;	*/
  }
}

.potenza .delete_1 {
  margin-bottom: var(--padding);
}

.d1_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 138px;
  position: relative;
}
@media (max-width: 991px) {
  .d1_wrapper {
    gap: var(--common-gap);
  }
}
@media (max-width: 767px) {
  .d1_wrapper {
    flex-direction: column;
    padding-bottom: 250px;
  }
}
.d1_wrapper:after {
  content: "";
  position: absolute;
  left: calc(50% + 16px);
  bottom: -40px;
  width: 704px;
  height: 696px;
  background: url("../img/main_doctor.png") center bottom no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 991px) {
  .d1_wrapper:after {
    left: 40%;
    width: 560px;
    height: 560px;
  }
}
@media (max-width: 767px) {
  .d1_wrapper:after {
    /* display: none; */
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 704/696;
    max-width: 340px;
  }
}
.d1_wrapper:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -75px;
  width: 100%;
  max-width: 1440px;
  height: 1px;
  background: #B3A398;
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 991px) {
  .d1_wrapper:before {
    top: -26px;
  }
}
@media (max-width: 767px) {
  .d1_wrapper:before {
    top: -26px;
  }
}

.gynecology .d1_wrapper:after {
  background-image: url("../img/gynecology/new/main_gynecology.png");
}
.gynecology .d1_wrapper .d1w_left h1 {
  max-width: 700px;
}
.gynecology .d1_wrapper .d1w_right span .d1wr_text {
  color: var(--black);
}

.massage .d1_wrapper:after {
  background-image: url("../img/massage/new/main_massage.png");
}
.massage .d1_wrapper .d1w_left h1 {
  max-width: 700px;
}
.massage .d1_wrapper .d1w_right span .d1wr_text {
  color: var(--black);
}

.potenza .d1_wrapper:after {
  left: 56%;
  bottom: -49px;
  width: 490px;
  height: 540px;
  background-image: url("../img/potenza/device_img.png");
}
@media (max-width: 991px) {
  .potenza .d1_wrapper:after {
    left: 50%;
    width: 540px;
    height: 565px;
  }
}

.d1w_left {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
.d1w_left > img {
  max-width: 71px;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .d1w_left > img {
    max-width: 60px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .d1w_left > img {
    max-width: 50px;
    margin-bottom: 6px;
  }
}
.d1w_left h1 {
  color: var(--black);
  /*margin-top: 76px;*/
  margin-bottom: 24px;
}
.d1w_left h1 span {
  display: block;
}
@media (max-width: 991px) {
  .d1w_left h1 span {
    display: inline;
  }
}
@media (max-width: 991px) {
  .d1w_left h1 {
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .d1w_left h1 {
    padding-right: 48px;
  }
}

.potenza .d1w_left h1 {
  margin-top: 26px;
}
.potenza .d1w_left h1 span {
  position: relative;
}
.potenza .d1w_left h1 span .info {
  position: absolute;
  top: 8px;
  right: -32px;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/potenza/info_sign.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .potenza .d1w_left h1 span .info {
    top: 30px;
    right: -22px;
    width: 20px;
    height: 20px;
  }
}
.potenza .d1w_left h1 span .info .info_text {
  position: absolute;
  bottom: 12px;
  left: 24px;
  color: var(--white);
  font-family: var(--font-family-1);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
  width: 210px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 86, 100, 0.4);
  box-shadow: 0 10px 30px 0 rgba(0, 173, 202, 0.4);
  backdrop-filter: blur(2.5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 991px) {
  .potenza .d1w_left h1 span .info .info_text {
    width: 190px;
    padding: 12px 16px;
  }
}
@media (max-width: 767px) {
  .potenza .d1w_left h1 span .info .info_text {
    display: none;
  }
}
.potenza .d1w_left h1 span .info .info_text b {
  font-weight: 700;
}

.d1wl_text {
  max-width: 592px;
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.096px;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .d1wl_text {
    line-height: 130%;
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .d1wl_text {
    font-size: 18px;
    padding-right: 48px;
    margin-bottom: 32px;
  }
}

.potenza .d1wl_text {
  /*max-width: 70%;*/
  max-width: 630px;
}
.d1wl_features {
  margin-top: -24px;
  margin-bottom: 64px;
}
.d1wl_features ul {
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d1wl_features ul {
    gap: 16px;
    flex-direction: column;
  }
}
.d1wl_features ul li {
  width: 211px;
  padding-left: 44px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
  background: url("../img/potenza/double_ok.svg") left top no-repeat;
  background-size: 32px auto;
}
@media (max-width: 991px) {
  .d1wl_features ul li {
    width: auto;
    min-height: 18px;
  }
}
.d1wl_features ul li span {
  font-weight: 700;
}

@media (max-width: 767px) {
  .potenza .d1wl_features {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.d1wl_buttons {
  display: flex;
  gap: var(--common-gap);
  max-width: 592px;
  margin-bottom: 30px;
}
.d1wl_buttons > * {
  width: 50%;
}
@media (max-width: 991px) {
  .d1wl_buttons {
    flex-direction: column;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .d1wl_buttons > * {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .d1wl_buttons {
    margin-bottom: 16px;
  }
}

.potenza .d1wl_buttons {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .potenza .d1wl_buttons {
    margin-bottom: 16px;
  }
}
.potenza .d1wl_buttons button {
  padding: 16px 25px;
}

.d1wl_notice {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .d1wl_notice {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .d1wl_notice {
    font-size: 14px;
    line-height: 120%;
  }
}

.d1w_right {
  width: 280px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 0.5px solid var(--white);
  background: rgba(243, 238, 231, 0.4);
  backdrop-filter: blur(5px);
  padding: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .d1w_right {
    width: 100%;
    margin-bottom: 16px;
  }
}
.d1w_right a, .d1w_right span {
  display: block;
  text-decoration: none;
}
.d1w_right a > *, .d1w_right span > * {
  display: block;
}

.d1wr_img {
  margin-bottom: 12px;
}
.d1wr_img img {
  width: 100%;
  border-radius: 12px;
}

.d1wr_text {
  color: var(--brown);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.d1_side_menu {
  position: fixed;
  right: 0;
  top: 245px;
  border-radius: 32px 0 0 32px;
  background: rgba(0, 86, 100, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px;
  z-index: 2;
}
@media (max-width: 991px) {
  .d1_side_menu {
    top: 165px;
  }
}
.d1_side_menu:after {
  content: "";
  left: 0;
  top: 10%;
  position: absolute;
  width: 1px;
  height: 80%;
  background: radial-gradient(148500.13% 49.09% at 100% 50.91%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.d1_side_menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.d1_side_menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: linear-gradient(222deg, #FFF -2.61%, #8DEEFF 86.62%), #00ADCA;
  box-shadow: 0 0 8px 0 rgba(0, 86, 100, 0.4);
}
@media (max-width: 767px) {
  .d1_side_menu ul li a {
    width: 32px;
    height: 32px;
    border-radius: 32px;
  }
}
.d1_side_menu ul li a img {
  max-width: 24px;
}
@media (max-width: 767px) {
  .d1_side_menu ul li a img {
    max-width: 16px;
  }
}
.d1_side_menu ul li:last-child a img {
  max-width: 20px;
}
@media (max-width: 767px) {
  .d1_side_menu ul li:last-child a img {
    max-width: 16px;
  }
}

.delete_2 {
  margin-bottom: 152px;
}
@media (max-width: 991px) {
  .delete_2 {
    margin-bottom: var(--padding);
  }
}

.d2_wrapper {
  padding-top: 168px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d2_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .d2_wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}

.massage .d2w_item img {
  top: -138px;
  height: 252px;
}
.massage .d2w_item:nth-child(2) img {
  height: 337px;
}
.massage .d2w_item:nth-child(3) img {
  top: -176px;
  height: 321px;
}

.d2w_item {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: 114px 32px 32px;
  position: relative;
}
.d2w_item img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -167px;
  /*width: 100%;	*/
  height: 312px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}
.d2w_item:nth-child(2) img {
  top: -138px;
  width: 100%;
  height: 252px;
}
.d2w_item:nth-child(3) img {
  top: -138px;
}
@media (max-width: 991px) {
  .d2w_item {
    /*&:nth-child(3),
    &:nth-child(4) {
    	margin-top: 138px;
    }*/
    /* &:nth-child(3) img */
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .d2w_item:nth-child(3) {
    margin-top: 138px;
    grid-column: 1/span 2;
  }
  .d2w_item:nth-child(3) img {
    width: 50%;
    left: 25%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .d2w_item:nth-child(3) {
    /**/
    margin-top: 155px;
    grid-column: 1;
  }
  .d2w_item:nth-child(3) img {
    width: 100%;
    left: 50%;
  }
}
@media (max-width: 991px) {
  .d2w_item img {
    /*width: 83%;*/
  }
}
@media (max-width: 767px) {
  .d2w_item {
    margin-top: 155px;
    /*&:nth-child(3) img {									
    	width: 75%;
    }*/
  }
}

.d2wi_caption {
  color: var(--crimson);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.d2wi_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
  position: relative;
  z-index: 1;
}
.d2wi_text span {
  font-weight: 700;
}

.delete_3 {
  /*margin-bottom: calc(var(--padding) - 48px);*/
  margin-bottom: var(--padding);
}
.delete_3 .block_header {
  max-width: 1000px;
}

.d3_wrapper {
  position: relative;
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d3_wrapper {
    flex-direction: column;
  }
}
.d3_wrapper {
  /*.swiper-container {
  	padding-bottom: 60px;

  	.swiper-slide {
  		height: auto;
  		width: 50%;
  		margin-right: var(--common-gap);

  		@include _767 {
  			width: 100%;
  		}
  	}
  }*/
}

.d2w_cell {
  display: flex;
  width: 50%;
  gap: var(--common-gap);
  height: 580px;
  border-radius: 20px;
  padding: var(--common-gap);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .d2w_cell {
    height: 340px;
  }
}
@media (max-width: 767px) {
  .d2w_cell {
    /*flex-direction: column;
    height: 100%;*/
    height: 300px;
    width: 100%;
  }
}
.d2w_cell:nth-child(1) {
  background: radial-gradient(109.45% 113.39% at 50% -33.98%, #FFF 0%, rgba(255, 255, 255, 0) 100%), #BAADA1;
}
.d2w_cell:nth-child(1) .d2wcr_caption {
  color: var(--black);
}
.d2w_cell:nth-child(2) {
  background: radial-gradient(109.45% 113.39% at 50% -33.98%, #FBB1BF 0%, rgba(251, 177, 191, 0) 100%), #852839;
}

/*.d2wc_left {
	width: 50%;

	@include _767 {
		width: 100%;
		height: 200px;
	}

	img {
		width: 100%;
		height: 100%;
		object-fit: contain;						
	}
}*/
.d2wc_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.d2wc_right img {
  padding-bottom: 72px;
}
@media (max-width: 991px) {
  .d2wc_right img {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .d2wc_right {
    /*width: 100%;*/
    height: 100%;
    gap: 16px;
  }
}

.d2wcr_caption {
  color: var(--white);
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.4px;
}
@media (max-width: 991px) {
  .d2wcr_caption {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .d2wcr_caption {
    font-size: 26px;
    flex-grow: 1;
  }
}

.d2wcr_label span {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  display: inline-block;
}
@media (max-width: 991px) {
  .d2wcr_label span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .d2wcr_label span {
    width: 100%;
    text-align: center;
  }
}

.delete_4 {
  /*padding-top: var(--padding);
  padding-bottom: var(--padding);
  background: url('../img/rating_bg.jpg') center no-repeat;
  background-size: cover;*/
  /*h2, .block_header_text {
  	color: var(--white);
  }*/
  margin-bottom: var(--padding);
}

.d4_wrapper {
  /*display: flex;
  gap: var(--common-gap);*/
  /*width: 50%;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d4_wrapper {
    /*width: 66.666666%;*/
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .d4_wrapper {
    /*width: 100%;*/
    grid-template-columns: 1fr;
  }
}

/*.d4w_left {
	width: 50%;

	@include _991 {
		width: 33.333333%;
	}

	@include _767 {
		display: none;
	}

	img {
		width: 100%;
	}
}*/
/*.d4w_right {
	width: 50%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: var(--common-gap);

	@include _991 {
		width: 66.666666%;
	}

	@include _767 {
		width: 100%;
	}
}*/
.d4wr_block {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap);
}

.d4wrb_img {
  height: 65px;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .d4wrb_img {
    /*height: 30px;
    margin-bottom: 24px;*/
  }
}
@media (max-width: 767px) {
  .d4wrb_img {
    /*height: 20px;
    margin-bottom: 16px;*/
  }
}
.d4wrb_img img {
  height: 100%;
}

.d4wrb_rating {
  color: var(--black);
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .d4wrb_rating {
    font-size: 40px;
    margin-bottom: 8px;
  }
}

.d4wrb_stars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.d4wrb_stars img {
  width: 35px;
}
@media (max-width: 767px) {
  .d4wrb_stars img {
    width: 24px;
  }
}

.d4wrb_text {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
}

.delete_5 {
  margin-top: var(--padding);
  margin-bottom: var(--padding);
}
.delete_5 .block_header {
  max-width: 1140px;
}
.delete_5 .block_header span {
  display: block;
}

.d5_wrapper {
  border-radius: 20px 20px 120px 20px;
  background: radial-gradient(109.45% 113.39% at 50% -33.98%, #FFF 0%, rgba(255, 255, 255, 0) 100%), #BAADA1;
  padding: var(--common-gap);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .d5_wrapper {
    width: 100%;
  }
}
.d5_wrapper:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 520px;
  height: 705px;
  background: url("../img/founder_0.png") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .d5_wrapper:after {
    width: 322px;
    height: 437px;
  }
}
@media (max-width: 767px) {
  .d5_wrapper:after {
    display: none;
  }
}

.d5w_quote {
  color: var(--crimson);
  font-family: var(--font-family-2);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
  padding-left: 114px;
  margin-bottom: 49px;
  background: url("../img/quotes.svg") left top no-repeat;
  background-size: 90px auto;
}
@media (max-width: 991px) {
  .d5w_quote {
    font-size: 26px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .d5w_quote {
    font-size: 22px;
    padding-left: 80px;
    background-size: 60px auto;
  }
}

.d5w_text {
  position: relative;
  margin-bottom: 49px;
  color: var(--black);
  font-family: var(--font-family-2);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.104px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .d5w_text {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .d5w_text {
    gap: 4px;
  }
}
.d5w_text p, .d5w_text ul li {
  color: var(--black);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.104px;
}
@media (max-width: 991px) {
  .d5w_text p, .d5w_text ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .d5w_text p, .d5w_text ul li {
    font-size: 17px;
  }
}
.d5w_text p {
  max-width: 64%;
}
@media (max-width: 767px) {
  .d5w_text p {
    max-width: none;
  }
}
.d5w_text ul {
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 60%;
}
@media (max-width: 767px) {
  .d5w_text ul {
    max-width: none;
  }
}
.d5w_text ul li {
  list-style-type: disc;
}
@media (max-width: 991px) {
  .d5w_text {
    font-size: 22px;
    line-height: 120%;
    max-width: none;
  }
}
.d5w_text:before, .d5w_text:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 1440px;
  height: 1px;
  background: #B3A398;
  transform: translateX(-50%);
  z-index: 0;
}
.d5w_text:before {
  top: -24px;
}
.d5w_text:after {
  bottom: -24px;
}

@media (max-width: 767px) {
  .d5w_person {
    display: flex;
    gap: 16px;
  }
}
.d5w_person img {
  display: none;
}
@media (max-width: 767px) {
  .d5w_person img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    border: 1px solid #ccc;
    flex-shrink: 0;
  }
}

.d5wp_info {
  color: var(--black);
}

.d5wp_name {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .d5wp_name {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .d5wp_name {
    font-size: 20px;
    margin-bottom: 4px;
  }
}

.d5wp_position {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .d5wp_position {
    font-size: 15px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .d5wp_position {
    font-size: 14px;
  }
}

.delete_6 {
  margin-bottom: var(--padding);
}

.d6w_switcher {
  margin-bottom: 48px;
}
.d6w_switcher ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
}
@media (max-width: 991px) {
  .d6w_switcher ul {
    gap: 31px;
  }
}
@media (max-width: 767px) {
  .d6w_switcher ul {
    flex-wrap: wrap;
    gap: 16px 31px;
  }
}
.d6w_switcher ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 991px) {
  .d6w_switcher ul li {
    font-size: 14px;
    line-height: 130%;
  }
}
.d6w_switcher ul li:after {
  content: "";
  position: absolute;
  right: -21px;
  top: 0;
  width: 1px;
  height: 100%;
  background: radial-gradient(148500.13% 49.09% at 100% 50.91%, #3A3A4D 0%, rgba(58, 58, 77, 0) 100%);
}
@media (max-width: 991px) {
  .d6w_switcher ul li:after {
    right: -15px;
  }
}
.d6w_switcher ul li span {
  display: inline-block;
  padding: 11px;
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  text-align: center;
}
@media (max-width: 991px) {
  .d6w_switcher ul li span {
    padding: 0;
  }
}
.d6w_switcher ul li:hover:not(.active) span {
  color: var(--blue);
}
.d6w_switcher ul li.active span {
  cursor: default;
  color: var(--blue);
}
.d6w_switcher ul li:last-child:after {
  display: none;
}

.d6w_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 1199px) {
  .d6w_content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .d6w_content {
    grid-template-columns: 1fr;
  }
}
.d6w_content a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 40px 40px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  text-decoration: none;
}
@media (max-width: 991px) {
  .d6w_content a {
    padding: 24px;
    gap: 16px;
  }
}
.d6w_content a:hover .d6wcbd_link {
  text-decoration: none;
}

.d6wcb_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .d6wcb_img {
    height: 190px;
  }
}
.d6wcb_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .d6wcb_img img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}

.d6wcbi_share {
  position: absolute;
  top: -24px;
  right: -24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid var(--crimson);
  background: var(--crimson);
  width: 100px;
  height: 100px;
  transform: rotate(15deg);
}
@media (max-width: 991px) {
  .d6wcbi_share {
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
  }
}

.d6wcbis_price {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.9px;
}

.d6wcbis_text {
  color: var(--white);
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.2px;
}

.d6wcb_data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.d6wcbd_caption {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 991px) {
  .d6wcbd_caption {
    font-size: 18px;
    line-height: 120%;
    /*margin-bottom: 8px;*/
  }
}

.d6wcbd_link {
  display: block;
  color: var(--blue);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .d6wcbd_link {
    font-size: 14px;
    line-height: 120%;
  }
}

.delete_7 {
  margin-bottom: calc(var(--padding) - 48px);
}

.d7_wrapper {
  position: relative;
}
.d7_wrapper .swiper-container {
  padding-bottom: 48px;
}
.d7_wrapper .swiper-container .swiper-wrapper .swiper-slide:nth-child(2) .d7w_cell img {
  right: -163px;
}
@media (max-width: 767px) {
  .d7_wrapper .swiper-container .swiper-slide {
    height: auto;
  }
}

.d7w_cell {
  position: relative;
  border-radius: 20px;
  background: url("../img/service_bg_1.jpg") center no-repeat;
  background-size: cover;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--common-gap);
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .d7w_cell {
    padding: 24px;
    min-height: 485px;
  }
}
@media (max-width: 767px) {
  .d7w_cell {
    padding: 16px;
    min-height: 1px;
    height: 100%;
  }
}
.d7w_cell:nth-child(2) {
  background-image: url("../img/service_bg_2.jpg");
}
.d7w_cell:nth-child(3) {
  background-image: url("../img/service_bg_3.jpg");
}
.d7w_cell:nth-child(42) {
  background-image: url("../img/service_bg_4.jpg");
}
.d7w_cell:nth-child(5) {
  background-image: url("../img/service_bg_5.jpg");
}
.d7w_cell > img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100%;
  z-index: 0;
}
@media (max-width: 991px) {
  .d7w_cell > img {
    height: 100%;
    right: -15%;
  }
}
@media (max-width: 767px) {
  .d7w_cell > img {
    display: none;
  }
}

.d7wc_top {
  position: relative;
  z-index: 1;
}

.d7wct_caption {
  color: var(--white);
  font-family: var(--font-family-2);
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
  max-width: 68%;
}
@media (max-width: 991px) {
  .d7wct_caption {
    font-size: 48px;
    margin-bottom: 16px;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .d7wct_caption {
    font-size: 36px;
    max-width: none;
  }
}
.d7wct_caption span {
  font-style: italic;
}

.d7wct_text {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.096px;
  max-width: 49%;
}
@media (max-width: 991px) {
  .d7wct_text {
    font-size: 22px;
    line-height: 130%;
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .d7wct_text {
    font-size: 18px;
    max-width: none;
  }
}
.d7wct_text span {
  font-weight: 700;
}

.d7wc_bottom {
  position: relative;
  z-index: 1;
}

.d7wcb_price {
  color: var(--blue);
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .d7wcb_price {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
.d7wcb_price .d7wcb_price_small {
  font-size: 32px;
  letter-spacing: -0.32px;
}
.d7wcb_price .d7wcb_price_old {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.24px;
  text-decoration-line: line-through;
}

@media (max-width: 767px) {
  .d7wcb_btn button {
    width: 100%;
  }
}

.delete_8 {
  margin-bottom: var(--padding);
}

.d8_wrapper img {
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  overflow: hidden;
  width: 100%;
}

.delete_9 .block_footer {
  margin-top: 0;
}
.delete_9 {
  /*.d9_wrapper:has(:not(.swiper-pagination-bullets)) {
  	margin-bottom: -12px;
  }*/
}

.delete_9,
.delete_10 {
  margin-bottom: var(--padding);
  /*.block_footer {
  	margin-top: 48px;			
  }*/
}

.delete_10 {
  margin-bottom: calc(var(--padding) - 48px);
}

/*.potenza .delete_10 {		
	margin-bottom: calc(var(--padding) - 48px);

}*/
.d9_wrapper,
.d10_wrapper {
  position: relative;
}
.d9_wrapper .swiper-container,
.d10_wrapper .swiper-container {
  padding-bottom: 48px;
}
.d9_wrapper .swiper-container, .d9_wrapper .swiper-wrapper, .d9_wrapper .swiper-slide,
.d10_wrapper .swiper-container,
.d10_wrapper .swiper-wrapper,
.d10_wrapper .swiper-slide {
  height: auto;
}

.d9_wrapper .swiper-slide {
  width: 33.333333%;
  margin-right: var(--common-gap);
}
@media (max-width: 991px) {
  .d9_wrapper .swiper-slide {
    width: 50%;
  }
}

.d9w_cell {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border-radius: 20px;
  background: radial-gradient(289.01% 87.54% at 50% 124.71%, #F3EEE7 0%, rgba(243, 238, 231, 0) 100%), radial-gradient(183.24% 55.5% at 50% -11.86%, #F3EEE7 0%, rgba(243, 238, 231, 0) 100%), #BAADA1;
  padding: var(--common-gap);
  height: 100%;
}

.potenza .d9w_cell {
  background: var(--white);
}
.potenza .d9w_cell .d9wct_caption,
.potenza .d9w_cell .d9wcb_time {
  color: var(--black);
}

.d9wct_caption {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
}

.d9wcb_time {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
  margin-bottom: 32px;
}

.d9wcb_images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.d9wcbi_one {
  position: relative;
  height: 200px;
}
.d9wcbi_one:after {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
  padding: 8px 16px;
  border-radius: 32px;
  border: 0.5px solid var(--white);
  background: rgba(243, 238, 231, 0.4);
  backdrop-filter: blur(2px);
  min-width: 82px;
  text-align: center;
}
.d9wcbi_one:nth-child(1):after {
  content: "До";
}
.d9wcbi_one:nth-child(2):after {
  content: "После";
}
.d9wcbi_one img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.d10w_cell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #F0F2F4;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
  justify-content: space-between;
  height: 100%;
  min-height: 650px;
}
@media (max-width: 991px) {
  .d10w_cell {
    padding: 24px;
    min-height: 1px;
  }
}
@media (max-width: 767px) {
  .d10w_cell {
    padding: 16px;
  }
}
.d10w_cell > img {
  position: absolute;
  left: 58.333333%;
  bottom: 0;
  height: 590px;
  z-index: 1;
}
@media (max-width: 991px) {
  .d10w_cell > img {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .d10w_cell > img {
    display: none;
  }
}
.d10w_cell:after {
  /*content: '';
  position: absolute;
  right: 45px;
  bottom: 82px;
  width: 339px;
  height: 568px;
  background: url('../img/d_sign.svg') center no-repeat;
  background-size: contain;

  @include _991 {
  	right: 12px;
  	width: 270px;
  	height: 480px;
  }

  @include _767 {
  	display: none;
  }*/
}

.d10wc_top {
  width: 58.333333%;
}
@media (max-width: 767px) {
  .d10wc_top {
    width: 100%;
  }
}

.d10wct_name {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 64px;
}
.d10wct_name img {
  display: none;
}
@media (max-width: 767px) {
  .d10wct_name img {
    display: block;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #ccc;
  }
}
@media (max-width: 991px) {
  .d10wct_name {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .d10wct_name {
    font-size: 22px;
    display: flex;
    gap: 16px;
  }
}

.d10wct_quote {
  color: var(--black);
  font-family: var(--font-family-2);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.104px;
  border-radius: 20px;
  border: 1px solid rgba(0, 173, 202, 0.4);
  background: var(--white);
  padding: 49px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 991px) {
  .d10wct_quote {
    font-size: 22px;
    line-height: 120%;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d10wct_quote {
    font-size: 18px;
    padding: 24px 16px 16px;
  }
}
.d10wct_quote:after {
  content: "";
  position: absolute;
  left: 32px;
  top: -32px;
  width: 90px;
  height: 66px;
  background: url("../img/quotes_2.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .d10wct_quote:after {
    left: 24px;
    top: -24px;
    width: 60px;
    height: 44px;
  }
}

.d10wc_bottom {
  width: 58.333333%;
}
@media (max-width: 767px) {
  .d10wc_bottom {
    width: 100%;
  }
}

.d10wcb_text {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.18px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .d10wcb_text {
    margin-bottom: 6px;
  }
}

.d10wcb_position {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .d10wcb_position {
    line-height: 130%;
  }
}

.delete_11 {
  margin-bottom: var(--padding);
}

.d11_wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .d11_wrapper {
    /*gap: 24px;*/
  }
}

.d11w_row {
  display: flex;
  gap: var(--common-gap);
}
.d11w_row > * {
  width: 50%;
}
@media (max-width: 767px) {
  .d11w_row {
    flex-direction: column;
  }
  .d11w_row:nth-child(2) {
    flex-direction: column-reverse;
  }
  .d11w_row > .d11wr_left {
    /*width: 40%;*/
    width: 100%;
  }
  .d11w_row > .d11wr_right {
    /*width: 60%;*/
    width: 100%;
  }
}

.d11wr_left img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .d11wr_left img {
    /*height: 100%;
    object-fit: cover;
    object-position: center top;
    max-height: 100px;*/
    border-radius: 10px;
  }
}

.d11wrr_number {
  font-family: var(--font-family-2);
  font-size: 120px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.2px;
  background: linear-gradient(180deg, #FDE4AB 5.17%, #C7A260 47.53%, #76470F 89.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .d11wrr_number {
    font-size: 90px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .d11wrr_number {
    font-size: 60px;
    margin-bottom: 8px;
  }
}

.d11wrr_caption {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .d11wrr_caption {
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .d11wrr_caption {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.d11wrr_text {
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.d11wrr_text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.072px;
}
.d11wrr_text p b {
  font-weight: 700;
}
@media (max-width: 991px) {
  .d11wrr_text p {
    font-size: 16px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .d11wrr_text p {
    font-size: 14px;
  }
}

.delete_12 {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  margin-bottom: var(--padding);
  background: url("../img/eq_bg.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .delete_12 {
    padding-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .potenza .delete_12 .block_footer button {
    width: 100%;
    max-width: 400px;
  }
}

.d12_wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 180px;
}
@media (max-width: 991px) {
  .d12_wrapper {
    gap: 48px;
    margin-bottom: 140px;
  }
}
@media (max-width: 767px) {
  .d12_wrapper {
    gap: 32px;
    margin-bottom: 48px;
  }
}

.potenza .d12_wrapper {
  gap: 128px;
  margin-bottom: 128px;
}
@media (max-width: 991px) {
  .potenza .d12_wrapper {
    gap: 90px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .potenza .d12_wrapper {
    gap: 32px;
    margin-bottom: 48px;
  }
}

.potenza .d12w_row:nth-child(1) .d12wrd_cell {
  left: -176px;
  top: 145px;
}
@media (max-width: 991px) {
  .potenza .d12w_row:nth-child(1) .d12wrd_cell {
    left: -40px;
    top: 60px;
  }
}
.potenza .d12w_row:nth-child(2) .d12wrd_cell {
  right: -176px;
  top: 229px;
}
@media (max-width: 991px) {
  .potenza .d12w_row:nth-child(2) .d12wrd_cell {
    right: -40px;
    top: 60px;
  }
}
.potenza .d12w_row .d12wrdc_list {
  margin-bottom: 0;
}

.gynecology .d12_wrapper {
  margin-bottom: 60px;
}
.gynecology .d12_wrapper .d12w_row:nth-child(1) {
  margin-bottom: 146px;
}
@media (max-width: 767px) {
  .gynecology .d12_wrapper .d12w_row:nth-child(1) {
    margin-bottom: 0;
  }
}
.gynecology .d12_wrapper .d12w_row:nth-child(1) .d12wrd_cell {
  /*right: -73px;
  top: -60px;*/
  left: 0;
  width: calc(100% + 280px);
}
@media (max-width: 991px) {
  .gynecology .d12_wrapper .d12w_row:nth-child(1) .d12wrd_cell {
    width: calc(100% + 175px);
  }
}
@media (max-width: 767px) {
  .gynecology .d12_wrapper .d12w_row:nth-child(1) .d12wrd_cell {
    flex-direction: column-reverse;
    width: 100%;
  }
}

.d12w_row {
  display: flex;
}
.d12w_row:nth-child(1) {
  margin-bottom: 132px;
}
@media (max-width: 991px) {
  .d12w_row:nth-child(1) {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .d12w_row:nth-child(1) {
    margin-bottom: 0;
  }
}
.d12w_row:nth-child(1) .d12wrd_cell {
  left: -280px;
  width: calc(100% + 280px);
}
@media (max-width: 991px) {
  .d12w_row:nth-child(1) .d12wrd_cell {
    left: -175px;
    width: calc(100% + 175px);
  }
}
@media (max-width: 767px) {
  .d12w_row:nth-child(1) .d12wrd_cell {
    width: 100%;
  }
}
.d12w_row:nth-child(2) .d12wrd_cell {
  /*right: -73px;
  top: -60px;*/
  left: 0;
  width: calc(100% + 280px);
}
@media (max-width: 991px) {
  .d12w_row:nth-child(2) .d12wrd_cell {
    width: calc(100% + 175px);
  }
}
@media (max-width: 767px) {
  .d12w_row:nth-child(2) .d12wrd_cell {
    width: 100%;
  }
}
.d12w_row:nth-child(3) .d12wrd_cell {
  /*left: -73px;*/
}
.d12w_row:nth-child(3) .d12wrd_cell .d12wrdc_list {
  /*margin-bottom: 0;*/
}
.d12w_row:nth-child(2) .d12wrd_cell {
  /*right: -73px;*/
}
@media (max-width: 767px) {
  .d12w_row {
    flex-direction: column;
    gap: 16px;
  }
  .d12w_row:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.d12wr_video {
  width: 75%;
}
@media (max-width: 991px) {
  .d12wr_video {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .d12wr_video {
    width: 100%;
  }
}
.d12wr_video a, .d12wr_video span {
  display: block;
  height: 509px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(201, 189, 182, 0.4);
  overflow: hidden;
}
@media (max-width: 991px) {
  .d12wr_video a, .d12wr_video span {
    height: 410px;
  }
}
@media (max-width: 767px) {
  .d12wr_video a, .d12wr_video span {
    height: 240px;
  }
}
.d12wr_video a img, .d12wr_video span img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.d12wr_video a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  background: url("../img/play.svg") center no-repeat;
  background-size: contain;
  margin: -60px 0 0 -60px;
}

.d12wr_data {
  width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .d12wr_data {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .d12wr_data {
    width: 100%;
  }
}

.d12wrd_cell {
  width: calc(100% + 73px);
  position: absolute;
  top: 60px;
  color: var(--brown);
  border-radius: 20px;
  border: 0.5px solid var(--white);
  background: rgba(243, 238, 231, 0.4);
  backdrop-filter: blur(5px);
  padding: var(--common-gap);
  z-index: 1;
}
@media (max-width: 991px) {
  .d12wrd_cell {
    top: 48px;
  }
}
@media (max-width: 767px) {
  .d12wrd_cell {
    position: static;
    width: 100%;
  }
}

.potenza .d12wrd_cell {
  width: calc(100% + 176px);
}
@media (max-width: 991px) {
  .potenza .d12wrd_cell {
    width: calc(100% + 40px);
  }
}
@media (max-width: 767px) {
  .potenza .d12wrd_cell {
    width: 100%;
  }
}

.d12wrdc_header {
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--crimson);
}
.d12wrdc_header sup {
  font-size: 10px;
  top: -16px;
}
@media (max-width: 991px) {
  .d12wrdc_header {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

.d12wrdc_text {
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.072px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .d12wrdc_text {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 16px;
  }
}

.d12wrdc_list {
  margin-bottom: 49px;
}
@media (max-width: 991px) {
  .d12wrdc_list {
    margin-bottom: 33px;
  }
}
.d12wrdc_list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 991px) {
  .d12wrdc_list ul {
    gap: 6px;
  }
}
.d12wrdc_list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
  position: relative;
  padding-left: 32px;
  min-height: 24px;
  background: url("../img/ok_check.svg") left top no-repeat;
  background-size: 24px auto;
}
@media (max-width: 991px) {
  .d12wrdc_list ul li {
    font-size: 15px;
    line-height: 120%;
  }
}

.d12wrdc_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.d12wrdc_info:after {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  width: 100%;
  height: 1px;
  background: radial-gradient(190.34% 49.78% at 50.22% 50%, #8C7363 0%, rgba(140, 115, 99, 0) 100%);
  z-index: 0;
}
@media (max-width: 991px) {
  .d12wrdc_info:after {
    top: -15px;
  }
}
.d12wrdc_info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.072px;
}
@media (max-width: 991px) {
  .d12wrdc_info p {
    font-size: 16px;
    line-height: 120%;
  }
}
.d12wrdc_info p b {
  font-weight: 600;
}

.delete_13,
.delete_17 {
  margin-bottom: calc(var(--padding) - 48px);
}
.d13_wrapper,
.d17_wrapper {
  position: relative;
}
.d13_wrapper .swiper-container,
.d17_wrapper .swiper-container {
  padding-bottom: 60px;
}

.d13_wrapper .swiper-slide {
  width: 25%;
  margin-right: var(--common-gap);
}
@media (max-width: 991px) {
  .d13_wrapper .swiper-slide {
    width: 50%;
  }
}

.d13w_cell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
}
.d13w_cell * {
  display: block;
}

.d13wc_img {
  height: 498px;
  display: block;
}
.d13wc_img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.d13wc_img:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  background: url("../img/play.svg") center no-repeat;
  background-size: contain;
  margin: -60px 0 0 -60px;
}

.d13wcd_caption {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.064px;
  margin-bottom: 4px;
}

.d13wcd_text {
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.048px;
  opacity: 0.8;
}

.delete_14 {
  margin-bottom: var(--padding);
}

.d14_wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
}

.d14w_row {
  display: flex;
  gap: var(--common-gap);
}
.d14w_row:nth-child(1) .d14wr_block:nth-child(1), .d14w_row:nth-child(2) .d14wr_block:nth-child(2) {
  width: 66.666666%;
}
@media (max-width: 767px) {
  .d14w_row:nth-child(1) .d14wr_block:nth-child(1), .d14w_row:nth-child(2) .d14wr_block:nth-child(2) {
    width: 100%;
  }
}
.d14w_row {
  /*&:nth-child(2) .d14wr_block:nth-child(2) {
  	width: 66.666666%;

  	@include _767 {
  		width: 100%;
  	}
  }*/
}
.d14w_row:nth-child(3) .d14wr_block {
  width: 100%;
  height: 660px;
}
@media (max-width: 991px) {
  .d14w_row:nth-child(3) .d14wr_block {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .d14w_row:nth-child(3) .d14wr_block {
    height: 215px;
  }
}
@media (max-width: 767px) {
  .d14w_row .d14wr_block {
    width: 100%;
  }
  .d14w_row:nth-child(1) {
    flex-direction: column;
  }
  .d14w_row:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.d14wr_block {
  width: 33.333333%;
}

.d14wr_block.d14wr_block_img {
  height: 440px;
}
@media (max-width: 991px) {
  .d14wr_block.d14wr_block_img {
    height: 290px;
  }
}
@media (max-width: 767px) {
  .d14wr_block.d14wr_block_img {
    height: 215px;
  }
}
.d14wr_block.d14wr_block_img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.d14wr_block.d14wr_block_text {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.096px;
}
@media (max-width: 991px) {
  .d14wr_block.d14wr_block_text {
    font-size: 18px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .d14wr_block.d14wr_block_text {
    font-size: 16px;
  }
}

.massage .delete_15 .block_header {
  max-width: 940px;
}

.delete_15 {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  background: url("../img/select_bg.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .delete_15 {
    padding-bottom: 48px;
  }
}
@media (max-width: 991px) {
  .delete_15 .block_header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .delete_15 .block_header {
    margin-bottom: 32px;
  }
}
.delete_15 .block_body {
  display: flex;
  gap: var(--common-gap);
}

.d15_img {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .d15_img {
    display: none;
  }
}
.d15_img img {
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--padding));
  width: 100%;
}
@media (max-width: 991px) {
  .d15_img img {
    bottom: -48px;
  }
}

.d15_wrapper {
  width: 50%;
  border-radius: 20px;
  border: 0.5px solid var(--white);
  background: rgba(243, 238, 231, 0.4);
  box-shadow: 0 10px 30px 0 rgba(201, 189, 182, 0.4);
  backdrop-filter: blur(5px);
  padding: var(--common-gap);
}
@media (max-width: 767px) {
  .d15_wrapper {
    width: 100%;
  }
}
.d15_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.d15_wrapper form .d15wform_block:nth-child(2) .d15wform_block_body {
  gap: 4px;
}

.d15w_header {
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

#allrecords .d15w_notice a {
  color: var(--black);
  text-decoration: underline;
}
#allrecords .d15w_notice a:hover {
  text-decoration: none;
}

.d15w_notice {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.048px;
}
.d15w_notice a {
  color: var(--black);
  text-decoration: underline;
}
.d15w_notice a:hover {
  text-decoration: none;
}

.d15wform_block_header {
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  margin-bottom: 16px;
}

.d15wform_block_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.d15wformb_cell {
  position: relative;
}

.delete_16 {
  margin-bottom: var(--padding);
}

.d16_wrapper {
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d16_wrapper {
    flex-direction: column;
  }
}

.d16w_left {
  width: 58.333333%;
}
@media (max-width: 991px) {
  .d16w_left {
    width: 100%;
  }
}

.d16wl_cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  height: 457px;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap);
  overflow: hidden;
}
@media (max-width: 991px) {
  .d16wl_cell {
    height: 360px;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .d16wl_cell {
    height: auto;
    gap: 16px;
  }
}
.d16wl_cell img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 991px) {
  .d16wl_cell img {
    -o-object-position: center;
       object-position: center;
  }
}
.d16wl_cell span {
  display: block;
  position: relative;
  z-index: 1;
}
.d16wl_cell:hover .d16wlcb_link span {
  text-decoration: none;
}

.d16wlc_date span {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.056px;
  border-radius: 32px;
  border: 0.5px solid var(--white);
  background: rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  display: inline-block;
}

.d16wlc_bottom {
  max-width: 55%;
}
@media (max-width: 1199px) {
  .d16wlc_bottom {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .d16wlc_bottom {
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .d16wlc_bottom {
    max-width: 70%;
  }
}

.d16wlcb_caption {
  color: var(--black);
  font-family: var(--font-family-2);
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.32px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .d16wlcb_caption {
    font-size: 22px;
  }
}

.d16wlcb_text {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.072px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .d16wlcb_text {
    font-size: 14px;
    line-height: 120%;
  }
}

.d16wlcb_link span {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .d16wlcb_link span {
    font-size: 14px;
    line-height: 120%;
  }
}

.d16w_right {
  width: 41.666666%;
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
  justify-content: space-between;
}
@media (max-width: 991px) {
  .d16w_right {
    width: 100%;
  }
}
.d16w_right a {
  display: flex;
  gap: var(--common-gap);
  align-items: center;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  text-decoration: none;
  height: 212px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .d16w_right a {
    height: 170px;
  }
}
.d16w_right a img {
  width: 176px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  flex-shrink: 0;
}
.d16w_right a span {
  display: block;
}
.d16w_right a span.d16wrc_caption {
  display: -webkit-box;
}

.d16wrc_block {
  flex-grow: 1;
  padding: var(--common-gap) var(--common-gap) var(--common-gap) 0;
}

.d16wrc_date {
  color: #97A3B3;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.056px;
  margin-bottom: 12px;
}

.d16wrc_caption {
  color: var(--black);
  font-family: var(--font-family-2);
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.24px;
  text-overflow: ellipsis;
  /*max-height: 115px;*/
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .d16wrc_caption {
    font-size: 20px;
  }
}

.d17_wrapper .swiper-slide {
  width: 50%;
  height: auto;
  margin-right: var(--common-gap);
}
@media (max-width: 767px) {
  .d17_wrapper .swiper-slide {
    width: 100%;
  }
}

.d17w_cell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap);
  position: relative;
  height: 100%;
}
@media (max-width: 767px) {
  .d17w_cell {
    padding: 24px;
    gap: 16px;
  }
}
.d17w_cell:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-radius: 16px;
  border: 1px solid var(--blue);
  opacity: 0.4;
}
.d17w_cell:after {
  content: "";
  position: absolute;
  right: 40px;
  top: -12px;
  width: 90px;
  height: 66px;
  background: url("../img/quotes.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .d17w_cell:after {
    right: 40px;
    top: -12px;
    width: 60px;
    height: 44px;
  }
}

.d17wc_img {
  height: 90px;
}
@media (max-width: 767px) {
  .d17wc_img {
    height: 60px;
  }
}
.d17wc_img img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.d17wc_data {
  color: var(--black);
  font-family: var(--font-family-2);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.104px;
}
@media (max-width: 991px) {
  .d17wc_data {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .d17wc_data {
    font-size: 22px;
    line-height: 120%;
  }
}

.delete_18 {
  height: 680px;
  position: relative;
}
@media (max-width: 991px) {
  .delete_18 {
    height: 480px;
  }
}
.delete_18 .col-12 {
  position: relative;
}

#ymap_1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ymap_link {
  position: absolute;
  left: calc(var(--bs-gutter-x) / 2);
  top: 316px;
}
@media (max-width: 991px) {
  .ymap_link {
    top: 170px;
  }
}
@media (max-width: 767px) {
  .ymap_link {
    top: 230px;
  }
}
.ymap_link a {
  display: block;
  width: 176px;
  text-decoration: none;
  border-radius: 20px;
  background: radial-gradient(146.24% 44.3% at 50% -10.88%, #FBB1BF 0%, rgba(251, 177, 191, 0) 100%), #852839;
  padding: 156px 24px 24px;
  position: relative;
}
@media (max-width: 767px) {
  .ymap_link a {
    width: 130px;
    padding: 120px 24px 24px;
  }
}
.ymap_link a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  background: url("../img/play.svg") center no-repeat;
  background-size: contain;
  margin: -60px 0 0 -60px;
  top: 24px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .ymap_link a:after {
    width: 80px;
    height: 80px;
    margin: 0 0 0 -40px;
  }
}
.ymap_link a span {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 767px) {
  .ymap_link a span {
    font-size: 14px;
    line-height: 120%;
    display: block;
  }
}

.fixed_menu {
  position: fixed;
  top: 0;
  right: -451px;
  opacity: 0;
  pointer-events: none;
  width: 450px;
  height: 100%;
  background: rgba(58, 58, 77, 0.9);
  padding: var(--common-gap);
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5);
  z-index: 2;
  transition: right 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .fixed_menu {
    right: -301px;
    width: 300px;
  }
}
.fixed_menu.fm_active {
  opacity: 1;
  pointer-events: all;
  right: 0;
}

.fixed_menu_header {
  position: relative;
  height: 48px;
}
@media (max-width: 991px) {
  .fixed_menu_header {
    height: 32px;
  }
}

.fixed_menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: url("../img/close.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 991px) {
  .fixed_menu_close {
    width: 32px;
    height: 32px;
  }
}

.fixed_menu_body ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 991px) {
  .fixed_menu_body ul {
    gap: 8px;
  }
}
.fixed_menu_body ul li {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
}
@media (max-width: 991px) {
  .fixed_menu_body ul li {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .fixed_menu_body ul li {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
  }
}
.fixed_menu_body ul li a {
  color: var(--white);
  text-decoration: none;
}
.fixed_menu_body ul li a:hover {
  text-decoration: underline;
}
.fixed_menu_body form {
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
}

.delete_19 {
  margin-bottom: 60px;
}
.delete_19 .block_header {
  max-width: 990px;
}

.d19_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--common-gap);
  height: 600px;
  padding: 60px;
  border-radius: 20px;
  background-image: url("../img/potenza/device_2.png"), url("../img/potenza/potenza_new_bg_1.jpg");
  background-position: right top, center;
  background-repeat: no-repeat;
  background-size: auto 100%, cover;
}
@media (max-width: 991px) {
  .d19_wrapper {
    padding: var(--common-gap);
    background-position: right -70px top, center;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .d19_wrapper {
    background: url("../img/potenza/potenza_new_bg_1.jpg") center no-repeat;
    background-size: cover;
  }
}

.d19w_data {
  max-width: 530px;
}
@media (max-width: 991px) {
  .d19w_data {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .d19w_data {
    max-width: none;
  }
}

.d19wd_caption {
  font-family: var(--font-family-2);
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FDE4AB 5.17%, #C7A260 47.53%, #76470F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .d19wd_caption {
    margin-bottom: 16px;
  }
}

.d19wd_text {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: -0.096px;
}
@media (max-width: 991px) {
  .d19wd_text {
    font-size: 20px;
    line-height: 130%;
  }
}
.d19wd_text span {
  font-weight: 600;
}

@media (max-width: 767px) {
  .d19w_btn button {
    width: 100%;
  }
}

.delete_20 {
  margin-bottom: var(--padding);
}

.d20_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d20_wrapper {
    grid-template-columns: 1fr;
  }
}

.d20w_cell {
  position: relative;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap) var(--common-gap) 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .d20w_cell {
    padding: var(--common-gap);
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .d20w_cell {
    padding: 32px var(--common-gap);
  }
}
.d20w_cell:after {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-radius: 16px;
  border: 1px solid var(--blue);
  opacity: 0.4;
}
@media (max-width: 991px) {
  .d20w_cell:after {
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }
}
.d20w_cell > * {
  position: relative;
  z-index: 1;
}

.d20wd_img {
  height: 80px;
  text-align: center;
}
.d20wd_img img {
  height: 100%;
}

.d20wd_caption {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
}
@media (max-width: 991px) {
  .d20wd_caption {
    font-size: 20px;
    line-height: 120%;
  }
}

.d20wd_text {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .d20wd_text {
    font-size: 15px;
    line-height: 130%;
  }
}

.delete_21 {
  margin-bottom: var(--padding);
}
.delete_21 .block_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .delete_21 .block_footer {
    margin-top: 32px;
    flex-direction: column;
  }
}
.delete_21 .block_footer button {
  padding: 16px;
  width: 280px;
}
@media (max-width: 767px) {
  .delete_21 .block_footer button {
    width: 100%;
  }
}

.d21_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d21_wrapper {
    grid-template-columns: 1fr;
  }
}

.d21w_cell {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap) var(--common-gap) 40px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .d21w_cell {
    padding: var(--common-gap);
  }
}
.d21w_cell .d21wc_top > *, .d21w_cell .d21wc_bottom > * {
  display: block;
}
.d21w_cell:hover .d21wc_link {
  text-decoration: none;
}

.d21wc_caption {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .d21wc_caption {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.d21wc_img {
  height: 240px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 991px) {
  .d21wc_img {
    height: 165px;
    margin-bottom: 16px;
  }
}
.d21wc_img img {
  height: 100%;
  border-radius: 50%;
}

.d21wc_price {
  color: var(--black);
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.32px;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .d21wc_price {
    font-size: 24px;
  }
}
.d21wc_price span {
  font-size: 48px;
  letter-spacing: -0.48px;
}
@media (max-width: 991px) {
  .d21wc_price span {
    font-size: 32px;
  }
}

.d21wc_link {
  color: var(--blue);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
  text-decoration: underline;
}

.delete_22 {
  margin-bottom: var(--padding);
}

.delete_22.t22_type_1 {
  background: url("../img/what_we_clear_0.jpg") center no-repeat;
  background-size: auto 100%;
  height: 920px;
}
@media (max-width: 991px) {
  .delete_22.t22_type_1 {
    height: 560px;
  }
}
@media (max-width: 767px) {
  .delete_22.t22_type_1 {
    height: 320px;
  }
}

.d22_wrapper img {
  width: 100%;
}

.delete_23 {
  margin-bottom: var(--padding);
}

.d23_wrapper {
  border-radius: 20px;
  padding: 60px;
  background: url("../img/potenza/potenza_new_bg_2.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .d23_wrapper {
    padding: var(--common-gap);
  }
}
.d23_wrapper .block_header {
  margin-bottom: 48px;
  max-width: 1060px;
}
@media (max-width: 991px) {
  .d23_wrapper .block_header {
    margin-bottom: 32px;
  }
}
.d23_wrapper .block_header h2,
.d23_wrapper .block_header .block_header_text {
  color: var(--white);
}
.d23_wrapper .block_header_text {
  max-width: 1060px;
}

.d23w_form {
  margin-bottom: 16px;
}

.d23wf_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .d23wf_row {
    flex-direction: column;
  }
}
.d23wf_row > input[type=text], .d23wf_row > input[type=tel], .d23wf_row > button[type=submit] {
  width: 33.333333%;
}
@media (max-width: 767px) {
  .d23wf_row > input[type=text], .d23wf_row > input[type=tel], .d23wf_row > button[type=submit] {
    width: 100%;
  }
}
.d23wf_row > button[type=submit] {
  padding: 10px;
}

.d23w_notice {
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.048px;
}
.d23w_notice a {
  text-decoration: underline;
  color: var(--white);
}
.d23w_notice a:hover {
  text-decoration: none;
}

.delete_24 {
  padding-top: var(--padding);
  padding-bottom: var(--padding);
  margin-bottom: var(--padding);
  background: url("../img/potenza/potenza_new_bg_3.jpg") center no-repeat;
  background-size: cover;
}
.delete_24 .block_header h2,
.delete_24 .block_header .block_header_text {
  color: var(--white);
}
.delete_24 .block_body {
  position: relative;
}
.delete_24 .block_body .swiper-container {
  padding-bottom: 48px;
}
.delete_24 .block_body .swiper-container .swiper-slide {
  width: 50%;
  margin-right: var(--common-gap);
}
@media (max-width: 991px) {
  .delete_24 .block_body .swiper-container .swiper-slide {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .delete_24 .block_body .swiper-container .swiper-slide {
    height: auto;
  }
}
.delete_24 .block_footer button {
  width: 100%;
  max-width: 400px;
}

.d24w_cell {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.12);
  padding: var(--common-gap);
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d24w_cell {
    flex-direction: column;
    height: 100%;
  }
}

.d24wc_left {
  width: 50%;
}
@media (max-width: 767px) {
  .d24wc_left {
    width: 100%;
    height: 320px;
  }
}
.d24wc_left img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.d24wc_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .d24wc_right {
    width: 100%;
    flex-grow: 1;
  }
}

.d24wcrd_caption {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 12px;
}

.d24wcrd_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.d24wcrd_text p {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.056px;
}

.d24wcr_img {
  position: relative;
  height: 100px;
  display: flex;
}
.d24wcr_img:after {
  content: "Этапы";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.048px;
  border-radius: 32px;
  background: var(--white);
  backdrop-filter: blur(2px);
  padding: 2px 8px;
}
.d24wcr_img img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.d24wcr_img img:nth-child(1) {
  border-radius: 10px 0 0 10px;
}
.d24wcr_img img:nth-child(2) {
  border-radius: 0 10px 10px 0;
}

.delete_25 {
  margin-bottom: var(--padding);
}
.delete_25 .block_header h2 span {
  position: relative;
  font-size: 40px;
  padding-left: 27px;
  font-style: normal;
}
@media (max-width: 767px) {
  .delete_25 .block_header h2 span {
    font-size: 28px;
    padding-left: 15px;
  }
}
.delete_25 .block_header h2 span:after {
  /*content: '';
  position: absolute;
  left: 0;
  top: -16px;
  width: 107px;
  height: 91px;
  background: url('../img/potenza/reward_sign.svg') center no-repeat;
  background-size: contain;

  @include _767 {
  	top: -24px;
  				width: 67px;
  }*/
}
@media (max-width: 991px) {
  .delete_25 .block_header_text {
    max-width: 80%;
  }
}

.d25_wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
}
.d25_wrapper .d25w_row {
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d25_wrapper .d25w_row:nth-child(1) {
    flex-direction: column;
  }
}
.d25_wrapper .d25w_row:nth-child(1) > * {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 532px;
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(1) > * {
    height: 455px;
  }
}
@media (max-width: 767px) {
  .d25_wrapper .d25w_row:nth-child(1) > * {
    height: 420px;
  }
}
.d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(1) {
  width: 66.666666%;
  background-image: url("../img/potenza/potenza_new_bg_4_1.jpg");
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(1) {
    width: 100%;
  }
}
.d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(2) {
  width: 33.333333%;
  background-image: url("../img/potenza/potenza_new_bg_4_2.jpg");
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .d25_wrapper .d25w_row:nth-child(1) .d25wr_cell:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(2) {
    flex-direction: column;
  }
}
.d25_wrapper .d25w_row:nth-child(2) > * {
  width: 50%;
  height: 584px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(2) > * {
    width: 100%;
    /*background-size: auto 100%, cover;*/
    height: 515px;
  }
}
@media (max-width: 767px) {
  .d25_wrapper .d25w_row:nth-child(2) > * {
    height: 480px;
  }
}
.d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(1) {
  background-image: url("../img/potenza/potenza_new_bg_4_3.jpg");
  justify-content: flex-end;
}
.d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(1) .d25wrc_header {
  /*width: 110%;*/
}
.d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(2) {
  background-image: url("../img/potenza/potenza_new_bg_4_4.jpg");
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(2) {
    /*justify-content: flex-end;
    justify-content: flex-end;	*/
  }
}
.d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(3) {
  background-image: url("../img/potenza/potenza_new_bg_4_5.jpg");
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .d25_wrapper .d25w_row:nth-child(2) > .d25wr_cell:nth-child(3) {
    /*align-items: flex-start;*/
  }
}

.d25wr_cell {
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap);
  overflow: hidden;
}

.d25wrc_header {
  color: var(--white);
  font-family: var(--font-family-2);
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.32px;
  text-shadow: 0 0 1px var(--black);
}
@media (max-width: 991px) {
  .d25wrc_header {
    font-size: 28px;
  }
}
.d25wrc_header span {
  background: linear-gradient(180deg, #FDE4AB 5.17%, #C7A260 47.53%, #76470F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.d25wrc_footer {
  text-align: right;
}
.d25wrc_footer span {
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
  padding: 8px 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .d25wrc_footer span {
    font-size: 14px;
    padding: 8px;
  }
}

.delete_26 {
  margin-bottom: var(--padding);
}

.d26_wrapper {
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .d26_wrapper {
    flex-direction: column;
  }
}

.d26w_left {
  width: 66.666666%;
  height: 568px;
}
@media (max-width: 991px) {
  .d26w_left {
    height: 470px;
  }
}
@media (max-width: 767px) {
  .d26w_left {
    width: 100%;
    height: 240px;
  }
}
.d26w_left img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.d26w_right {
  width: 33.333333%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .d26w_right {
    width: 100%;
  }
}

.d26wr_caption {
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .d26wr_caption {
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .d26wr_caption {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.d26wr_text {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: -0.072px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .d26wr_text {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 32px;
  }
}

.d26wr_text_2 {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .d26wr_text_2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .d26wr_text_2 {
    margin-bottom: 72px;
  }
}
.d26wr_text_2 span {
  color: var(--blue);
}

.d26wr_caption {
  display: flex;
  justify-content: center;
}
.d26wr_caption a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  margin: 20px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  text-decoration: none;
}
@media (max-width: 991px) {
  .d26wr_caption a {
    width: 100px;
    height: 100px;
  }
}
.d26wr_caption a:after {
  content: "";
  width: 176px;
  height: 176px;
  position: absolute;
  top: -20px;
  left: -20px;
  background: url("../img/show_btn_bg.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .d26wr_caption a:after {
    width: 140px;
    height: 140px;
    top: -21px;
    left: -21px;
  }
}
.d26wr_caption a:before {
  content: "";
  width: 77px;
  height: 106px;
  position: absolute;
  top: -128px;
  right: -48px;
  background: url("../img/results_element.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .d26wr_caption a:before {
    width: 62px;
    height: 85px;
    top: -106px;
    right: -32px;
  }
}

.delete_reviews {
  margin-bottom: calc(var(--padding) - var(--common-gap));
}
.delete_reviews .block_header {
  max-width: 1006px;
}

.dr_wrapper {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: var(--common-gap);
       column-gap: var(--common-gap);
}
.dr_wrapper img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px 0 rgba(201, 189, 182, 0.4);
  margin-bottom: var(--common-gap);
}
@media (max-width: 991px) {
  .dr_wrapper {
    -moz-columns: 2;
         columns: 2;
  }
}
@media (max-width: 767px) {
  .dr_wrapper {
    -moz-columns: 1;
         columns: 1;
  }
}

.fsbw_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--common-gap);
}
@media (max-width: 767px) {
  .fsbw_wrapper {
    grid-template-columns: 1fr;
  }
}

.fsbw_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--common-gap);
}
.fsbw_item img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .fsbw_item img {
    border-radius: 16px;
  }
}

.fsb_atmosphere {
  margin-bottom: var(--padding);
}
.fsb_atmosphere .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
}

.fsbaw_cell img {
  height: 600px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .fsbaw_cell img {
    height: 390px;
  }
}
@media (max-width: 767px) {
  .fsbaw_cell img {
    height: 320px;
    border-radius: 16px;
  }
}

.notice_container {
  background: #FF8763;
  height: 48px;
}
@media (max-width: 991px) {
  .notice_container {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .notice_container {
    height: 32px;
  }
}
.notice_container .container {
  height: 100%;
}
.notice_container .container .row {
  height: 100%;
}
.notice_container .container .row .col-12 {
  height: 100%;
}

.nc_data {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .nc_data {
    font-size: 18px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .nc_data {
    font-size: 14px;
    font-weight: 500;
  }
}

/*

	.drw_cell {
		display: inline-block;
		margin-bottom: var(--common-gap);
		border-radius: 20px;
		background: var(--white);
		box-shadow: 0 10px 30px 0 rgba(201, 189, 182, .4);	
		padding: var(--common-gap);			
	}

		.drwc_stars {
			margin-bottom: 24px;
			display: flex;
			align-items: center;
			gap: 4px;

			@include _991 {
				margin-bottom: 16px;
			}

			@include _767 {
				margin-bottom: 12px;
			}

			img {
				width: 23px;

				@include _991 {
					width: 20px;
				}

				@include _767 {

				}
			}
		}

		.drwc_text {
			margin-bottom: 24px;
			display: flex;
			flex-direction: column;
			gap: 8px;

			@include _991 {
				margin-bottom: 16px;
				gap: 6px;
			}

			@include _767 {
				margin-bottom: 12px;
				gap: 4px;
			}

			p {
				color: var(--black);
				font-family: var(--font-family-2);
				font-size: 16px;
				font-style: italic;				
				line-height: 120%;
				letter-spacing: -0.064px;

				@include _767 {

				}
			}
		}

		.drwc_info {
			display: flex;				
			gap: 16px;
		}

			.drwci_img{
				width: 64px;
				flex-shrink: 0;

				@include _991 {
					width: 52px;
				}

				@include _767 {
					width: 48px;
				}

				img {
					width: 100%;
					border-radius: 50%;
					background: #F3EEE7;
				}
			}

			.drwci_data {
				display: flex;	
				flex-direction: column;		
				justify-content: center;	
				gap: 4px;

				@include _767 {
					gap: 2px;
				}
			}

				.drwcid_name {
					color: var(--black);			
					font-size: 16px;					
					font-weight: 600;
					line-height: 130%;
					letter-spacing: -0.16px;

					@include _767 {

					}
				}

				.drwcid_status {
					color: var(--black);						
					font-size: 12px;					
					line-height: 170%;
					letter-spacing: -0.048px;
					opacity: 0.8;

					@include _767 {

					}
				}	

*/
footer {
  padding: 30px 0 32px;
  background: var(--black);
}
@media (max-width: 991px) {
  footer {
    padding: 24px 0 32px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 16px 0 24px;
  }
}

.f_wrapper {
  /*display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--common-gap);*/
}
.fw_top,
.fw_middle {
  position: relative;
}
@media (max-width: 991px) {
  .fw_top,
  .fw_middle {
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .fw_top,
  .fw_middle {
    padding-bottom: 32px;
  }
}
.fw_top:after,
.fw_middle:after {
  /*content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 1440px;
  height: 1px;
  background: radial-gradient(49.78% 190.34% at 50.22% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
  z-index: 0;*/
}

.fw_top {
  padding-bottom: 55px;
}
@media (max-width: 991px) {
  .fw_top {
    padding-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .fw_top {
    padding-bottom: 32px;
  }
}

.fw_middle {
  padding-bottom: 32px;
}

.fwt_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fwt_wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.fwtw_logo a {
  text-decoration: none;
}
.fwtw_logo a img {
  max-width: 176px;
}
@media (max-width: 767px) {
  .fwtw_logo a img {
    max-width: 120px;
  }
}

#allrecords .fwtw_phone a {
  color: var(--white);
}
#allrecords .fwtw_phone a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.fwtw_phone {
  font-size: 24px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.096px;
}
@media (max-width: 767px) {
  .fwtw_phone {
    font-size: 22px;
    line-height: 135%;
  }
}
.fwtw_phone a {
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.fwtw_phone a:before {
  content: "";
  position: absolute;
  left: -60px;
  top: -8.5px;
  width: 52px;
  height: 52px;
  background: url("../img/phone_footer.svg") center no-repeat;
  background-size: contain;
}
.fwtw_phone a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.fwtw_phone a span {
  font-weight: 400;
  opacity: 0.6;
}

.fwmw_data {
  display: flex;
  align-items: flex-end;
  gap: var(--common-gap);
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .fwmw_data {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .fwmw_data {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}

.fwmwd_menu {
  width: 83.333333%;
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .fwmwd_menu {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}

.fwmwdm_block {
  width: 60%;
}
@media (max-width: 767px) {
  .fwmwdm_block {
    width: 100%;
  }
}

.fwmwdm_block:first-child {
  width: 40%;
}
@media (max-width: 767px) {
  .fwmwdm_block:first-child {
    width: 100%;
  }
}

.fwmwdmb_header {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.064px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .fwmwdmb_header {
    margin-bottom: 8px;
  }
}

.fwmwdmb_body {
  display: flex;
  gap: var(--common-gap);
}
.fwmwdmb_body ul {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .fwmwdmb_body ul {
    gap: 8px;
  }
}
.fwmwdmb_body ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
}
.fwmwdmb_body ul li a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.fwmwdmb_body ul li a:hover {
  text-decoration: underline;
}
.fwmwdmb_body ul li a img {
  max-width: 22px;
}

.fwmwd_social {
  width: 16.666666%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 991px) {
  .fwmwd_social {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .fwmwd_social {
    align-items: flex-start;
    flex-direction: row;
  }
}
.fwmwd_social a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 176px;
  padding: 1px;
  text-decoration: none;
  border-radius: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .fwmwd_social a {
    width: auto;
  }
}
.fwmwd_social a img {
  padding: 12px;
  background: var(--white);
  border-radius: 50%;
}
.fwmwd_social a span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .fwmwd_social a span {
    display: none;
  }
}
.fwmwd_social a:hover span {
  text-decoration: underline;
}

#allrecords .fwmw_links a {
  color: #BAADA1;
  text-decoration: underline;
}
#allrecords .fwmw_links a:hover {
  text-decoration: none;
}

.fwmw_links {
  display: flex;
  align-items: center;
  gap: var(--common-gap);
  justify-content: space-between;
  opacity: 0.6;
}
.fwmw_links a {
  color: #BAADA1;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
  text-decoration-line: underline;
}
.fwmw_links a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .fwmw_links {
    flex-direction: column;
    margin: 0 0 8px;
    align-items: flex-start;
    gap: 8px;
  }
}
.fwmw_links div {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
}
.fwmw_links div a {
  color: var(--white);
  opacity: 0.4;
}
.fwmw_links div a:hover {
  text-decoration: none;
}

.fwmwl_1 {
  width: 40%;
}
@media (max-width: 767px) {
  .fwmwl_1 {
    width: 100%;
  }
}

.fwmwl_2 {
  width: 60%;
  display: flex;
  align-items: center;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .fwmwl_2 {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
}
.fwmwl_2 div {
  width: 50%;
}
@media (max-width: 767px) {
  .fwmwl_2 div {
    width: 100%;
  }
}

.fwmw_payment_service {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .fwmw_payment_service {
    /*flex-direction: column;
    align-items: flex-start;*/
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 8px;
  }
}
.fwmw_payment_service img {
  max-height: 37px;
}

.fwb_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fwb_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
  }
}
.fwb_wrapper * {
  color: #BAADA1;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.056px;
  opacity: 0.4;
}

.modal-fullscreen .modal-body {
  overflow: unset;
}

.modal-content {
  background: rgba(40, 70, 100, 0.23);
  /*padding-right: 17px;*/
}
@media (max-width: 767px) {
  .modal-content {
    padding: 0;
  }
}

.modal-body {
  padding: 100px 0;
  flex: none;
}
@media (min-width: 1400px) {
  .modal-body .container {
    max-width: 1440px;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 64px 0;
  }
}
@media (max-width: 1199px) {
  .modal-body {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .modal-body {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .modal-body .container {
    padding: 0 16px;
  }
}
.modal_content {
  position: relative;
  z-index: 1;
  padding: 60px var(--padding);
  background: url("../img/popup_bg.jpg") center no-repeat;
  background-size: cover;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1140px;
}
@media (max-width: 1199px) {
  .modal_content {
    padding: 64px 52px;
  }
}
@media (max-width: 991px) {
  .modal_content {
    padding: 48px;
  }
}
@media (max-width: 767px) {
  .modal_content {
    width: 100%;
    padding: 48px 16px 32px;
  }
}

.service_popup .modal_content {
  max-width: 800px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(151, 163, 179, 0.4);
  padding: var(--common-gap);
}
@media (max-width: 767px) {
  .service_popup .modal_content {
    padding: 48px var(--common-gap) var(--common-gap);
  }
}

@media (max-width: 767px) {
  .service_popup.procedure_popup .modal_content {
    padding: var(--common-gap);
  }
}

#thanks .modal_content {
  padding: 240px var(--padding);
}

.mb_close {
  position: absolute;
  top: 60px;
  right: var(--padding);
  width: 48px;
  height: 48px;
  background: url("../img/close_white.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 1199px) {
  .mb_close {
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 991px) {
  .mb_close {
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .mb_close {
    width: 24px;
    height: 24px;
  }
}

.service_popup .mb_close {
  top: var(--common-gap);
  right: var(--common-gap);
  width: 32px;
  height: 32px;
  background-image: url("../img/close.svg");
}
@media (max-width: 767px) {
  .service_popup .mb_close {
    width: 24px;
    height: 24px;
  }
}

.mc_title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-family-2);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.6px;
  max-width: 1080px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.mc_title span {
  font-style: italic;
}
@media (max-width: 991px) {
  .mc_title {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  .mc_title {
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
}

#modal-success .mc_title {
  padding: 100px 0;
}

.mc_text {
  color: var(--black);
  text-align: center;
  font-size: 24px;
  line-height: 155%;
  letter-spacing: -0.096px;
  margin: 0 auto 61px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .mc_text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .mc_text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.mc_form_wrapper {
  position: relative;
  padding-right: calc(25% + var(--common-gap));
}
@media (max-width: 991px) {
  .mc_form_wrapper {
    padding: 0;
  }
}
.mc_form_wrapper:after {
  /*content: '';
  position: absolute;
  left: calc(75% + var(--common-gap));
  bottom: -60px;
  width: 386px;
  max-width: 32%;
  height: 496px;
  background: url('../img/popup_form_girl.png') center bottom no-repeat;
  background-size: contain;
  z-index: 0;

  @include _991 {
  	display: none;
  }*/
}

.modal .mc_form_wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
  color: var(--black);
}

#allrecords .mcfw_form .mcfwf_notice a {
  color: var(--black);
  text-decoration: underline;
}
#allrecords .mcfw_form .mcfwf_notice a:hover {
  text-decoration: none;
}

.mcfw_form {
  border-radius: 20px;
  border: 0.5px solid var(--white);
  background: rgba(243, 238, 231, 0.4);
  box-shadow: 0 10px 30px 0 rgba(201, 189, 182, 0.4);
  backdrop-filter: blur(5px);
  padding: var(--common-gap);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .mcfw_form {
    width: 100%;
  }
}
.mcfw_form .mcfw_form_text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-family-2);
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .mcfw_form .mcfw_form_text {
    font-size: 36px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .mcfw_form .mcfw_form_text {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.mcfw_form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.mcfw_form form .mcfwf_row {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .mcfw_form form .mcfwf_row {
    flex-direction: column;
  }
}
.mcfw_form form .mcfwf_row button {
  width: 100%;
}
.mcfw_form form .mcfwfr_cell {
  width: 33.333333%;
}
@media (max-width: 767px) {
  .mcfw_form form .mcfwfr_cell {
    width: 100%;
  }
}
.mcfw_form .mcfwf_notice {
  color: var(--black);
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.048px;
}
.mcfw_form .mcfwf_notice a {
  color: var(--black);
  text-decoration: underline;
}
.mcfw_form .mcfwf_notice a:hover {
  text-decoration: none;
}

#allrecords .mcfwfc_select_time ul {
  padding: 12px 0;
}

.mcfwfc_select_time {
  width: 100%;
  position: relative;
}
.mcfwfc_select_time ul {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48px;
  border-top: 1px solid #f3f3f3;
  padding: 12px 0;
  background: var(--white);
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  display: none;
  max-height: 275px;
  overflow: auto;
}
.mcfwfc_select_time ul li {
  padding: 4px 16px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
  cursor: pointer;
}
.mcfwfc_select_time ul li.selected, .mcfwfc_select_time ul li:hover {
  background: #f5f5f5;
  color: #000;
}
.mcfwfc_select_time ul li.selected {
  font-weight: 700;
}

.mcfwfcst_selected {
  position: relative;
  padding: 12px 40px 12px 12px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.064px;
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mcfwfcst_selected:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 16px;
  width: 12px;
  height: 6px;
  background: url("../img/select_arrow_down.svg") center no-repeat;
  background-size: contain;
  transition: transform 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}

.active .mcfwfcst_selected {
  border-radius: 12px 12px 0 0;
}

.active .mcfwfcst_selected:after {
  transform: rotate(180deg);
}

.sp_wrapper {
  display: flex;
  gap: var(--common-gap);
  height: auto;
}
@media (max-width: 767px) {
  .sp_wrapper {
    flex-direction: column;
  }
}

.spw_img {
  width: 50%;
  height: 368px;
}
@media (max-width: 767px) {
  .spw_img {
    height: 250px;
    width: 100%;
  }
}
.spw_img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 12px;
}

.spw_list {
  width: 50%;
  position: relative;
  height: 368px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .spw_list {
    width: 100%;
    height: 250px;
    /*gap: 8px;*/
    gap: 16px;
  }
}

.procedure_popup .spw_list {
  width: 100%;
  height: 481px;
  position: relative;
}
@media (max-width: 767px) {
  .procedure_popup .spw_list {
    height: 420px;
  }
}
.procedure_popup .spw_list:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--common-gap));
  width: calc(100% - 4px);
  height: 70px;
  background: linear-gradient(0deg, #FFF 28.07%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .procedure_popup .spw_list:after {
    height: 40px;
  }
}
.procedure_popup .spw_list ul {
  gap: 0;
}
.procedure_popup .spw_list ul li {
  padding: 12px 0;
  border-top: 1px solid rgba(151, 163, 179, 0.4);
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  gap: 24px;
}
.procedure_popup .spw_list ul li:last-child {
  border-bottom: 1px solid rgba(151, 163, 179, 0.4);
}
@media (max-width: 991px) {
  .procedure_popup .spw_list ul li {
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .procedure_popup .spw_list ul li {
    /*padding: 4px 0;*/
  }
}
.procedure_popup .spw_list ul li .pp_list_left {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .procedure_popup .spw_list ul li .pp_list_left {
    font-size: 14px;
    line-height: 130%;
  }
}
.procedure_popup .spw_list ul li .pp_list_right {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.072px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .procedure_popup .spw_list ul li .pp_list_right {
    font-size: 16px;
    line-height: 130%;
  }
}

.spwl_header {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.24px;
  padding-right: 48px;
}
@media (max-width: 767px) {
  .spwl_header {
    font-size: 22px;
  }
}

.procedure_popup .spwl_header {
  margin-bottom: 12px;
}

.procedure_popup .spwl_sub_header {
  margin-top: -16px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.056px;
}
@media (max-width: 991px) {
  .procedure_popup .spwl_sub_header {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .procedure_popup .spwl_sub_header {
    margin-bottom: 4px;
  }
}

#allrecords .spwl_body > p a {
  color: var(--crimson);
}

.spwl_body {
  flex-grow: 1;
  overflow: hidden;
  padding-bottom: 40px;
  position: relative;
}
.spwl_body:after {
  content: "";
  display: block;
  position: relative;
  background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
  height: 70px;
  width: calc(100% - 6px);
  left: 0;
  bottom: 60px;
  z-index: 1;
}
.spwl_body > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.spwl_body > p a {
  color: var(--crimson);
  font-size: 18px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.072px;
  text-decoration-line: underline;
}
.spwl_body > p a:hover {
  text-decoration: none;
}
.spwl_body .swiper {
  height: 100%;
  overflow: hidden;
}
.spwl_body .swiper .swiper-wrapper {
  height: 100%;
}
.spwl_body .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.spwl_body .swiper .swiper-scrollbar.swiper-scrollbar-vertical,
.spwl_body .swiper .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  border-radius: 10px;
  background: rgba(0, 173, 202, 0.2);
}
.spwl_body .swiper .swiper-scrollbar.swiper-scrollbar-vertical .swiper-scrollbar-drag,
.spwl_body .swiper .swiper-vertical > .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--crimson);
  border-radius: 10px;
}
.spwl_body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
  margin-right: 48px;
  /*&:last-child {
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	z-index: 1;

  	a {
  		color: var(--crimson);
  		font-size: 18px;											
  		font-weight: 500;
  		line-height: 145%;
  		letter-spacing: -0.072px;
  		text-decoration-line: underline;

  		&:hover {
  			text-decoration: none;
  		}
  	}
  }*/
}
.spwl_body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 48px;
}
@media (max-width: 767px) {
  .spwl_body ul {
    /*gap: 6px;*/
    gap: 14px;
    margin-right: 24px;
  }
}
.spwl_body ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.064px;
}
@media (max-width: 767px) {
  .spwl_body ul li {
    font-size: 14px;
    line-height: 120%;
  }
}
.spwl_body ul li a {
  color: var(--black);
  text-decoration: underline;
}
.spwl_body ul li a:hover {
  color: var(--blue);
  text-decoration: none;
}/*# sourceMappingURL=styles.css.map */