@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

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

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #1A1A1A;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

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

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

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

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

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

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #1A1A1A;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2.308px;
  margin-bottom: 50px;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #CBA05A;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #CBA05A;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
}

.header__container {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__logo {
  display: none;
}

.header__nav {
  display: flex;
  padding-left: 50px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  color: #CBA05A;
}

.header__nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #ffffff;
  flex-shrink: 0;
}

.header__nav-logo img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__lang {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.header__lang:hover .header__lang-other {
  display: flex;
}

.header__lang-active {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #CBA05A;
  font-weight: 500;
  cursor: pointer;
}

.header__lang-active svg {
  flex-shrink: 0;
}

.header__lang-other {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: #CBA05A;
  padding: 10px 0;
  display: none;
}

.header__lang-other a {
  font-size: 14px;
}

.header__lang-other a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  background: #077568;
  border-top: 1px solid #E6E6E6;
}

.footer__container {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__col span {
  font-size: 14px;
  color: #01171E;
  font-weight: 500;
  width: 185px;
  line-height: 115%;
}

.footer__logo {
  width: 120px;
  height: 110px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  margin-right: auto;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  gap: 10px;
  max-width: 300px;
  line-height: 125%;
}

.footer__nav-list li svg {
  flex-shrink: 0;
}

.footer__nav-list li a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list li a:hover {
  color: #FE461D;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer__bot {
  border-top: 1px solid #DBDBDB;
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 14px;
  color: #A3A3A3;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #FE461D;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  color: #01171E;
  transition: 0.2s ease-in-out;
  opacity: 0.5;
}

.breadcrumbs__list-link:hover {
  color: #FE461D;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #01171E;
  opacity: 1;
}

.hero {
  height: 100dvh;
}

.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 90px;
  padding-right: 16px;
  padding-left: 16px;
}

.hero__title {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2.308px;
  margin-bottom: 60px;
  text-align: center;
}

.hero__link {
  padding: 14px 30px;
  border-radius: 27px;
  background: linear-gradient(270deg, #CBA05A 0%, #CC9F5B 100%);
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.692px;
  transition: 0.2s ease-in-out;
}

.hero__link:hover {
  transform: scale(1.06);
}

.benefits {
  background: url("../img/benefits-bg.png") center bottom/auto no-repeat, #F6F6F6;
}

.benefits__container {
  padding-top: 150px;
  padding-bottom: 100px;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.benefits__item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.benefits__item-header img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.769px;
}

.benefits__item-text {
  padding-top: 15px;
  color: #7F7F7F;
  font-size: 14px;
  letter-spacing: -0.538px;
  border-top: 1px solid rgba(151, 151, 151, 0.3);
}

.plans {
  background: url("../img/plans-title.png") center 100px/contain no-repeat;
}

.plans__container {
  padding: 120px 0;
}

.plans__title {
  position: relative;
}

.plans__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 75px;
}

.plans__header a {
  color: #555;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.769px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #979797;
  transition: 0.2s ease-in-out;
}

.plans__header a.active {
  color: #1A1A1A;
  border-color: #CB9F5A;
}

.plans__header a:hover {
  border-color: #CB9F5A;
}

.plans__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.3);
}

.plans__item {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #fff;
  transition: 0.2s ease-in-out;
  display: none;
}

.plans__item.active {
  display: flex;
  flex-direction: column;
}

.plans__item:hover {
  border-color: #077568;
}

.plans__item:hover .plans__item-img::before {
  opacity: 1;
}

.plans__item:hover .plans__item-rooms {
  color: #077568;
}

.plans__item-img {
  position: relative;
  height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.plans__item-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/zoom-icon.png") center/30px no-repeat, rgba(7, 117, 104, 0.7);
  z-index: 2;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.plans__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.plans__item-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 15px;
  border-radius: 18px;
  border: 1px solid #DCDCDC;
  background: #FFF;
  font-size: 14px;
}

.plans__item-info {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.plans__item-rooms {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.plans__item-stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 2px;
  border-bottom: 1px solid #979797;
  margin-bottom: 25px;
}

.plans__item-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 6px;
}

.plans__item-col span {
  font-size: 14px;
}

.plans__item-col span:nth-child(1) {
  font-weight: 500;
}

.plans__item-col span:nth-child(2) {
  color: #7F7F7F;
}

.plans__item-price {
  font-size: 20px;
  font-weight: 700;
}

.insta {
  background: url("../img/insta-title.png") top center/contain no-repeat;
  overflow: hidden;
}

.insta__container {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}

.insta__title {
  text-align: center;
  margin-bottom: 80px;
}

.insta__title span {
  color: #CBA05A;
}

.insta__slider {
  overflow: unset;
}

.insta__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.insta__slide {
  width: 290px;
}

.insta__slide:nth-child(odd) {
  margin-top: -30px;
}

.insta__slide-top {
  width: 100%;
}

.insta__slide-top img {
  width: 100%;
}

.insta__slide-img {
  height: 400px;
  width: 100%;
}

.insta__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.insta__slide-bot {
  width: 100%;
}

.insta__slide-bot img {
  width: 100%;
}

