@font-face {
  font-display: swap;
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.woff2");
}
:root {
  --color-font-black: #1D1F1E;
  --color-font-white: #fff;
  --color-font-grey: #646A69;
  --bgcolor-pink: #FFF7ED;
  --bgcolor-red: #FF7E57;
  --bgcolor-green: #BEF264;
  --font-family: "Manrope", Arial, sans-serif;
  --common-gap: 32px;
}

@media (max-width: 991px) {
  :root {
    --common-gap: 24px;
  }
}
@media (max-width: 767px) {
  :root {
    --common-gap: 16px;
  }
}
@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;
}
footer a:hover {
  color: var(--color-font-white);
  text-decoration: underline;
}

.dalex_block {
  margin-bottom: 104px;
}
@media (max-width: 1199px) {
  .dalex_block {
    margin-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .dalex_block {
    margin-bottom: 60px;
  }
}

.block_header {
  margin: 0 auto 60px;
  max-width: 975px;
}
@media (max-width: 1199px) {
  .block_header {
    margin-bottom: 48px;
  }
}
@media (max-width: 991px) {
  .block_header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .block_header {
    margin-bottom: 30px;
  }
}
.block_header > * {
  color: var(--color-font-black);
  text-align: center;
}
@media (max-width: 767px) {
  .block_header > * {
    /*text-align: left;*/
  }
}
.block_header .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;
}
@media (max-width: 991px) {
  .block_header .block_header_text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 130%;
  }
}

.block_footer {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 991px) {
  .block_footer {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .block_footer {
    margin-top: 32px;
  }
}
.block_footer a {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 767px) {
  .block_footer a {
    padding: 14px 35px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  color: var(--color-font-black);
  letter-spacing: -1.86px;
  line-height: 110%;
}
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b, .h1 b, .h2 b, .h3 b {
  font-weight: 700;
}

h1, .h1 {
  font-size: 62px;
  color: var(--color-font-white);
}
@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: 62px;
}
@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;
  color: var(--color-font-black);
  font-family: var(--font-family);
  text-align: center;
  background: var(--bgcolor-green);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  border-radius: 200px;
  padding: 28px 112px;
  letter-spacing: -0.096px;
  text-transform: uppercase;
  /*transition: background-color $transition, color $transition;	*/
  text-decoration: none;
  /*&.white_hover:hover {
  	color: var(--color-font-white);
  	border-color: var(--color-font-white);	
  }*/
}
button:hover,
.btn:hover {
  /*background: transparent;*/
  color: var(--color-font-black);
}
button:focus,
.btn:focus {
  outline: none;
}
button.white_btn,
.btn.white_btn {
  background: var(--color-font-white);
}
@media (max-width: 1199px) {
  button,
  .btn {
    font-size: 18px;
    padding: 28px 40px;
  }
}
@media (max-width: 767px) {
  button,
  .btn {
    padding: 22px;
    font-size: 16px;
  }
}

/*
button.btn_type2, 
.btn.btn_type2 {	
	color: var(--bgcolor-red);	
	background: transparent;

	&:hover {		
		background: var(--bgcolor-red);
		color: var(--color-font-white);
	}	

}

button.btn_type3, 
.btn.btn_type3 {	
	color: #828181;	
	background: transparent;
	padding: 14px 19px;
	border: 1px solid rgba(40, 70, 100, .6);

	&:hover {		
		color: var(--bgcolor-blue-deep);
		border: 1px solid var(--bgcolor-blue-deep);
	}	

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

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

body {
  height: 100%;
  width: 100%;
  background: var(--bgcolor-pink);
  font-family: var(--font-family);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 18px;
  line-height: 145%;
  font-weight: 400;
  color: var(--color-font-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 {

}
*/
textarea,
input[type=text],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
}

textarea,
input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  border-radius: 200px;
  background: var(--color-font-white);
  box-shadow: 0 1px 2px 0 rgba(2, 44, 34, 0.08), 0 0 0 1px rgba(2, 44, 34, 0.13);
  padding: 12px 16px;
  border: none;
  outline: none;
  color: var(--color-font-black);
  font-size: 16px;
  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;
}

button[type=submit] {
  margin-top: 16px;
  padding: 13px;
  width: 100%;
  color: var(--color-font-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.064px;
  border-radius: 200px;
  background: var(--bgcolor-green);
}
@media (max-width: 991px) {
  button[type=submit] {
    margin-top: 8px;
  }
}
button[type=submit] span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
button[type=submit] span:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/submit_arrow.svg") center no-repeat;
  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: 16px;
  padding: 0;
  width: 100%;
  gap: 16px;
}
@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: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background: var(--color-font-white);
  opacity: 0.6;
  margin: 0;
}
@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(--bgcolor-green);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  /*opacity: 1;
  position: static;*/
  width: 64px;
  height: 64px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 52px;
    height: 52px;
  }
}

.swiper-button-prev {
  left: -32px;
  background-image: url("../img/slider_arrow_prev.svg");
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
  }
}

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

.dalex_10 .swiper-button-prev {
  transform: rotate(180deg);
  background-image: url("../img/slider_arrow_next.svg");
}

.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: 95px;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
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_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 19px 0 26px;
}
@media (max-width: 1199px) {
  .header_wrapper {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .header_wrapper {
    padding: 19px 0;
  }
}

.hw_left {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 41.666666%;
}
@media (max-width: 991px) {
  .hw_left {
    width: 45%;
  }
}

.ht_logo {
  width: 199px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .ht_logo {
    width: 130px;
  }
}
.ht_logo span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ht_logo span img {
  width: 50px;
}
@media (max-width: 991px) {
  .ht_logo span img {
    width: 40px;
  }
}
.ht_logo span span {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  color: var(--color-font-white);
  font-size: 14px;
  line-height: 115%;
  max-width: 150px;
}
@media (max-width: 991px) {
  .ht_logo span span {
    font-size: 12px;
  }
}
.ht_logo span span b {
  display: block;
  font-weight: 600;
}

@media (max-width: 991px) {
  .buyback .ht_logo span span {
    font-size: 10px;
  }
}

/*
.ht_wrapper {
	display: flex;
	gap: 32px;
}
	*/
.htw_rating {
  display: flex;
  gap: 12px;
  max-width: 176px;
}

.htwr_cell {
  position: relative;
  width: 72px;
  text-align: center;
}
.htwr_cell span {
  position: relative;
  z-index: 1;
  color: #022C22;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.6px;
}
.htwr_cell:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: -19px;
  width: 100%;
  height: 72px;
  background: url("../img/rating_element.svg") center top no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .htwr_data {
    margin-left: -4px;
  }
}

