.banner {
  min-height: 100vh;
  position: relative;
  display: flex;
  overflow: hidden;
}
.banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.banner__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 100%);
  backdrop-filter: blur(3px);
  z-index: 1;
}
.banner__bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.banner__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: var(--header-height);
  padding-bottom: 75px;
}
@media (min-width: 48em) {
  .banner__wrapper {
    padding-bottom: 200px;
  }
}
.banner__middle {
  line-height: 100%;
  text-align: center;
  color: var(--clr-02);
  margin-top: 7px;
   margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48em) {
  .banner__middle {
    margin-bottom: 5px;
	max-width: 70%;
  }
}
@media (min-width: 62em) {
  .banner__middle {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 87.5em) {
  .banner__middle {
    margin-top: 15px;
    font-size: 24px;
  }
}
.banner__subtitle {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 20px;
}
@media (min-width: 48em) {
  .banner__subtitle {
    gap: 40px;
    margin-top: 16px;
  }
}
@media (min-width: 62em) {
  .banner__subtitle {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 40px;
    gap: 60px;
  }
}
.banner__ref {
  color: var(--clr-08);
}
.banner__inner {
  margin-top: auto;
}
.banner__advantages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.banner__adv-item {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  width: fit-content;
  line-height: 1;
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(17.1000003815px);
  position: relative;
  color: var(--clr-02);
  max-width:340px;
}
@media (min-width: 62em) {
  .banner__adv-item {
    font-size: 18px;
    gap: 20px;
    padding: 24px;
    border-radius: 30px;
  }
}
@media (min-width: 87.5em) {
  .banner__adv-item {
    font-size: 20px;
    gap: 30px;
    padding: 36px 38px;
	max-width:410px;
  }
}
.banner__adv-item:nth-child(2n+1) {
  margin-left: auto;
}
.banner__adv-item:before, .banner__adv-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.banner__adv-item:before {
  background: rgba(208, 208, 208, 0.01);
}
.banner__adv-item:after {
  background: radial-gradient(50% 50% at 50% 50%, rgba(253, 240, 242, 0) 0%, #fdf0f2 100%);
  opacity: 0.2;
}
.banner__adv-item i, .banner__adv-item em {
  font-family: var(--third-family);
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 62em) {
  .banner__adv-item i, .banner__adv-item em {
    font-size: 24px;
  }
}
@media (min-width: 87.5em) {
  .banner__adv-item i, .banner__adv-item em {
    font-size: 30px;
  }
}
.banner__adv-item .hi {
  width: 22px;
  height: 22px;
}
.banner__adv-item .hi:after {
  background-color: var(--clr-02);
}
@media (min-width: 62em) {
  .banner__adv-item .hi {
    height: 24px;
    width: 24px;
  }
}
@media (min-width: 48em) {
  .banner__adv-item:nth-child(2) {
    order: 1;
    margin: 0 22% 0 auto;
  }
}
@media (min-width: 87.5em) {
  .banner__adv-item:nth-child(2) {
    margin: 0 23% 0 auto;
  }
}
@media (min-width: 48em) {
  .banner__adv-item:nth-child(3) {
    margin: 0 auto 0 0;
    position: relative;
    top: -35px;
  }
}
@media (min-width: 62em) {
  .banner__adv-item:nth-child(3) {
    top: -50px;
  }
}
@media (min-width: 87.5em) {
  .banner__adv-item:nth-child(3) {
    top: -70px;
  }
}
@media (min-width: 62em) {
  .banner__adv-item span {
    display: block;
  }
  .banner__adv-item span br {
    display: none;
  }
}
@media (min-width: 62em) {
  .banner__row {
    --containerPadding: 60px;
  }
}
.banner__row .col {
  width: 100%;
}
.banner__card {
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
}
@media (min-width: 48em) {
  .banner__card {
    height: 100%;
  }
}
@media (min-width: 62em) {
  .banner__card {
    border-radius: 32px;
    padding: 40px;
  }
}
.banner__card--img {
  position: relative;
}
.banner__card--subtitle {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
@media (min-width: 48em) {
  .banner__card--subtitle {
    border-radius: 18px;
    min-height: 475px;
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle {
    border-radius: 30px;
    padding: 40px 30px 24px 40px;
    min-height: 675px;
  }
}
@media (min-width: 75em) {
  .banner__card--subtitle {
    min-height: 600px;
  }
}
@media (min-width: 87.5em) {
  .banner__card--subtitle {
    min-height: 700px;
  }
}
@media (min-width: 102.5em) {
  .banner__card--subtitle {
    min-height: 770px;
  }
}
.banner__card--subtitle .banner__subtitle {
  background-color: var(--clr-02);
  padding: 12px;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  border: 6px solid #f0eeef;
  position: relative;
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle {
    border-radius: 16px 20px 20px 16px;
    border: 6px solid #f0eeef;
    border-left: 0;
    position: absolute;
    left: 0;
    bottom: 86px;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle .banner__subtitle {
    bottom: 130px;
    border-radius: 24px 30px 30px 24px;
    border-width: 8px;
    padding: 12px 16px;
  }
}
@media (min-width: 75em) {
  .banner__card--subtitle .banner__subtitle {
    gap: 12px;
    padding: 12px;
  }
}
@media (min-width: 87.5em) {
  .banner__card--subtitle .banner__subtitle {
    gap: 15px;
    padding: 20px;
    bottom: 148px;
  }
}

.banner__card--subtitle .banner__subtitle .btn {
	white-space:normal;
	text-align:center;
}
/*.banner__card--subtitle .banner__subtitle .col {
  width: auto;
}
.banner__card--subtitle .banner__subtitle .col:nth-child(1) {
  width: 100%;
}*/
@media (min-width: 75em) {
	.banner__card--subtitle .banner__subtitle .col {
		flex:1;
	}
 /* .banner__card--subtitle .banner__subtitle .col:nth-child(1) {
    width: auto;
  }*/
}
@media (min-width: 75em) {
  .banner__card--subtitle .banner__subtitle .col:nth-child(1) .btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.banner__card--subtitle .banner__subtitle:before, .banner__card--subtitle .banner__subtitle:after {
  content: "";
  mask-image: url('data:image/svg+xml,<svg width="30" height="20" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 4C14 13 22 20 30 20H0C4 20 8 16.5 8 12V0H14V4Z" fill="%23F0EEEF" /></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 30px;
  height: 20px;
  display: block;
  background-color: var(--clr-05);
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle:before, .banner__card--subtitle .banner__subtitle:after {
    mask-image: url('data:image/svg+xml,<svg width="38" height="65" viewBox="0 0 38 65" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M29.502 30.5001C15.502 30.5001 0.00154507 19 0.00195312 0C0.00195312 2.5 0.000651041 61 0 64.5001C0.000288329 49 8.5013 38.5001 25.5 38.5001H37.5V30.5001H29.502Z" fill="%23F0EEEF" /></svg>');
    width: 24px;
    aspect-ratio: 38/65;
    height: auto;
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle .banner__subtitle:before, .banner__card--subtitle .banner__subtitle:after {
    mask-image: url('data:image/svg+xml,<svg width="38" height="65" viewBox="0 0 38 65" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M29.502 30.5001C15.502 30.5001 0.00154507 19 0.00195312 0C0.00195312 2.5 0.000651041 61 0 64.5001C0.000288329 49 8.5013 38.5001 25.5 38.5001H37.5V30.5001H29.502Z" fill="%23F0EEEF" /></svg>');
    width: 38px;
  }
}
.banner__card--subtitle .banner__subtitle:before {
  right: calc(100% - 16px);
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle:before {
    right: unset;
    left: -5px;
    transform: rotate(90deg);
    bottom: calc(100% - 11px);
  }
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle:before {
    transform: unset;
    left: 0px;
    bottom: calc(100% - 16px);
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle .banner__subtitle:before {
    transform: unset;
    left: 0px;
    bottom: calc(100% - 27px);
  }
}
.banner__card--subtitle .banner__subtitle:after {
  left: calc(100% - 16px);
  transform: scale(-1, 1);
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle:after {
    left: -5px;
    transform: scale(-1, 1) rotate(-90deg);
    top: calc(100% - 11px);
  }
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__subtitle:after {
    left: 0px;
    bottom: unset;
    transform: scale(1, -1);
    top: calc(100% - 16px);
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle .banner__subtitle:after {
    left: 0;
    transform: scale(1, -1);
    top: calc(100% - 27px);
  }
}
.banner__card--subtitle .banner__ref {
  color: var(--clr-01);
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__adv-item:nth-child(1) {
    transform: unset;
    order: 0;
    margin: auto 0 198px auto;
  }
}
@media (min-width: 62em) {
  .banner__card--subtitle .banner__adv-item:nth-child(1) {
    margin: auto 0 243px auto;
  }
}
@media (min-width: 75em) {
  .banner__card--subtitle .banner__adv-item:nth-child(1) {
    margin: auto 0 198px auto;
  }
}
@media (min-width: 87.5em) {
  .banner__card--subtitle .banner__adv-item:nth-child(1) {
    margin: auto 0 178px auto;
  }
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__adv-item:nth-child(2) {
    transform: unset;
    order: -1;
    margin: 0;
  }
}
@media (min-width: 48em) {
  .banner__card--subtitle .banner__adv-item:nth-child(3) {
    transform: unset;
    order: 0;
    margin: 20px 0 0 30px;
  }
}
@media (min-width: 75em) {
  .banner__card--subtitle .banner__adv-item:nth-child(3) {
    margin: 20px 0 0 75px;
  }
}
@media (min-width: 102.5em) {
  .banner__card--subtitle .banner__adv-item:nth-child(3) {
    margin: 20px 0 0 95px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-top {
    border-radius: 8px 8px 18px 18px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-top .banner__subtitle {
    border-radius: 16px 16px 20px 20px;
    border-top: 0;
    order: -1;
    margin-top: -16px;
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-top .banner__subtitle:before, .banner__card--subtitle-top .banner__subtitle:after {
    bottom: unset;
    top: 0;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-top .banner__subtitle:before {
    right: calc(100% - 16px);
    transform: scale(1, -1);
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-top .banner__subtitle:after {
    left: calc(100% - 16px);
    transform: scale(-1, -1);
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-bottom {
    border-radius: 18px 18px 8px 8px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-bottom .banner__subtitle {
    border-radius: 20px 20px 16px 16px;
    border-bottom: 0;
    order: 1;
    margin-top: 6px;
    margin-bottom: -16px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-bottom .banner__adv-item:nth-child(1) {
    margin: 10px 0 0 12px;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-bottom .banner__adv-item:nth-child(2) {
    margin: 16px 0 0 auto;
  }
}
@media (max-width: 767px) {
  .banner__card--subtitle-bottom .banner__adv-item:nth-child(3) {
    margin: 153px 0 14px 0;
  }
}
.banner--2-cols {
  display: block;
  min-height: unset;
}
.banner--2-cols:after {
  content: none;
}
.banner--2-cols .banner__wrapper {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 0;
}
@media (min-width: 62em) {
  .banner--2-cols .banner__wrapper {
    padding-top: calc(var(--header-height) + 20px);
  }
}
.banner--2-cols .banner__inner {
  height: 100%;
}
@media (min-width: 48em) {
  .banner--2-cols .banner__row {
    --containerPadding: 30px;
  }
}
@media (min-width: 62em) {
  .banner--2-cols .banner__row {
    --containerPadding: 40px;
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols .banner__row {
    --containerPadding: 60px;
  }
}
@media (min-width: 48em) {
  .banner--2-cols .banner__row > .col {
    width: 50%;
  }
}
.banner--2-cols .banner__title {
  margin-bottom: 28px;
}
@media (min-width: 48em) {
  .banner--2-cols .banner__title {
    text-align: left;
  }
}
@media (min-width: 62em) {
  .banner--2-cols .banner__title {
    margin-bottom: 32px;
  }
}
.banner--2-cols .banner__advantages {
  height: 100%;
}
.banner--2-cols .banner__adv-item {
  position: static;
}
@media (min-width: 62em) {
  .banner--2-cols .banner__adv-item {
    padding: 20px 24px;
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols .banner__adv-item {
    padding: 25px 38px;
  }
}
.banner--2-cols .banner__adv-item:nth-child(2) {
  margin-right: 0;
}
@media (min-width: 48em) {
  .banner--2-cols .col-left .banner__card {
    display: flex;
    flex-direction: column;
  }
}
.banner--2-cols .col-left .banner__card .banner__title + .h3,
.banner--2-cols .col-left .banner__card .banner__title + .banner__text {
  margin-top: auto;
}
.banner--2-cols-title {
  padding-top: var(--header-height);
}
.banner--2-cols-title .banner__wrapper {
  padding: 16px;
  border-radius: 18px;
  background-color: var(--clr-02);
}
@media (min-width: 62em) {
  .banner--2-cols-title .banner__wrapper {
    border-radius: 32px;
    padding: 30px;
  }
}
.banner--2-cols-title .banner__bg {
  z-index: 0;
}
.banner--2-cols-title .banner__subtitle {
  margin: 0;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 14px;
}
@media (min-width: 36em) {
  .banner--2-cols-title .banner__subtitle {
    justify-content: space-between;
  }
}
@media (min-width: 48em) {
  .banner--2-cols-title .banner__subtitle {
    justify-content: space-evenly;
    margin-bottom: 0;
  }
}
@media (min-width: 62em) {
  .banner--2-cols-title .banner__subtitle {
    gap: 30px;
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols-title .banner__subtitle {
    justify-content: start;
    gap: 40px;
  }
}
.banner--2-cols-title .banner__subtitle .col {
  width: fit-content;
}
.banner--2-cols-title .banner__subtitle .col:first-child {
  width: 100%;
}
@media (min-width: 36em) {
  .banner--2-cols-title .banner__subtitle .col:first-child {
    width: fit-content;
  }
}
@media (min-width: 48em) {
  .banner--2-cols-title .banner__subtitle .col:first-child {
    width: 100%;
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols-title .banner__subtitle .col:first-child {
    width: fit-content;
  }
}
@media (min-width: 62em) {
  .banner--2-cols-title .banner__card {
    border-radius: 24px;
  }
}
.banner--2-cols-title .banner__ref {
  color: var(--clr-01);
}
.banner--2-cols-title .banner__advantages {
  gap: 60px;
  justify-content: space-between;
}
.banner--2-cols-title .banner__adv-item {
  transform: unset;
}
.banner--2-cols-title .col-left .banner__card {
  padding: 0;
  border-radius: 0;
}
@media (min-width: 48em) {
  .banner--2-cols-title .col-left .banner__card {
    padding: 16px 0;
  }
}
@media (min-width: 62em) {
  .banner--2-cols-title .col-left .banner__card {
    padding: 40px 0;
  }
}
.banner--2-cols-bg-map .banner__wrapper {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.banner--2-cols-bg-map .banner__card--img {
  padding: 0;
  border-radius: 0;
  overflow: unset;
}
.banner--2-cols-bg-map .banner__bg {
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.banner--2-cols-bg-map .banner__adv-item {
  background-color: var(--clr-02);
  color: var(--clr-01);
  position: relative;
  overflow: unset;
  backdrop-filter: unset;
  border: 1px solid rgba(73, 73, 73, 0.14);
}
.banner--2-cols-bg-map .banner__adv-item .hi:after {
  background-color: var(--clr-01);
}
.banner--2-cols-bg-map .banner__adv-item:before, .banner--2-cols-bg-map .banner__adv-item:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  aspect-ratio: 1/1;
  height: auto;
  z-index: 1;
}
@media (min-width: 62em) {
  .banner--2-cols-bg-map .banner__adv-item:before, .banner--2-cols-bg-map .banner__adv-item:after {
    top: calc(100% - 8px);
    left: calc(100% - 8px);
  }
}
.banner--2-cols-bg-map .banner__adv-item:before {
  width: 30px;
  background: radial-gradient(50% 50% at 50% 50%, rgb(250, 210, 101) 0%, rgb(245, 201, 81) 100%);
  box-shadow: inset 0 0 7px 0 #f5e18b;
}
@media (min-width: 62em) {
  .banner--2-cols-bg-map .banner__adv-item:before {
    width: 34px;
  }
}
.banner--2-cols-bg-map .banner__adv-item:after {
  width: 6px;
  background: var(--clr-01);
  opacity: 1;
}
@media (min-width: 62em) {
  .banner--2-cols-bg-map .banner__adv-item:after {
    width: 8px;
  }
}
@media (min-width: 48em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(2) {
    transform: translateY(-100%);
  }
}
.banner--2-cols-bg-map .banner__adv-item:nth-child(2):before, .banner--2-cols-bg-map .banner__adv-item:nth-child(2):after {
  left: 100%;
}
@media (min-width: 48em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(2):before, .banner--2-cols-bg-map .banner__adv-item:nth-child(2):after {
    left: 0;
  }
}
@media (min-width: 75em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(3) {
    transform: translateX(-80px);
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(3) {
    transform: translateX(-100px);
  }
}
@media (min-width: 102.5em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(3) {
    transform: translateX(-120px);
  }
}
@media (min-width: 48em) {
  .banner--2-cols-bg-map .banner__adv-item:nth-child(3):before, .banner--2-cols-bg-map .banner__adv-item:nth-child(3):after {
    left: 100%;
  }
}
@media (min-width: 75em) {
  .banner--2-cols-bg-map .col-left .banner__text {
    padding-right: 80px;
  }
}
@media (min-width: 87.5em) {
  .banner--2-cols-bg-map .col-left .banner__text {
    padding-right: 95px;
  }
}
@media (min-width: 102.5em) {
  .banner--2-cols-bg-map .col-left .banner__title {
    padding-right: 75px;
  }
  .banner--2-cols-bg-map .col-left .banner__text {
    padding-right: 170px;
  }
}