.insta__link {
  margin-top: 30px;
  -ms-grid-row-align: center;
      align-self: center;
  padding: 14px 70px;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  border-radius: 27px;
  background: linear-gradient(270deg, #CBA05A 0%, #CC9F5B 100%);
  transition: 0.2s ease-in-out;
}

.insta__link:hover {
  transform: scale(1.04);
}

.about {
  background: url("../img/about-bg.jpg") center/cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 0;
}

.about__left {
  width: 40%;
}

.about__title {
  color: #CBA05A;
  font-weight: 700;
  letter-spacing: -2.308px;
}

.about__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 138%;
  letter-spacing: -0.615px;
}

.about__img {
  width: 48%;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.invest {
  background: url("../img/benefits-bg.png") top center/100% auto no-repeat;
}

.invest__container {
  padding: 120px 0;
}

.invest__title {
  text-align: center;
  margin-bottom: 25px;
}

.invest__title span {
  color: #CBA05A;
}

.invest__subtitle {
  text-align: center;
  margin-bottom: 90px;
  font-size: 20px;
  font-weight: 700;
}

.invest__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  align-items: start;
}

.invest__item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.invest__item:nth-child(2) {
  margin-top: -20px;
  background: #077568;
  color: #ffffff !important;
}

.invest__item:nth-child(2) span {
  color: #ffffff !important;
}

.invest__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 25px;
}

.invest__item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.962px;
}

.invest__item-num {
  color: #000;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -3.846px;
  opacity: 0.08;
}

.invest__item-stats {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.invest__item-col {
  display: flex;
  flex-direction: column;
}

.invest__item-col span:nth-child(1) {
  color: #396765;
  font-size: 30px;
  font-weight: 700;
  line-height: 116%;
  letter-spacing: -1.154px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.3);
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.invest__item-col span:nth-child(2) {
  color: #424242;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
}

.map {
  margin-top: 120px;
}

.map iframe {
  height: 400px;
  border-radius: 20px;
}

.modal {
  position: fixed;
  z-index: 99;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.modal.active {
  display: flex;
}

.modal__block {
  position: relative;
  padding: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  width: 375px;
}

.modal__block-close {
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal__block-title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
}

.modal__block-fields {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 30px;
}

.modal__block-fields input,
.modal__block-fields textarea {
  width: 100%;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #CBA05A;
  background: #FFF;
  outline: none;
  font-size: 14px;
}

.modal__block-fields textarea {
  resize: none;
}

.modal__block-submit {
  padding: 14px;
  width: 100%;
  cursor: pointer;
  border-radius: 27px;
  background: linear-gradient(270deg, #CBA05A 0%, #CC9F5B 100%);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  border: none;
  outline: none;
  transition: 0.2s ease-in-out;
}

.modal__block-submit:hover {
  transform: scale(1.02);
}

.politics__container {
  padding-top: 200px;
  padding-bottom: 100px;
}

.politics__title {
  text-align: center;
}

.politics__text {
  line-height: 150%;
}

.empty {
  padding-top: 200px;
  padding-bottom: 100px;
  text-align: center;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }

  .header__nav {
    justify-content: center;
    padding-left: 0;
  }

  .header__nav-list {
    gap: 20px;
  }

  .header__nav-logo img {
    width: 50px;
    height: 50px;
  }

  .header__nav-logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header__container {
    display: flex;
    align-items: center;
  }

  .header__container {
    position: static;
  }

  .header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 2;
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    display: none;
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-item:not(:nth-child(4)) {
    margin-bottom: 20px;
  }

  .header__nav-link {
    color: #000;
  }

  .header__nav-logo {
    display: none;
  }

  .header__lang {
    position: relative;
    top: unset;
    transform: unset;
    margin-left: auto;
  }

  .benefits__container {
    padding: 80px 0;
  }

  .benefits__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .plans__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .insta__title {
    margin-bottom: 80px;
  }

  .invest__container {
    padding: 80px 0;
  }

  .invest__item-title {
    font-size: 24px;
  }

  .invest__item-num {
    font-size: 60px;
  }

  .invest__item-stats {
    row-gap: 25px;
  }

  .invest__item-col span:nth-child(1) {
    font-size: 20px;
  }

  .invest__item-col span:nth-child(2) {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 32px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__col {
    margin-right: 0;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li {
    max-width: unset;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bot-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .hero__title {
    font-size: 42px;
  }

  .about__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 80px 0;
  }

  .about__left {
    width: 100%;
  }

  .about__img {
    width: 100%;
  }

  .invest__subtitle {
    margin-bottom: 50px;
  }

  .invest__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .invest__item:nth-child(2) {
    margin-top: 0;
  }

  .map {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .plans {
    background-position-y: 50px;
  }

  .plans__container {
    padding: 80px 0;
  }

  .plans__header {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }

  .plans__header a {
    font-size: 16px;
  }

  .plans__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .insta__slide {
    width: 200px;
  }

  .insta__slide-img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .plans__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 320px;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateY(-20px);
    transition: all .35s ease;
    z-index: 9999;
}

.toast--show {
    opacity: 1;
    transform: translateY(0);
}

.toast--success {
    background: #1e7f43;
}

.toast--error {
    background: #b3261e;
}

.toast__title {
    font-weight: 600;
    margin-bottom: 6px;
}

.toast__text {
    font-size: 13px;
    line-height: 1.4;
}