.htwrd_stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
  width: 117px;
}
@media (max-width: 991px) {
  .htwrd_stars {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .htwrd_stars {
    gap: 1px;
    margin-bottom: 4px;
  }
}
.htwrd_stars img {
  width: 16px;
}

.htwrd_text {
  color: var(--color-font-white);
  font-size: 8px;
  line-height: 1.5;
}
.htwrd_text b {
  font-weight: 700;
}

@media (max-width: 767px) {
  .mm_trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 28px;
    cursor: pointer;
  }
  .mm_trigger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--bgcolor-green);
  }
}

.ht_mob_wrapper {
  width: 58.333333%;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.ht_mob_wrapper > a {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: url("../img/popup_close.svg") center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 767px) {
  .ht_mob_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--bgcolor-pink);
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15);
    padding: 64px 16px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, right 0.2s ease-in-out;
  }
}

.buyback .ht_mob_wrapper {
  justify-content: flex-end;
}

.mm_active .ht_mob_wrapper {
  right: 0;
  opacity: 1;
  pointer-events: all;
}

.htw_3dtour a {
  padding: 8px 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  border: 1px solid var(--bgcolor-green);
}
@media (max-width: 1199px) {
  .htw_3dtour a {
    padding: 6px 20px;
  }
}
@media (max-width: 991px) {
  .htw_3dtour a {
    padding: 6px;
  }
}
@media (max-width: 767px) {
  .htw_3dtour a {
    padding: 6px 20px;
    border: 1px solid var(--color-font-black);
  }
}
.htw_3dtour a img {
  width: 32px;
}
.htw_3dtour a span {
  color: var(--color-font-white);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.064px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .htw_3dtour a span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .htw_3dtour a span {
    display: none;
  }
}
@media (max-width: 767px) {
  .htw_3dtour a span {
    display: block;
    color: var(--color-font-black);
  }
}

.hw_right {
  /*flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;*/
  /*max-width: 33.333333%;*/
}
@media (max-width: 991px) {
  .hw_right {
    /*max-width: 45%;*/
  }
}
@media (max-width: 767px) {
  .hw_right {
    /*display: none;*/
  }
}

.htw_social {
  width: 176px;
}
@media (max-width: 1199px) {
  .htw_social {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .htw_social {
    width: 100%;
  }
}

.htws_header {
  color: var(--color-font-white);
  text-align: center;
  font-size: 8px;
  line-height: 150%;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .htws_header {
    text-align: right;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-font-black);
  }
}

.htws_body {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .htws_body {
    justify-content: flex-end;
    gap: 12px;
  }
}
.htws_body a {
  display: block;
}
.htws_body a img {
  width: 35px;
}

@media (max-width: 767px) {
  .ht_phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.htp_callback {
  margin-bottom: 2px;
  font-size: 8px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .htp_callback {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 8px;
  }
}
.htp_callback a {
  color: var(--bgcolor-green);
  /*font-size: 8px;
  font-weight: 700;*/
  text-decoration: none;
}
@media (max-width: 767px) {
  .htp_callback a {
    color: var(--color-font-black);
  }
}
.htp_callback a span {
  border-bottom: 1px dotted var(--bgcolor-green);
}
@media (max-width: 767px) {
  .htp_callback a span {
    border-bottom: 1px dotted var(--color-font-black);
  }
}
.htp_callback a:hover span {
  border-bottom: none;
}

@media (max-width: 767px) {
  .htp_phone {
    text-align: right;
  }
}
.htp_phone a {
  text-decoration: none;
}
.htp_phone a span {
  color: var(--color-font-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .htp_phone a span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .htp_phone a span {
    color: var(--color-font-black);
  }
}

.htp_worktime {
  position: relative;
  color: var(--color-font-white);
  font-size: 8px;
  line-height: 150%;
  padding-left: 8px;
}
@media (max-width: 767px) {
  .htp_worktime {
    color: var(--color-font-black);
    font-size: 14px;
    line-height: 130%;
    padding-left: 14px;
  }
}
.htp_worktime:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 6px;
  height: 6px;
  background: var(--bgcolor-green);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .htp_worktime:before {
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
  }
}

.thanks_page .page_wrapper {
  height: 100%;
}

main {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.dalex_1 {
  padding-top: 175px;
  padding-bottom: 104px;
  background: url("../img/main_bg_919.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .dalex_1 {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .dalex_1 {
    padding-top: 125px;
    padding-bottom: 60px;
  }
}
.dalex_1 .block_header {
  max-width: none;
  margin-bottom: 52px;
}
.dalex_1 .block_header .block_header_text {
  max-width: 800px;
  color: var(--color-font-white);
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.24px;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .dalex_1 .block_header .block_header_text {
    margin-top: 20px;
    font-size: 20px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .dalex_1 .block_header .block_header_text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.buyback .dalex_1 {
  background-image: url("../img/buyback/buyback_bg_919.jpg");
}
.buyback .dalex_1 .block_header {
  margin-bottom: 84px;
}
@media (max-width: 767px) {
  .buyback .dalex_1 .block_header h1,
  .buyback .dalex_1 .block_header .h1 {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .buyback .dalex_1 .block_header {
    margin-bottom: 69px;
  }
}
@media (max-width: 767px) {
  .buyback .dalex_1 .block_header {
    margin-bottom: 92px;
  }
}
.buyback .dalex_1 .block_header .block_header_text {
  font-size: 32px;
  line-height: 125%;
}
@media (max-width: 991px) {
  .buyback .dalex_1 .block_header .block_header_text {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .buyback .dalex_1 .block_header .block_header_text {
    font-size: 18px;
  }
}

.d1_features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--common-gap);
  margin: 52px 0 100px;
}
@media (max-width: 991px) {
  .d1_features {
    grid-template-columns: repeat(2, 1fr);
    margin: 50px 0 70px;
  }
}
@media (max-width: 767px) {
  .d1_features {
    grid-template-columns: 1fr;
    margin: 40px 0 50px;
  }
}

.d1f_one {
  padding: 96px 0 0;
  background: url("../img/plus_green_sign.svg") left top no-repeat;
  background-size: 80px auto;
}
@media (max-width: 991px) {
  .d1f_one {
    padding: 0 0 0 80px;
    background-position: left center;
    background-size: 60px auto;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
}

.d1fo_text {
  color: var(--color-font-white);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.24px;
}
@media (max-width: 991px) {
  .d1fo_text {
    font-size: 20px;
    line-height: 1.3;
  }
}
.d1fo_text b {
  font-weight: 700;
}

.d1_buttons {
  display: flex;
  align-items: center;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d1_buttons {
    flex-direction: column;
  }
}
.d1_buttons button {
  width: 50%;
  text-align: left;
  position: relative;
  padding: 28px 72px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .d1_buttons button {
    padding: 28px 40px;
  }
}
@media (max-width: 991px) {
  .d1_buttons button {
    width: 450px;
  }
}
@media (max-width: 767px) {
  .d1_buttons button {
    width: 100%;
    padding: 22px;
  }
}
.d1_buttons button:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.d1_buttons button:first-child:after {
  content: "";
  position: absolute;
  top: -5px;
  right: 80px;
  width: 154px;
  height: 100px;
  background-image: url("../img/button_img_1.png");
}
@media (max-width: 1199px) {
  .d1_buttons button:first-child:after {
    top: -12px;
    right: 58px;
    width: 140px;
  }
}
@media (max-width: 767px) {
  .d1_buttons button:first-child:after {
    top: -18px;
    right: 28px;
    width: 115px;
  }
}
.d1_buttons button:last-child:after {
  content: "";
  position: absolute;
  top: -15px;
  right: 40px;
  width: 175px;
  height: 106px;
  background-image: url("../img/button_img_2.png");
}
@media (max-width: 1199px) {
  .d1_buttons button:last-child:after {
    right: 31px;
    width: 150px;
  }
}
@media (max-width: 767px) {
  .d1_buttons button:last-child:after {
    top: -21px;
    right: 5px;
    width: 126px;
  }
}

.buyback .dalex_1 .d1_buttons button:first-child:after {
  top: -24px;
  right: 44px;
  width: 175px;
  height: 112px;
  background: url("../img/support_element.png") center no-repeat;
  background-size: 175px auto;
}
@media (max-width: 1199px) {
  .buyback .dalex_1 .d1_buttons button:first-child:after {
    top: -15px;
    right: 30px;
    height: 95px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .buyback .dalex_1 .d1_buttons button:first-child:after {
    top: -13px;
    right: 0;
    height: 77px;
  }
}
.buyback .dalex_1 .d1_buttons button:last-child:after {
  top: auto;
  bottom: 0;
  right: 0;
  width: 208px;
  height: 150px;
  background: url("../img/intouch_img.png") center no-repeat;
  background-size: 208px auto;
}
@media (max-width: 1199px) {
  .buyback .dalex_1 .d1_buttons button:last-child:after {
    right: -12px;
    height: 118px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .buyback .dalex_1 .d1_buttons button:last-child:after {
    right: -40px;
    height: 100px;
  }
}

.d2_quiz {
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-font-white);
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
}
@media (max-width: 991px) {
  .d2_quiz {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d2_quiz {
    border-radius: 8px;
  }
}
.d2_quiz img {
  width: 100%;
}

.d3_top {
  margin-bottom: 32px;
}

.d3t_wrapper {
  height: 660px;
  border-radius: 24px;
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: space-between;
  /*
  &:after {
  	content: '';
  	position: absolute;
  	z-index: 1;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	background: linear-gradient(0deg, #022C22 14%, rgba(2, 44, 34, 0.00) 58%);
  }
  */
}
@media (max-width: 991px) {
  .d3t_wrapper {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d3t_wrapper {
    padding: 16px;
    border-radius: 8px;
  }
}
.d3t_wrapper > img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.d3t_wrapper > div {
  position: relative;
  z-index: 2;
}

.d3tw_link a {
  border-radius: 200px;
  background: var(--bgcolor-green);
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-min-content;
  width: min-content;
  padding: 9px 20px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.d3tw_link a:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  z-index: 0;
  background: rgba(190, 242, 100, 0.2);
  border-radius: 200px;
}
.d3tw_link a img {
  width: 32px;
}
.d3tw_link a span {
  color: var(--color-font-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.064px;
  white-space: nowrap;
}

.d3tw_data {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .d3tw_data {
    flex-wrap: wrap;
  }
}

.d3twd_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 16px;
}
.d3twd_box .d3twdb_header {
  color: var(--color-font-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.16px;
  margin-bottom: 4px;
}
.d3twd_box .d3twdb_header b {
  font-size: 24px;
  letter-spacing: -0.24px;
}
.d3twd_box .d3twdb_body {
  color: var(--color-font-white);
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.064px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .d3twd_box .d3twdb_body {
    font-size: 14px;
    line-height: 130%;
  }
}
.d3twd_box .d3twdb_body a {
  color: var(--color-font-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.064px;
  padding: 12px 48px 12px 20px;
  background: var(--color-font-white) url("../img/arrow_black_right.svg") right 20px center no-repeat;
  background-size: 20px auto;
  border-radius: 200px;
  text-transform: none;
  white-space: nowrap;
}
.d3twd_box:first-child {
  padding: 0 32px 0 0;
  max-width: 480px;
}
@media (max-width: 1199px) {
  .d3twd_box:first-child {
    padding-right: 16px;
    max-width: none;
  }
}
@media (max-width: 991px) {
  .d3twd_box:first-child {
    width: 100%;
    margin-bottom: var(--common-gap);
  }
}
@media (max-width: 767px) {
  .d3twd_box:first-child {
    padding: 0;
  }
}
.d3twd_box:first-child .d3twdb_header {
  color: var(--bgcolor-green);
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.32px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .d3twd_box:first-child .d3twdb_header {
    font-size: 28px;
  }
}
.d3twd_box:nth-child(2), .d3twd_box:nth-child(3) {
  width: 190px;
}
@media (max-width: 991px) {
  .d3twd_box:nth-child(2), .d3twd_box:nth-child(3) {
    width: auto;
  }
}
.d3twd_box:nth-child(2) > *, .d3twd_box:nth-child(3) > * {
  white-space: nowrap;
}
.d3twd_box:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .d3twd_box:nth-child(2) {
    border-left: none;
    padding-left: 0;
  }
}
.d3twd_box:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .d3twd_box:nth-child(3) {
    border: none;
  }
}
.d3twd_box:last-child {
  padding-right: 0;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .d3twd_box:last-child {
    margin-top: 24px;
    padding: 0;
    width: 100%;
  }
}
.d3twd_box:last-child .d3twdb_body {
  opacity: 1;
  text-align: right;
}
.d3twd_box:last-child .d3twdb_body a {
  width: 100%;
}

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

.d3b_cell {
  border-radius: 16px;
  background: var(--color-font-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .d3b_cell {
    border-radius: 8px;
  }
}

.d3bc_img {
  height: 240px;
  position: relative;
}
@media (max-width: 991px) {
  .d3bc_img {
    height: 160px;
  }
}
@media (max-width: 991px) {
  .d3bc_img {
    height: 215px;
  }
}
.d3bc_img a {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--bgcolor-green) url("../img/tour_3d_black.svg") center no-repeat;
  background-size: 32px auto;
  border-radius: 50%;
  top: 30px;
  left: 30px;
}
@media (max-width: 767px) {
  .d3bc_img a {
    width: 40px;
    height: 40px;
    top: 16px;
    left: 16px;
  }
}
.d3bc_img a:after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  z-index: 0;
  background: rgba(190, 242, 100, 0.2);
  border-radius: 50%;
}
.d3bc_img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.d3bc_data {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .d3bc_data {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d3bc_data {
    padding: 16px;
  }
}

.d3bcd_top {
  flex-grow: 1;
}

.d3bcdt_header {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.d3bcdt_body {
  color: var(--color-font-grey);
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.056px;
}

.d3bcd_bottom {
  display: flex;
  gap: var(--common-gap);
  margin-top: 20px;
  border-top: 1px solid #D9DEDD;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .d3bcd_bottom {
    margin-top: 16px;
    padding-top: 16px;
  }
}
@media (max-width: 767px) {
  .d3bcd_bottom {
    padding-top: 24px;
  }
}

.d3bcdb_box {
  width: 50%;
  position: relative;
}
.d3bcdb_box:first-child:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #D9DEDD;
}
@media (max-width: 991px) {
  .d3bcdb_box:first-child:after {
    right: -12px;
  }
}
@media (max-width: 767px) {
  .d3bcdb_box:first-child:after {
    right: 0;
  }
}

.d3bcdbb_header {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.333;
  margin-bottom: 4px;
}
.d3bcdbb_header b {
  font-size: 20px;
  line-height: 120%;
}
@media (max-width: 991px) {
  .d3bcdbb_header b {
    font-size: 16px;
  }
}

.d3bcdbb_body {
  color: var(--color-font-grey);
  font-size: 12px;
  line-height: 1.333;
}

.dalex_4 .block_header {
  max-width: none;
}

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

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

.d4wl_img {
  margin-bottom: 16px;
}
.d4wl_img img {
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .d4wl_img img {
    border-radius: 8px;
  }
}

.d4wl_text {
  border-radius: 16px;
  background: var(--color-font-white);
  padding: 16px;
}
@media (max-width: 767px) {
  .d4wl_text {
    border-radius: 8px;
  }
}

.d4wlt_header {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.d4wlt_body {
  color: var(--color-font-grey);
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.064px;
}

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

.d4wr_header {
  font-size: 32px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .d4wr_header {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .d4wr_header {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.d4wr_body {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .d4wr_body {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .d4wr_body {
    margin-bottom: 40px;
  }
}
.d4wr_body ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.d4wr_body ul li {
  padding: 32px 100px 32px 104px;
  background: var(--color-font-white) url("../img/check_square_green.svg") 32px center no-repeat;
  background-size: 48px auto;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .d4wr_body ul li {
    padding: 20px 20px 20px 80px;
    background-position: 24px center;
    background-size: 40px auto;
    font-size: 16px;
    line-height: 130%;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .d4wr_body ul li {
    font-size: 14px;
    border-radius: 8px;
  }
}

.d4wr_footer button {
  width: 100%;
  padding: 28px 72px;
  text-align: left;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1199px) {
  .d4wr_footer button {
    padding: 28px 48px;
  }
}
@media (max-width: 991px) {
  .d4wr_footer button {
    padding: 28px 40px;
  }
}
@media (max-width: 767px) {
  .d4wr_footer button {
    padding: 22px 40px;
  }
}
.d4wr_footer button:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 72px;
  width: 208px;
  height: 150px;
  background: url("../img/consultation_img.png") center no-repeat;
  background-size: 208px auto;
}
@media (max-width: 1199px) {
  .d4wr_footer button:after {
    right: 40px;
    width: 150px;
  }
}
@media (max-width: 991px) {
  .d4wr_footer button:after {
    right: -16px;
    height: 100px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .d4wr_footer button:after {
    right: -26px;
    height: 80px;
  }
}

.buyback .dalex_13 .d4w_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dalex_5 {
  padding: 104px 0;
  background: linear-gradient(0deg, #022C22 0%, #022C22 100%), #FFF7ED;
}
@media (max-width: 991px) {
  .dalex_5 {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .dalex_5 {
    padding: 48px 0;
  }
}
.dalex_5 .block_header > * {
  color: var(--color-font-white);
}
@media (max-width: 767px) {
  .dalex_5 .block_footer {
    margin-top: 24px;
  }
}
.dalex_5 .block_footer a {
  padding: 16px 72px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .dalex_5 .block_footer a {
    padding: 12px 48px;
  }
}
@media (max-width: 767px) {
  .dalex_5 .block_footer a {
    padding: 6px;
    width: 100%;
  }
}
.dalex_5 .block_footer a span {
  font-weight: 700;
  white-space: nowrap;
}
.dalex_5 .block_footer a img {
  width: 48px;
}

.d5_wrapper {
  position: relative;
}
.d5_wrapper .swiper-container {
  height: 660px;
}
@media (max-width: 991px) {
  .d5_wrapper .swiper-container {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .d5_wrapper .swiper-container {
    height: 340px;
  }
}
.d5_wrapper .swiper-container .swiper-wrapper .swiper-slide {
  width: 1216px;
  margin-right: var(--common-gap);
}
@media (max-width: 1199px) {
  .d5_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 991px;
  }
}
@media (max-width: 991px) {
  .d5_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .d5_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 320px;
  }
}
.d5_wrapper .swiper-container .swiper-wrapper .swiper-slide img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .d5_wrapper .swiper-container .swiper-wrapper .swiper-slide img {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d5_wrapper .swiper-container .swiper-wrapper .swiper-slide img {
    border-radius: 8px;
  }
}

.d5_swiper_btn_nest {
  height: 0;
  position: relative;
}
.d5_swiper_btn_nest > * {
  top: auto;
  bottom: 298px;
}
@media (max-width: 991px) {
  .d5_swiper_btn_nest > * {
    bottom: 236px;
  }
}
@media (max-width: 767px) {
  .d5_swiper_btn_nest > * {
    bottom: 142px;
  }
}

.dalex_6 .block_header_text {
  max-width: 600px;
}

.d6_wrapper {
  /*height: 660px;*/
}
.d6_wrapper img {
  border-radius: 24px;
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
  width: 100%;
}
@media (max-width: 991px) {
  .d6_wrapper img {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d6_wrapper img {
    border-radius: 8px;
  }
}

.dalex_7 .block_header {
  max-width: none;
}
.dalex_7 .block_footer > * {
  padding: 28px 72px;
  text-align: left;
  font-weight: 700;
  position: relative;
  width: 592px;
}
@media (max-width: 1199px) {
  .dalex_7 .block_footer > * {
    width: 540px;
  }
}
@media (max-width: 767px) {
  .dalex_7 .block_footer > * {
    width: 100%;
    padding: 22px 40px;
  }
}
.dalex_7 .block_footer > *:after {
  content: "";
  position: absolute;
  top: -24px;
  right: 44px;
  width: 175px;
  height: 112px;
  background: url("../img/support_element.png") center no-repeat;
  background-size: 175px auto;
}
@media (max-width: 767px) {
  .dalex_7 .block_footer > *:after {
    background-size: contain;
    top: -28px;
    right: 4px;
    width: 110px;
  }
}

.buyback .dalex_7 {
  padding-top: 104px;
  padding-bottom: 104px;
  background: linear-gradient(0deg, #022C22 0%, #022C22 100%), #FFF7ED;
}
@media (max-width: 991px) {
  .buyback .dalex_7 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .buyback .dalex_7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.buyback .dalex_7 .block_header > * {
  color: var(--color-font-white);
}
.buyback .dalex_7 .block_footer > * {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .buyback .dalex_7 .block_footer > * {
    text-align: left;
  }
  .buyback .dalex_7 .block_footer > *:after {
    top: -20px;
    right: -8px;
    width: 100px;
    height: 98px;
  }
}

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

.d7w_box {
  border-radius: 24px;
  background: var(--color-font-white);
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
  padding: 72px;
}
@media (max-width: 991px) {
  .d7w_box {
    padding: 24px;
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d7w_box {
    border-radius: 8px;
  }
}

.d7wb_header {
  font-size: 48px;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .d7wb_header {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .d7wb_header {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

.buyback .d7wb_header {
  max-width: 835px;
}

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

.d7wbb_data {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media (max-width: 991px) {
  .d7wbb_data {
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .d7wbb_data {
    gap: 32px;
  }
}

.d7wbbd_cell {
  border-radius: 16px;
  border: 1px solid #D9DEDD;
  padding: 40px 32px 32px;
  position: relative;
}
@media (max-width: 991px) {
  .d7wbbd_cell {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d7wbbd_cell {
    padding: 24px 16px 16px;
  }
}
.d7wbbd_cell:first-child .d7wbbdc_caption {
  padding: 12px 20px;
  color: var(--color-font-white);
  background: var(--bgcolor-red);
}
@media (max-width: 991px) {
  .d7wbbd_cell:first-child .d7wbbdc_caption {
    padding: 9px 20px;
  }
}
@media (max-width: 767px) {
  .d7wbbd_cell:first-child .d7wbbdc_caption {
    padding: 6px 18px;
  }
}
.d7wbbd_cell:last-child {
  flex-grow: 1;
}

.d7wbbdc_caption {
  position: absolute;
  left: 40px;
  top: -24px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.064px;
  border-radius: 200px;
  color: var(--color-font-black);
  background: var(--bgcolor-green);
}
@media (max-width: 991px) {
  .d7wbbdc_caption {
    font-size: 14px;
    padding: 9px 24px;
    left: 24px;
    top: -24px;
  }
}
@media (max-width: 767px) {
  .d7wbbdc_caption {
    font-size: 12px;
    padding: 6px 22px;
    left: 16px;
    top: -16px;
  }
}

.d7wbbdc_text p {
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
}
@media (max-width: 991px) {
  .d7wbbdc_text p {
    font-size: 15px;
    line-height: 135%;
  }
}
@media (max-width: 767px) {
  .d7wbbdc_text p {
    font-size: 14px;
    line-height: 130%;
  }
}

.d7wbbdct_top {
  padding-bottom: 24px;
  border-bottom: 1px solid #D9DEDD;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .d7wbbdct_top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.d7wbbdct_top ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .d7wbbdct_top ul {
    gap: 8px;
  }
}
.d7wbbdct_top ul li {
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
  padding-left: 32px;
  background: url("../img/check_round_green.svg") left 3px no-repeat;
  background-size: 20px auto;
}
@media (max-width: 991px) {
  .d7wbbdct_top ul li {
    font-size: 15px;
    line-height: 135%;
  }
}
@media (max-width: 767px) {
  .d7wbbdct_top ul li {
    font-size: 14px;
    line-height: 130%;
  }
}
.d7wbbdct_top ul li b {
  font: 700;
}

.d7wbbdct_bottom p {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: -0.072px;
}
@media (max-width: 991px) {
  .d7wbbdct_bottom p {
    font-size: 15px;
    line-height: 135%;
  }
}
@media (max-width: 767px) {
  .d7wbbdct_bottom p {
    font-size: 14px;
    line-height: 130%;
  }
}

.d7wbb_img {
  width: 312px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
}
@media (max-width: 767px) {
  .d7wbb_img {
    width: 100%;
  }
}

.d7wbbi_img {
  flex-grow: 1;
  min-height: 475px;
}
@media (max-width: 767px) {
  .d7wbbi_img {
    min-height: 1px;
  }
}
.d7wbbi_img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.d7wbbid_name {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .d7wbbid_name {
    margin-bottom: 6px;
  }
}

.d7wbbid_position {
  color: var(--color-font-grey);
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.056px;
  opacity: 0.8;
}

.dalex_8 .block_footer > * {
  padding: 28px 72px;
  text-align: left;
  font-weight: 700;
  position: relative;
  width: 592px;
}
@media (max-width: 1199px) {
  .dalex_8 .block_footer > * {
    width: 540px;
  }
}
@media (max-width: 991px) {
  .dalex_8 .block_footer > * {
    width: 420px;
    padding: 28px 50px;
  }
}
@media (max-width: 767px) {
  .dalex_8 .block_footer > * {
    width: 100%;
    padding: 22px 40px;
  }
}
.dalex_8 .block_footer > *:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 27px;
  width: 208px;
  height: 150px;
  background: url("../img/intouch_img.png") center no-repeat;
  background-size: 208px auto;
}
@media (max-width: 1199px) {
  .dalex_8 .block_footer > *:after {
    background-size: contain;
    height: 130px;
  }
}
@media (max-width: 991px) {
  .dalex_8 .block_footer > *:after {
    right: -16px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .dalex_8 .block_footer > *:after {
    right: -40px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .buyback .dalex_8 .block_footer > *:after {
    right: -50px;
  }
}

.buyback .dalex_8 .block_footer > * {
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .buyback .dalex_8 .block_footer > * {
    text-align: left;
  }
}
.d8_wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--common-gap);
}

.d8w_row {
  display: flex;
  min-height: 294px;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d8w_row {
    min-height: 1px;
  }
}
@media (max-width: 767px) {
  .d8w_row {
    flex-direction: column;
  }
}

.d8wr_img {
  /*height: 100%;*/
  width: 33.333333%;
}
@media (max-width: 767px) {
  .d8wr_img {
    width: 100%;
  }
}
.d8wr_img img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .d8wr_img img {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d8wr_img img {
    border-radius: 8px;
  }
}

.buyback .d8wr_img {
  width: 41.666666%;
}
@media (max-width: 767px) {
  .buyback .d8wr_img {
    width: 100%;
  }
}

.d8wr_data {
  width: 66.666666%;
  /*height: 100%;*/
  padding: 32px;
  border-radius: 24px;
  background: var(--color-font-white);
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
}
@media (max-width: 991px) {
  .d8wr_data {
    padding: 24px;
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  .d8wr_data {
    padding: 24px 16px;
    width: 100%;
    border-radius: 8px;
  }
}

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

.d8wrd_header {
  font-size: 40px;
  line-height: 130%;
  letter-spacing: -1.2px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 2px solid #D9DEDD;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .d8wrd_header {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .d8wrd_header {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.d8wrd_header:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 24%;
  height: 2px;
  background: #022C22;
}

.d8wrd_data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .d8wrd_data {
    gap: 12px;
  }
}
.d8wrd_data p, .d8wrd_data ul li {
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .d8wrd_data p, .d8wrd_data ul li {
    font-size: 15px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .d8wrd_data p, .d8wrd_data ul li {
    font-size: 14px;
  }
}
.d8wrd_data ul {
  display: flex;
  flex-direction: column;
  margin-left: 22px;
}
.d8wrd_data ul li {
  list-style-type: disc;
}

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

.d9w_box {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--bgcolor-green);
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
}
@media (max-width: 991px) {
  .d9w_box {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d9w_box {
    padding: 16px;
  }
}

.d9wb_header {
  text-align: center;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: -1.44px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .d9wb_header {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .d9wb_header {
    font-size: 32px;
    margin-bottom: 4px;
  }
}

.d9wb_body {
  /*color: var(--color-font-grey);*/
  color: var(--color-font-black);
  text-align: center;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .d9wb_body {
    font-size: 15px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .d9wb_body {
    font-size: 14px;
  }
}

.dalex_10 .block_footer {
  margin-top: 40px;
  position: relative;
  height: 64px;
  display: flex;
  gap: var(--common-gap);
  justify-content: center;
}
@media (max-width: 991px) {
  .dalex_10 .block_footer {
    height: 52px;
  }
}
@media (max-width: 767px) {
  .dalex_10 .block_footer {
    margin-top: 24px;
  }
}
.dalex_10 .block_footer > * {
  position: static;
  margin: 0;
}

.d10_wrapper {
  position: relative;
}
.d10_wrapper .swiper-container {
  height: 432px;
}
@media (max-width: 767px) {
  .d10_wrapper .swiper-container {
    height: 374px;
  }
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide {
  width: 312px;
  margin-right: var(--common-gap);
}
@media (max-width: 767px) {
  .d10_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 270px;
  }
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10w_cell {
  position: relative;
  height: 400px;
}
@media (max-width: 767px) {
  .d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10w_cell {
    height: 374px;
  }
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10w_cell img {
  box-shadow: 0 0 60px -12px rgba(202, 188, 167, 0.2);
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10wc_box {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  border-radius: 8px;
  background: var(--color-font-white);
  padding: 16px;
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10wcb_name {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.064px;
  margin-bottom: 4px;
}
.d10_wrapper .swiper-container .swiper-wrapper .swiper-slide .d10wcb_position {
  color: var(--color-font-grey);
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.056px;
}

.dalex_11 {
  background: #022C22;
  padding: 104px 0 0;
  margin: 0;
}
@media (max-width: 991px) {
  .dalex_11 {
    padding: 64px 0 0;
  }
}
@media (max-width: 767px) {
  .dalex_11 {
    padding: 48px 0 0;
  }
}
.dalex_11 .block_header > * {
  color: var(--color-font-white);
}
.dalex_11 .block_header_text {
  color: var(--color-font-white);
  opacity: 0.8;
  max-width: 600px;
}
.dalex_11 .block_footer {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .dalex_11 .block_footer {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .dalex_11 .block_footer {
    margin-top: 32px;
  }
}
.dalex_11 .block_footer button {
  font-weight: 700;
  padding: 28px 60px;
}
@media (max-width: 767px) {
  .dalex_11 .block_footer button {
    width: 100%;
    padding: 22px;
  }
}

.d11_wrapper {
  position: relative;
  padding-bottom: 56px;
}
@media (max-width: 767px) {
  .d11_wrapper {
    padding-bottom: 48px;
  }
}
.d11_wrapper .swiper-container {
  height: 600px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .d11_wrapper .swiper-container {
    height: 520px;
  }
}
.d11_wrapper .swiper-container .swiper-wrapper .swiper-slide {
  width: 384px;
  margin-right: var(--common-gap);
}
@media (max-width: 991px) {
  .d11_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 336px;
  }
}
@media (max-width: 767px) {
  .d11_wrapper .swiper-container .swiper-wrapper .swiper-slide {
    width: 351px;
  }
}
.d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 24px -12px rgba(54, 74, 54, 0.06), 0 1px 2px 0 rgba(87, 92, 86, 0.16), 0 0 0 1px rgba(18, 105, 63, 0.08);
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell img {
    border-radius: 8px;
  }
}
.d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  background: var(--bgcolor-green) url("../img/play_sign.svg") center no-repeat;
  background-size: contain;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  z-index: 1;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
@media (max-width: 767px) {
  .d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell span {
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
  }
}
.d11_wrapper .swiper-container .swiper-wrapper .swiper-slide .d11w_cell span:before {
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  z-index: 0;
  background: rgba(190, 242, 100, 0.2);
}

.dalex_12 {
  padding: 104px 0;
  margin: 0;
  background: url("../img/bubbles_bg.jpg") center top no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .dalex_12 {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .dalex_12 {
    padding: 48px 0;
  }
}
.dalex_12 .block_header {
  max-width: none;
}
.dalex_12 .block_header > * {
  color: var(--color-font-white);
}

.buyback .dalex_12 {
  background-image: url("../img/buyback/buyback_footer_bg_optimized.jpg");
}

.d12_wrapper {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .d12_wrapper {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .d12_wrapper {
    margin-top: 32px;
  }
}

.buyback .d12_wrapper {
  margin: 0;
}

.d12w_img {
  margin-bottom: 96px;
}
@media (max-width: 991px) {
  .d12w_img {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .d12w_img {
    margin-bottom: 48px;
  }
}
.d12w_img img {
  width: 100%;
}

.d12w_data {
  border-radius: 24px;
  background: var(--bgcolor-green);
  padding: 72px;
  display: flex;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .d12w_data {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d12w_data {
    padding: 16px;
    flex-direction: column;
    gap: 24px;
  }
}

.d12wd_data {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 767px) {
  .d12wd_data {
    width: 100%;
    gap: 24px;
  }
}

.d12wdd_top {
  flex-grow: 1;
}

.d12wddt_caption {
  font-size: 62px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.86px;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .d12wddt_caption {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .d12wddt_caption {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .d12wddt_caption {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

.d12wddt_text {
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
}
@media (max-width: 991px) {
  .d12wddt_text {
    font-size: 15px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .d12wddt_text {
    font-size: 14px;
  }
}

.d12wdd_bottom {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .d12wdd_bottom {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .d12wdd_bottom {
    gap: 4px;
  }
}
.d12wdd_bottom a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-font-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.064px;
  padding-left: 28px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
}
.d12wdd_bottom a:first-child {
  background-image: url("../img/mail_icon.svg");
}
.d12wdd_bottom a:last-child {
  background-image: url("../img/phone_icon.svg");
}

.d12wd_form {
  width: 50%;
  border-radius: 16px;
  border-top: 4px solid var(--color-font-black);
  background: var(--color-font-white);
  box-shadow: 0 10px 20px -12px rgba(29, 31, 30, 0.2);
  padding: 28px 32px 32px;
}
@media (max-width: 991px) {
  .d12wd_form {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .d12wd_form {
    padding: 16px;
    width: 100%;
  }
}

form {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  form {
    margin-bottom: 16px;
    gap: 12px;
  }
}

.d12wdf_header {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.24px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .d12wdf_header {
    margin-bottom: 24px;
  }
}

.d12wdf_notice {
  color: var(--color-font-grey);
  text-align: center;
  /*font-size: 14px;*/
  font-size: 11px;
  line-height: 145%;
  letter-spacing: -0.056px;
  /*margin: 0 auto;
  max-width: 450px;*/
}
@media (max-width: 991px) {
  .d12wdf_notice {
    font-size: 10px;
    line-height: 130%;
  }
}
.dalex_13 .d4_wrapper {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .dalex_13 .d4_wrapper {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .dalex_13 .d4_wrapper {
    margin-bottom: 32px;
  }
}
.dalex_13 .d4wr_body {
  margin: 0;
}
.dalex_13 .d4wr_body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--common-gap);
}
@media (max-width: 767px) {
  .dalex_13 .d4wr_body ul {
    grid-template-columns: 1fr;
  }
}
.dalex_13 .d4wr_body ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: 32px 32px;
}
@media (max-width: 991px) {
  .dalex_13 .d4wr_body ul li {
    background-position: 24px 24px;
  }
}
.dalex_13 .d13wr_body {
  margin: 88px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1199px) {
  .dalex_13 .d13wr_body {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .dalex_13 .d13wr_body {
    gap: 12px;
    margin: 60px 0 32px;
  }
}
@media (max-width: 767px) {
  .dalex_13 .d13wr_body {
    gap: 8px;
    margin: 48px 0 32px;
  }
}
.dalex_13 .d13wr_body p {
  color: var(--color-font-black);
  font-size: 24px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.24px;
}
@media (max-width: 1199px) {
  .dalex_13 .d13wr_body p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .dalex_13 .d13wr_body p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .dalex_13 .d13wr_body p {
    font-size: 16px;
  }
}
.dalex_13 .d13wr_body:after {
  content: "";
  position: absolute;
  left: 0;
  top: -88px;
  width: 80px;
  height: 80px;
  background: url("../img/buyback/green_quotes.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .dalex_13 .d13wr_body:after {
    top: -60px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .dalex_13 .d13wr_body:after {
    top: -48px;
    width: 48px;
    height: 48px;
  }
}
.dalex_13 .d13wo_header {
  color: var(--color-font-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.072px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .dalex_13 .d13wo_header {
    margin-bottom: 2px;
  }
}
.dalex_13 .d4w_left {
  position: relative;
}
.dalex_13 .d4wl_img {
  height: 100%;
  max-height: 560px;
  border-radius: 16px;
  background: #D9D9D9;
  margin-bottom: 0;
}
.dalex_13 .d4wl_img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .dalex_13 .d4wl_img {
    height: 420px;
  }
}
.dalex_13 .d4wl_text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: calc(100% - 64px);
}
@media (max-width: 991px) {
  .dalex_13 .d4wl_text {
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }
}
@media (max-width: 767px) {
  .dalex_13 .d4wl_text {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

.dalex_thanks {
  min-height: 100vh;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../img/thanks_bg.png") center bottom no-repeat;
  background-size: 100% 307px;
  margin: 0;
}
.dalex_thanks .block_header {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .dalex_thanks .block_header {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .dalex_thanks .block_header {
    margin-bottom: 24px;
  }
}
.dalex_thanks .block_header .h1 {
  color: #1D1F1E;
  text-align: center;
  font-family: Manrope;
  font-size: 62px;
  font-style: normal;
  font-weight: 400;
  line-height: 109.677%;
  letter-spacing: -1.86px;
}
@media (max-width: 991px) {
  .dalex_thanks .block_header .h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .dalex_thanks .block_header .h1 {
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.9px;
  }
}
.dalex_thanks .block_body {
  max-width: 1008px;
  margin: 0 auto;
}
.dalex_thanks .thanks_bb_page {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .dalex_thanks .thanks_bb_page {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .dalex_thanks .thanks_bb_page {
    margin-bottom: 24px;
  }
}
.dalex_thanks .thanks_bb_page p, .dalex_thanks .thanks_bb_page ul li {
  color: #646A69;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  letter-spacing: -0.072px;
}
@media (max-width: 991px) {
  .dalex_thanks .thanks_bb_page p, .dalex_thanks .thanks_bb_page ul li {
    font-size: 16px;
  }
}
.dalex_thanks .thanks_bb_page p b, .dalex_thanks .thanks_bb_page ul li {
  font-weight: 700;
}
.dalex_thanks .thanks_bb_page ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dalex_thanks .thanks_bb_page_buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .dalex_thanks .thanks_bb_page_buttons {
    flex-direction: column;
    gap: 16px;
  }
}
.dalex_thanks .thanks_bb_page_buttons > * {
  padding: 13px 55px 13px 10px;
  border-radius: 200px;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.064px;
  width: 50%;
  background-size: 35px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .dalex_thanks .thanks_bb_page_buttons > * {
    padding: 16px 80px 16px 20px;
    background-size: 60px auto;
    width: 100%;
  }
}
.dalex_thanks .thanks_bb_page_buttons > *:first-child {
  color: #1D1F1E;
  background-color: #BEF264;
  background-image: url("../img/tg_round.svg");
}
.dalex_thanks .thanks_bb_page_buttons > *:last-child {
  color: #fff;
  background-color: #000;
  background-image: url("../img/inst_round.svg");
}

footer {
  padding: 48px 0;
  background: linear-gradient(0deg, #022C22 0%, #022C22 100%), #FFF7ED;
}
@media (max-width: 1199px) {
  footer {
    padding: 48px 0;
  }
}
.f_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--common-gap);
}
@media (max-width: 991px) {
  .f_wrapper {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .f_wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

.fw_logo > * img {
  width: 40px;
}

.fw_menu {
  display: flex;
  justify-content: center;
}
.fw_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--common-gap);
}
@media (max-width: 767px) {
  .fw_menu ul {
    flex-direction: column;
    gap: 6px;
  }
}
.fw_menu ul li {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.064px;
}
@media (max-width: 991px) {
  .fw_menu ul li {
    font-size: 14px;
    line-height: 130%;
  }
}
.fw_menu ul li a {
  color: var(--color-font-white);
  text-decoration: none;
}

.fw_copyright {
  text-align: right;
  color: #FFF;
  font-size: 14px;
  line-height: 145%;
  letter-spacing: -0.056px;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .fw_copyright {
    font-size: 12px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .fw_copyright {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .fw_copyright br {
    display: none;
  }
}

.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 (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: 104px 52px;
  background: var(--bgcolor-pink);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@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;
  }
}

@media (max-width: 767px) {
  .builded_modal .modal_content {
    width: 100%;
    padding: 0;
  }
}

.mb_close {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 48px;
  height: 48px;
  background: url("../img/popup_close.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: 12px;
    right: 12px;
  }
}
@media (max-width: 767px) {
  .mb_close {
    width: 32px;
    height: 32px;
  }
}

.mc_title {
  color: var(--color-font-black);
  text-align: center;
  font-size: 62px;
  line-height: 110%;
  letter-spacing: -1.86px;
  max-width: 1008px;
  margin: 0 auto 24px;
}
@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(--color-font-grey);
  text-align: center;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.072px;
  margin: 0 auto 40px;
  max-width: 800px;
}
@media (max-width: 991px) {
  .mc_text {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .mc_text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.mc_form {
  margin: 0 auto;
  width: 384px;
}
@media (max-width: 767px) {
  .mc_form {
    width: 100%;
  }
}
.mc_form form {
  width: 100%;
}/*# sourceMappingURL=styles.css.map */