body {
  color: #121212;
  margin: 0px 0px 0px 0px;
  font-family: "Gilroy";
  font-weight: 500;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #121212;
  margin: 0px;
}

h1 {
  margin: 0px;
}

h2 {
  margin: 0px;
}

.container {
  max-width: 1212px;
  margin: auto;
}
@media screen and (max-width: 1236px) {
  .container {
    max-width: 757.5px;
  }
}
@media screen and (max-width: 785px) {
  .container {
    max-width: 420px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    max-width: 87.5vw;
  }
}

.acontainer {
  max-width: 1400px;
  margin: auto;
}

.wrapper {
  padding: 50px;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .wrapper {
    padding: 31.25px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .wrapper {
    padding: 18px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 3.75vw;
    border-radius: 1.563vw;
  }
}

.header {
  position: relative;
  z-index: 4;
  background-color: #F6F8F7;
  padding: 38px 0px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1236px) {
  .header {
    padding: 23.75px 0px;
  }
}
@media screen and (max-width: 785px) {
  .header {
    padding: 25.5px 0px;
  }
}
@media screen and (max-width: 480px) {
  .header {
    padding: 4.063vw 0px;
  }
}
.header__list {
  display: flex;
}
.header__list__item {
  text-transform: uppercase;
  font-family: "Neue Machina";
  font-size: 16px;
  color: #636363;
  padding-left: 64px;
}
.header__list__item:first-child {
  padding-left: 0px;
}
@media screen and (max-width: 1236px) {
  .header__list__item {
    font-size: 10px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 785px) {
  .header__list {
    display: none;
  }
}
.header__dropdown {
  position: relative;
  display: inline-block;
}
.header__dropdown__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 20px;
  line-height: 80%;
  color: #fff;
  padding: 13px 23px;
  background-color: #E7A827;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__dropdown__btn:hover {
  background-color: #edb84d;
}
.header__dropdown__btn img {
  width: 12.2px;
  height: 7.2px;
  margin-left: 6px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1236px) {
  .header__dropdown__btn {
    font-size: 12.5px;
    padding: 8px 14.5px;
    border-radius: 12.5px;
  }
  .header__dropdown__btn img {
    width: 7.38px;
    height: 4.38px;
    margin-left: 3.75px;
  }
}
@media screen and (max-width: 785px) {
  .header__dropdown__btn {
    font-size: 16.5px;
    padding: 9px 15px;
    border-radius: 15px;
  }
  .header__dropdown__btn img {
    width: 7.8px;
    height: 4.8px;
    margin-left: 5.5px;
  }
}
@media screen and (max-width: 480px) {
  .header__dropdown__btn {
    font-size: 3.438vw;
    padding: 1.875vw 3.125vw;
    border-radius: 3.125vw;
  }
  .header__dropdown__btn img {
    width: 1.625vw;
    height: 1vw;
    margin-left: 0.938vw;
  }
}
.header__dropdown__content {
  opacity: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  background-color: #121212;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__dropdown__content:hover {
  background-color: #393939;
}
.header__dropdown__content:hover ~ .header__dropdown__background {
  background-color: #393939;
  display: block;
}
.header__dropdown__content a {
  color: #fff;
}
@media screen and (max-width: 1236px) {
  .header__dropdown__content {
    font-size: 12.5px;
    height: 25px;
    border-bottom-left-radius: 12.5px;
    border-bottom-right-radius: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .header__dropdown__content {
    font-size: 16.5px;
    height: 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 480px) {
  .header__dropdown__content {
    font-size: 3.438vw;
    height: 6.25vw;
    border-bottom-left-radius: 3.125vw;
    border-bottom-right-radius: 3.125vw;
  }
}
.header__dropdown__background {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 0px;
  background-color: #121212;
  width: 100%;
  height: 100%;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1236px) {
  .header__dropdown__background {
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
  }
}
@media screen and (max-width: 785px) {
  .header__dropdown__background {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
@media screen and (max-width: 785px) {
  .header__dropdown__background {
    border-top-left-radius: 3.438vw;
    border-top-right-radius: 3.438vw;
  }
}
.header__dropdown:hover .header__dropdown__btn img {
  transform: rotateX(180deg);
}
.header__dropdown:hover .header__dropdown__content {
  opacity: 1;
  overflow: auto;
}
.header__dropdown:hover .header__dropdown__background {
  opacity: 1;
  overflow: auto;
}
.header__logo {
  width: 137px;
  height: 59px;
}
.header__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .header__logo {
    width: 86px;
    height: 37px;
  }
}
@media screen and (max-width: 785px) {
  .header__logo {
    width: 111px;
    height: 48px;
  }
}
@media screen and (max-width: 480px) {
  .header__logo {
    width: 23.125vw;
    height: 10vw;
  }
}
.header__menu {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 785px) {
  .header__menu {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .header__menu img {
    width: 5vw;
    height: 5vw;
  }
}

.icon-tg img {
  padding-left: 8px;
}
@media screen and (max-width: 1236px) {
  .icon-tg img {
    padding-left: 5px;
  }
}

.lock {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0%;
  z-index: 5;
  opacity: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.open {
  opacity: 1;
  visibility: visible;
}

.popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup-header__container {
  background-color: #fff;
  padding: 36px 30px;
  border-radius: 7.5px;
}
@media screen and (max-width: 480px) {
  .popup-header__container {
    padding: 7.5vw 6.25vw;
    border-radius: 1.563vw;
  }
}
.popup-header__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .popup-header__head {
    margin-bottom: 6.719vw;
  }
}
.popup-header__title {
  font-family: "Neue Machina";
  font-size: 27px;
  line-height: 100%;
}
@media screen and (max-width: 480px) {
  .popup-header__title {
    font-size: 5.625vw;
  }
}
.popup-header__close {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7A827;
  border-radius: 4.5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.popup-header__close img {
  width: 11.1px;
  height: 11.1px;
}
@media screen and (max-width: 480px) {
  .popup-header__close {
    border-radius: 0.938vw;
    width: 7.5vw;
    height: 7.5vw;
  }
  .popup-header__close img {
    width: 2.313vw;
    height: 2.313vw;
  }
}
.popup-header__list {
  display: flex;
  flex-direction: column;
  gap: 9px 0px;
}
@media screen and (max-width: 480px) {
  .popup-header__list {
    gap: 1.875vw 0px;
  }
}
.popup-header__li {
  display: flex;
  justify-content: space-between;
  background-color: #F6F8F7;
  padding: 20px 15px;
  border-radius: 6px;
  width: 360px;
}
@media screen and (max-width: 480px) {
  .popup-header__li {
    padding: 4.063vw 3.125vw;
    border-radius: 1.25vw;
    width: 75vw;
  }
}
.popup-header__li-text {
  font-family: "Neue Machina";
  font-size: 18px;
  color: #636363;
}
@media screen and (max-width: 480px) {
  .popup-header__li-text {
    font-size: 3.75vw;
  }
}
.popup-header__icon {
  width: 18px;
  height: 18px;
}
.popup-header__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .popup-header__icon {
    width: 3.75vw;
    height: 3.75vw;
  }
}

.popup-one {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup-one__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  width: 500px;
  padding: 67px 50px;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .popup-one__container {
    width: 312.5px;
    padding: 42px 31px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__container {
    width: 320px;
    padding: 41px 27px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__container {
    width: 75vw;
    padding: 9.38vw 6.25vw;
    border-radius: 3.75vw;
  }
}
.popup-one__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 1236px) {
  .popup-one__head {
    padding-bottom: 18.75px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__head {
    padding-bottom: 27px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__head {
    padding-bottom: 6.25vw;
  }
}
.popup-one__logo {
  width: 130px;
}
.popup-one__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1236px) {
  .popup-one__logo {
    width: 81.25px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__logo {
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__logo {
    width: 23.44vw;
  }
}
.popup-one__close {
  width: 16px;
  cursor: pointer;
}
.popup-one__close img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1236px) {
  .popup-one__close {
    width: 10px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__close {
    width: 13px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__close {
    width: 3.13vw;
  }
}
.popup-one__form-block {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1236px) {
  .popup-one__form-block {
    padding-top: 18.75px;
    gap: 20px;
    margin-bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form-block {
    padding-top: 27px;
    gap: 21px;
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form-block {
    padding-top: 6.25vw;
    gap: 5vw;
    margin-bottom: 6.25vw;
  }
}
.popup-one__form {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1236px) {
  .popup-one__form {
    gap: 10px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form {
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form {
    gap: 1.88vw;
  }
}
.popup-one__form__title {
  font-family: "Neue Machina";
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.8px;
  max-width: 500px;
}
@media screen and (max-width: 1236px) {
  .popup-one__form__title {
    font-size: 25px;
    max-width: 312.5px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form__title {
    font-size: 32px;
    max-width: 320px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form__title {
    font-size: 7.5vw;
    max-width: 75vw;
    letter-spacing: -0.8px;
  }
}
.popup-one__form__text {
  font-size: 24px;
  max-width: 370px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .popup-one__form__text {
    font-size: 15px;
    max-width: 230px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form__text {
    font-size: 15px;
    max-width: 230px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form__text {
    font-size: 3.44vw;
    max-width: 53.13vw;
  }
}
.popup-one__form__field {
  box-sizing: border-box;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
}
@media screen and (max-width: 1236px) {
  .popup-one__form__field {
    padding: 11px 12px;
    border-radius: 6.25px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form__field {
    padding: 13px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form__field {
    padding: 3.75vw 3.13vw;
    border-radius: 1.88vw;
  }
}
.popup-one__form__field::placeholder {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 500;
  color: #B1B1B1;
  letter-spacing: -0.4px;
}
@media screen and (max-width: 1236px) {
  .popup-one__form__field::placeholder {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form__field::placeholder {
    font-size: 13px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form__field::placeholder {
    font-size: 3.13vw;
    letter-spacing: -0.4px;
  }
}
.popup-one__form__btn {
  box-sizing: border-box;
  padding: 18px 40px;
  background-color: #E7A827;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 80%;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-one__form__btn:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .popup-one__form__btn {
    padding: 11px 25px;
    border-radius: 6.25px;
    font-size: 11px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__form__btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__form__btn {
    padding: 3.75vw 7.5vw;
    border-radius: 1.88vw;
    font-size: 3.75vw;
  }
}
.popup-one__bot {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1236px) {
  .popup-one__bot {
    gap: 5px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__bot {
    gap: 11px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__bot {
    gap: 2.5vw;
  }
}
.popup-one__bot__title {
  font-size: 16px;
  color: #B1B1B1;
  letter-spacing: -0.4px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .popup-one__bot__title {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__bot__title {
    font-size: 13px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__bot__title {
    font-size: 3.13vw;
    letter-spacing: -0.4px;
  }
}
.popup-one__bot__btns {
  width: 100%;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 1236px) {
  .popup-one__bot__btns {
    gap: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__bot__btns {
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__bot__btns {
    gap: 1.88vw;
  }
}
.popup-one__bot__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0px;
  border-radius: 10px;
  background-color: #36AFE2;
  font-size: 18px;
  font-weight: 600;
  line-height: 80%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-one__bot__btn:hover {
  background-color: #2ca4d7;
}
@media screen and (max-width: 1236px) {
  .popup-one__bot__btn {
    gap: 5px;
    padding: 11px 44px;
    border-radius: 6.25px;
    font-size: 11px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__bot__btn {
    gap: 5px;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__bot__btn {
    gap: 1.25vw;
    padding: 3.13vw 7.5vw;
    border-radius: 1.88vw;
    font-size: 3.75vw;
  }
}
.popup-one__bot__btn:last-child {
  background-color: #12B433;
}
.popup-one__bot__btn:last-child:hover {
  background-color: #0da62c;
}
.popup-one__bot__btn__icon {
  width: 20px;
  height: 20px;
}
.popup-one__bot__btn__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .popup-one__bot__btn__icon {
    width: 12.5px;
    height: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .popup-one__bot__btn__icon {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 480px) {
  .popup-one__bot__btn__icon {
    width: 3.75vw;
    height: 3.75vw;
  }
}

.hello {
  margin: 40px 0px 20px;
}
@media screen and (max-width: 1236px) {
  .hello {
    margin: 25px 0px 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .hello {
    margin: 27px 0px 48px;
  }
}
@media screen and (max-width: 480px) {
  .hello {
    margin: 5.625vw 0px 10vw;
  }
}
.hello__container {
  display: flex;
}
@media screen and (max-width: 785px) {
  .hello__container {
    flex-direction: column;
  }
}
.hello__column1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 682px;
  padding: 40px 0px 0px 40px;
  margin-right: 20px;
  position: relative;
  text-transform: uppercase;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .hello__column1 {
    width: 451.25px;
    padding: 25px 0px 0px 25px;
    margin-right: 12.5px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .hello__column1 {
    width: 390px;
    height: 330px;
    padding: 30px 0px 0px 30px;
    margin: 0px 0px 15px 0px;
  }
}
@media screen and (max-width: 480px) {
  .hello__column1 {
    width: 81.25vw;
    height: 68.75vw;
    padding: 6.25vw 0px 0px 6.25vw;
    margin-bottom: 4.688vw;
  }
}
.hello__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 46px;
  margin-bottom: 24px;
  max-width: 391px;
  color: #fff;
}
@media screen and (max-width: 1236px) {
  .hello__title {
    font-size: 28.75px;
    margin-bottom: 14.75px;
    max-width: 244.38px;
  }
}
@media screen and (max-width: 785px) {
  .hello__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .hello__title {
    line-height: 110%;
    max-width: 62.5vw;
    font-size: 7.5vw;
  }
}
.hello__btn {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  background-color: #E7A827;
  border-radius: 6px;
  max-width: 154px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hello__btn:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .hello__btn {
    font-size: 10px;
    padding: 12.5px 17.5px;
    border-radius: 3.75px;
    max-width: 100px;
  }
}
@media screen and (max-width: 785px) {
  .hello__btn {
    display: none;
  }
}
.hello__btn-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24.5px 0px;
  background-color: #E7A827;
  border-radius: 7.5px;
  max-width: 420px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hello__btn-mobile:hover {
  background-color: #edb84d;
}
.hello__btn-mobile .icon-white-arrow-right {
  display: flex;
  align-items: center;
}
.hello__btn-mobile .icon-white-arrow-right img {
  width: 15px;
  height: 7.5px;
}
@media screen and (max-width: 785px) {
  .hello__btn-mobile {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .hello__btn-mobile {
    max-width: 87.5vw;
    padding: 5.313vw 0px;
    border-radius: 1.563vw;
    margin-bottom: 3.125vw;
  }
  .hello__btn-mobile span {
    font-size: 4.375vw;
  }
}
.hello .icon-white-arrow-right {
  margin-right: 8px;
}
@media screen and (max-width: 1236px) {
  .hello .icon-white-arrow-right {
    margin-right: 5px;
  }
}
@media screen and (max-width: 785px) {
  .hello .icon-white-arrow-right {
    margin-right: 9px;
  }
}
@media screen and (max-width: 480px) {
  .hello .icon-white-arrow-right {
    margin-right: 1.875vw;
  }
  .hello .icon-white-arrow-right img {
    width: 3.125vw;
    height: auto;
  }
}
.hello__icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 1236px) {
  .hello__icon {
    right: 18.75px;
    bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .hello__icon {
    right: 24px;
    bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .hello__icon {
    right: 5vw;
    bottom: 5vw;
  }
}
.hello__column2 {
  width: 410px;
  display: block;
  text-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .hello__column2 {
    width: 293.75px;
  }
}
@media screen and (max-width: 785px) {
  .hello__column2 {
    width: auto;
  }
}
.hello__row1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFD174;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 12px;
  width: 410px;
  height: 268px;
  position: relative;
}
@media screen and (max-width: 1236px) {
  .hello__row1 {
    margin-bottom: 12.5px;
    padding: 18.75px;
    width: 256.25px;
    height: auto;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1 {
    margin-bottom: 0;
    padding: 30px 0px 34px 24px;
    width: 396px;
  }
}
@media screen and (max-width: 480px) {
  .hello__row1 {
    padding: 6.25vw 0px 6.25vw 6.25vw;
    width: 82.5vw;
  }
}
.hello__row1__subtitle {
  max-width: 226px;
}
@media screen and (max-width: 1236px) {
  .hello__row1__subtitle {
    margin-bottom: 85.63px;
    max-width: 141px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1__subtitle {
    margin-bottom: 30px;
    max-width: 233px;
  }
}
@media screen and (max-width: 480px) {
  .hello__row1__subtitle {
    margin-bottom: 7.5vw;
    max-width: 57.3vw;
  }
}
.hello__row1 .subtitle-ru {
  max-width: 193px;
}
@media screen and (max-width: 1236px) {
  .hello__row1 .subtitle-ru {
    max-width: 121px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1 .subtitle-ru {
    max-width: 199px;
  }
}
@media screen and (max-width: 480px) {
  .hello__row1 .subtitle-ru {
    max-width: 49.1vw;
  }
}
.hello__row1__description {
  font-size: 13px;
  line-height: 150%;
  max-width: 290px;
  text-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .hello__row1__description {
    font-size: 8px;
    max-width: 185px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1__description {
    font-size: 13.5px;
    max-width: 312px;
  }
}
@media screen and (max-width: 480px) {
  .hello__row1__description {
    font-size: 3.438vw;
    max-width: 60.5vw;
  }
}
.hello__row1__icon {
  position: absolute;
}
.hello__row1 .icon-shortlogo {
  right: 30px;
  top: 30px;
}
@media screen and (max-width: 1236px) {
  .hello__row1 .icon-shortlogo img {
    width: 75px;
    width: 85px;
  }
  .hello__row1 .icon-shortlogo {
    right: 18.75px;
    top: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1 .icon-shortlogo {
    display: none;
  }
}
.hello__row1 .black-arrow-right {
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 1236px) {
  .hello__row1 .black-arrow-right {
    right: 18.75px;
    bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row1 .black-arrow-right {
    right: 24px;
    bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .hello__row1 .black-arrow-right {
    right: 5vw;
    bottom: 6.25vw;
  }
}
.hello__row2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: end;
  border-radius: 12px;
  padding: 30px;
  width: 410px;
  height: 205px;
  color: #fff;
}
.hello__row2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hello__row2__subtitle, .hello__row2__title, .hello__row2__icon {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1236px) {
  .hello__row2 {
    border-radius: 7.5px;
    width: 256.25px;
    height: 128.12px;
    padding: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .hello__row2 {
    display: none;
  }
}
.hello__row2__subtitle {
  max-width: 181px;
  border-color: #fff !important;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .hello__row2__subtitle {
    max-width: 113px;
    margin-bottom: 10px;
  }
}
.hello__row2__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 28px;
  line-height: 75%;
  margin-bottom: 64px;
}
@media screen and (max-width: 1236px) {
  .hello__row2__title {
    font-size: 17.5px;
    margin-bottom: 39.38px;
  }
}
.hello .subtitle-border {
  font-size: 16px;
  line-height: 75%;
  padding: 15px 20px;
  border: #121212 solid 1px;
  border-radius: 21.8px;
}
@media screen and (max-width: 1236px) {
  .hello .subtitle-border {
    font-size: 10px;
    padding: 9.5px 12.5px;
    border: #121212 solid 0.63px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 785px) {
  .hello .subtitle-border {
    font-size: 16.5px;
    padding: 15px 24px;
    border: #121212 solid 1.5px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 480px) {
  .hello .subtitle-border {
    font-size: 4.063vw;
    padding: 3.75vw 6.25vw;
    border: 0.313vw solid #121212;
    border-radius: 7vw;
  }
}
.hello .icon-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  background-color: #fff;
  border-radius: 50px;
  max-width: 21px;
  max-height: 21px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hello .icon-arrow:hover {
  background-color: #ebebeb;
}
@media screen and (max-width: 1236px) {
  .hello .icon-arrow img {
    width: 13px;
  }
  .hello .icon-arrow {
    width: 13px;
    padding: 14px 12.5px;
  }
}
@media screen and (max-width: 480px) {
  .hello .icon-arrow {
    width: 2.5vw;
    padding: 2.813vw 2.5vw;
  }
  .hello .icon-arrow img {
    width: 2.5vw;
  }
}
.hello .black-arrow-down {
  padding: 20.57px 22.29px 19.71px 23.14px;
  height: 21px;
}
@media screen and (max-width: 1236px) {
  .hello .black-arrow-down {
    height: 13px;
    padding: 12.5px 12.3px;
  }
  .hello .black-arrow-down img {
    height: 13px;
  }
}
@media screen and (max-width: 785px) {
  .hello .black-arrow-down {
    height: 13px;
    width: 9px;
    padding: 12px 13.5px;
    bottom: 24px;
  }
  .hello .black-arrow-down img {
    height: 13px;
  }
}
@media screen and (max-width: 480px) {
  .hello .black-arrow-down {
    height: 2.5vw;
    width: 1.875vw;
    padding: 2.5vw 2.813vw;
    bottom: 5vw;
  }
  .hello .black-arrow-down img {
    width: 1.875vw;
  }
}

.projects__title-block {
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 59px 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .projects__title-block {
    border-radius: 7.5px;
    padding: 36.5px 76.25px;
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .projects__title-block {
    padding: 30px 24px;
    margin-bottom: 27px;
    align-items: start;
  }
}
@media screen and (max-width: 480px) {
  .projects__title-block {
    border-radius: 1.563vw;
    padding: 6.25vw 5vw;
    margin-bottom: 7.5vw;
  }
}
.projects__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .projects__title {
    font-size: 25px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 785px) {
  .projects__title {
    font-size: 18px;
    margin-bottom: 21px;
    max-width: 190px;
  }
}
@media screen and (max-width: 480px) {
  .projects__title {
    font-size: 5.625vw;
    margin-bottom: 5vw;
    max-width: 57.5vw;
  }
}
.projects__tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 785px) {
  .projects__tabs {
    justify-content: start;
  }
}
.projects .tab-btn {
  padding: 0px 32px;
  border-left: #B2B3B2 solid 1px;
  color: #686868;
  cursor: pointer;
  text-transform: capitalize;
}
@media screen and (max-width: 1236px) {
  .projects .tab-btn {
    padding: 0px 19.5px;
  }
}
@media screen and (max-width: 785px) {
  .projects .tab-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    font-weight: 600;
    font-size: 12px;
    border: #121212 solid 0.6px;
    color: #121212;
    border-radius: 13.5px;
    margin: 0px 9px 9px 0px;
    line-height: 8px;
  }
}
@media screen and (max-width: 480px) {
  .projects .tab-btn {
    padding: 2.5vw 5vw;
    font-size: 3.438vw;
    border: #121212 solid 0.313vw;
    border-radius: 3.75vw;
    margin: 0px 2.5vw 2.5vw 0px;
    line-height: 2.188vw;
  }
}
.projects .tab-btn:first-child {
  border: none;
}
@media screen and (max-width: 785px) {
  .projects .tab-btn:first-child {
    border: #121212 solid 0.6px;
  }
}
@media screen and (max-width: 480px) {
  .projects .tab-btn:first-child {
    border: #121212 solid 0.313vw;
  }
}
.projects .tab-btn.active {
  color: #E7A827;
}
@media screen and (max-width: 785px) {
  .projects .tab-btn.active {
    background-color: #E7A827;
    color: #fff;
    border: 0px;
  }
}
.projects .tab-content {
  display: none;
  animation: moving 0.5s ease;
}
@keyframes moving {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
.projects .tab-content.active {
  display: block;
}

.project {
  margin-bottom: 160px;
}
@media screen and (max-width: 1236px) {
  .project {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 785px) {
  .project {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .project {
    margin-bottom: 10vw;
  }
}
.project__container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.project__row1 {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .project__row1 {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__row1 {
    flex-direction: column;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project__row1 {
    margin-bottom: 7.5vw;
  }
}
.project__title-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 1236px) {
  .project__title-block {
    border-radius: 7.5px;
    padding: 25px;
  }
}
@media screen and (max-width: 785px) {
  .project__title-block {
    border-radius: 0px;
    padding: 30px 0px;
    border-bottom-left-radius: 7.5px;
    border-bottom-right-radius: 7.5px;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .project__title-block {
    padding: 6.25vw 0px;
    border-bottom-left-radius: 1.563vw;
    border-bottom-right-radius: 1.563vw;
  }
}
.project__title-up {
  display: flex;
  flex-direction: column;
}
.project__subheading {
  display: flex;
  align-items: center;
  font-family: "Neue Machina";
  font-size: 14px;
  letter-spacing: 4px;
  color: #E7A827;
  margin-bottom: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .project__subheading {
    font-size: 8.75px;
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 785px) {
  .project__subheading {
    font-size: 15px;
    margin-bottom: 12px;
    justify-content: center;
    line-height: 11px;
  }
}
@media screen and (max-width: 480px) {
  .project__subheading {
    letter-spacing: 1.6px;
    font-size: 3.75vw;
    margin-bottom: 3.125vw;
    line-height: 2.188vw;
  }
}
.project__subheading-line {
  display: block;
  height: 1px;
  width: 60px;
  background-color: #E7A827;
  margin-right: 12px;
}
@media screen and (max-width: 1236px) {
  .project__subheading-line {
    height: 0.63px;
    width: 37.5px;
    margin-right: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__subheading-line {
    display: none;
  }
}
.project__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
}
@media screen and (max-width: 1236px) {
  .project__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 785px) {
  .project__title {
    font-size: 27px;
    line-height: 19px;
  }
}
@media screen and (max-width: 480px) {
  .project__title {
    font-size: 7.5vw;
    line-height: 4.063vw;
  }
}
.project__main-image {
  width: 842px;
  height: 400px;
  margin-right: 20px;
  position: relative;
}
.project__main-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media screen and (max-width: 1236px) {
  .project__main-image {
    width: 526.25px;
    height: 250px;
    margin-right: 12.5px;
  }
  .project__main-image img {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__main-image {
    width: 420px;
    height: 240px;
    margin-right: 0;
  }
  .project__main-image img {
    border-radius: 0px;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .project__main-image {
    width: 87.5vw;
    height: 50vw;
  }
  .project__main-image img {
    border-top-left-radius: 1.563vw;
    border-top-right-radius: 1.563vw;
  }
}
.project__view-btn {
  display: flex;
  justify-content: center;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  padding: 18px 52px;
  background-color: #E7A827;
  border-radius: 6px;
  display: inline-flex;
  line-height: 100%;
  text-wrap: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project__view-btn:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .project__view-btn {
    font-size: 11.25px;
    padding: 11.5px 32.38px;
    border-radius: 3.75px;
  }
}
@media screen and (max-width: 785px) {
  .project__view-btn {
    display: none;
  }
}
.project__view-btn-mobile {
  font-family: "Gilroy";
  display: none;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  padding: 24.5px 0px;
  background-color: #E7A827;
  border-radius: 7.5px;
  margin-bottom: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project__view-btn-mobile:hover {
  background-color: #edb84d;
}
.project__view-btn-mobile .icon-white-arrow-right {
  margin-right: 9px;
}
.project__view-btn-mobile .icon-white-arrow-right img {
  width: 15px;
}
@media screen and (max-width: 785px) {
  .project__view-btn-mobile {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .project__view-btn-mobile {
    font-size: 4.375vw;
    padding: 6.875vw 0px;
    border-radius: 1.563vw;
    margin-bottom: 7.5vw;
    text-transform: uppercase;
  }
  .project__view-btn-mobile .icon-white-arrow-right {
    margin-right: 1.875vw;
  }
  .project__view-btn-mobile .icon-white-arrow-right img {
    width: 5vw;
  }
}
.project__row2 {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .project__row2 {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__row2 {
    margin-bottom: 36px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .project__row2 {
    margin-bottom: 7.5vw;
  }
}
.project__descr-block {
  display: flex;
  align-items: center;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 0px 0px 0px 40px;
  margin-right: 20px;
  width: 560px;
}
@media screen and (max-width: 1236px) {
  .project__descr-block {
    border-radius: 7.5px;
    padding: 0px 0px 0px 25px;
    margin-right: 12.5px;
    width: 350px;
  }
}
@media screen and (max-width: 785px) {
  .project__descr-block {
    padding: 30px 0px 30px 24px;
    margin-right: 0;
    width: auto;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project__descr-block {
    padding: 7.5vw 0px 7.5vw 5vw;
    margin-bottom: 3.125vw;
  }
}
.project__description {
  font-size: 20px;
  max-width: 480px;
  line-height: 160%;
}
@media screen and (max-width: 1236px) {
  .project__description {
    font-size: 12.5px;
    max-width: 256px;
  }
}
@media screen and (max-width: 785px) {
  .project__description {
    max-width: 285px;
    font-size: 13.5px;
  }
}
@media screen and (max-width: 480px) {
  .project__description {
    max-width: 71.875vw;
    font-size: 3.438vw;
  }
}
.project__param-block {
  display: flex;
  flex-wrap: wrap;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 40px 0px 24px 40px;
  max-width: 552px;
}
@media screen and (max-width: 1236px) {
  .project__param-block {
    border-radius: 7.5px;
    padding: 25px 0px 15px 25px;
    max-width: 345px;
  }
}
@media screen and (max-width: 785px) {
  .project__param-block {
    padding: 30px 0px 30px 24px;
    max-width: 420px;
  }
}
@media screen and (max-width: 480px) {
  .project__param-block {
    padding: 6.25vw 0px 6.25vw 5vw;
    max-width: 87.5vw;
  }
}
.project__parameter {
  font-size: 18px;
  line-height: 80%;
  padding: 15px 50px;
  background-color: #fff;
  border-radius: 22.2px;
  margin: 0px 16px 16px 0px;
}
@media screen and (max-width: 1236px) {
  .project__parameter {
    font-size: 11.25px;
    padding: 10px 31px;
    border-radius: 14.5px;
    margin: 0px 10px 10px 0px;
  }
}
@media screen and (max-width: 785px) {
  .project__parameter {
    font-size: 13.5px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 17.4px;
    margin: 0px 9px 9px 0px;
  }
}
@media screen and (max-width: 480px) {
  .project__parameter {
    font-size: 3.438vw;
    padding: 2.5vw 5vw;
    border-radius: 3.906vw;
    margin: 0px 1.875vw 2.5vw 0px;
  }
}
.project__master-plan {
  margin-bottom: 20px;
}
.project__master-plan__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 50px;
  background-color: #F6F8F7;
  border-radius: 12px;
  max-width: 1112px;
}
@media screen and (max-width: 1236px) {
  .project__master-plan__wrapper {
    padding: 37px 31px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__master-plan__wrapper {
    padding: 24px 18px 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project__master-plan__wrapper {
    padding: 5vw 3.75vw 6.25vw;
    margin-bottom: 3.125vw;
    border-radius: 5px;
  }
}
@media screen and (max-width: 1236px) {
  .project__master-plan {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__master-plan {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project__master-plan {
    margin-bottom: 7.5vw;
  }
}
.project__master-title {
  align-self: flex-start;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 1236px) {
  .project__master-title {
    font-size: 25px;
    margin-bottom: 25.25px;
  }
}
@media screen and (max-width: 785px) {
  .project__master-title {
    align-self: auto;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project__master-title {
    font-size: 5.625vw;
    margin-bottom: 5vw;
  }
}
.project__master-image {
  width: 1112px;
  margin-bottom: 40px;
}
.project__master-image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project__master-image {
    width: 695px;
    margin-bottom: 25.25px;
  }
}
@media screen and (max-width: 785px) {
  .project__master-image {
    width: 384px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .project__master-image {
    width: 80vw;
  }
}
.project__master-btn {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  background-color: #E7A827;
  border-radius: 6px;
  width: 404px;
  height: 66px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project__master-btn:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .project__master-btn {
    font-size: 12.5px;
    border-radius: 3.75px;
    width: 253px;
    height: 41.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__master-btn {
    display: none;
  }
}
.project__master-btn-mobile {
  display: none;
  margin-bottom: 0;
}
@media screen and (max-width: 785px) {
  .project__master-btn-mobile {
    display: flex;
    padding: 24.5px 0px;
    width: 100%;
    height: auto;
    border-radius: 7.5px;
  }
  .project__master-btn-mobile img {
    width: 15px;
    margin-right: 9px;
  }
  .project__master-btn-mobile span {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project__master-btn-mobile {
    border-radius: 1.563vw;
    padding: 6.875vw 0px;
  }
  .project__master-btn-mobile img {
    width: 5vw;
    margin-right: 2.5vw;
  }
  .project__master-btn-mobile span {
    font-weight: 700;
    font-size: 4.375vw;
    text-transform: uppercase;
  }
}
.project__video-block {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  background-color: #FFD174;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .project__video-block {
    padding: 37.5px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__video-block {
    flex-direction: column;
    padding: 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .project__video-block {
    padding: 7.5vw 5vw;
  }
}
.project__video-content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 785px) {
  .project__video-content {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .project__video-content {
    margin-bottom: 6.25vw;
  }
}
.project__video-title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 38px;
  line-height: 130%;
  margin-bottom: 36px;
}
.project__video-title span {
  text-transform: capitalize;
  text-wrap: nowrap;
}
@media screen and (max-width: 1236px) {
  .project__video-title {
    font-size: 23.75px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 785px) {
  .project__video-title {
    font-size: 18px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .project__video-title {
    font-size: 5.625vw;
  }
}
.project__video-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.57px;
  height: 14.35px;
  padding: 22.17px 19.57px 23.48px 20.87px;
  background-color: #fff;
  border-radius: 50%;
}
.project__video-arrow img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project__video-arrow {
    width: 12.23px;
    height: 9px;
    padding: 13.86px 12.23px 14.67px 13.04px;
  }
}
@media screen and (max-width: 785px) {
  .project__video-arrow {
    width: 8.8px;
    height: 6.5px;
    padding: 10px 9px;
  }
}
@media screen and (max-width: 480px) {
  .project__video-arrow {
    width: 3.125vw;
    height: 2.188vw;
    padding: 3.75vw 3.125vw;
  }
}
.project__video-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 675px;
  height: 272px;
  background-color: #FFE0A0;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .project__video-div {
    width: 422px;
    height: 170px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project__video-div {
    width: 372px;
    height: 210px;
  }
}
@media screen and (max-width: 480px) {
  .project__video-div {
    width: 77.5vw;
    height: 43.75vw;
    border-radius: 1.25vw;
  }
}
.project__video-icon-play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.43px;
  height: 33.43px;
  padding: 19.5px;
  background-color: #fff;
  border-radius: 50%;
}
.project__video-icon-play img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project__video-icon-play {
    width: 21px;
    height: 21px;
    padding: 12.19px;
  }
}
@media screen and (max-width: 785px) {
  .project__video-icon-play {
    width: 16.62px;
    height: 16.62px;
    padding: 9.69px;
  }
}
@media screen and (max-width: 480px) {
  .project__video-icon-play {
    width: 3.438vw;
    height: 3.438vw;
    padding: 2.031vw;
  }
}

.about-start {
  margin-bottom: 130px;
}
@media screen and (max-width: 1236px) {
  .about-start {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 785px) {
  .about-start {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .about-start {
    margin-bottom: 7.5vw;
  }
}
.about-start__container {
  display: flex;
  flex-direction: column;
  padding-top: 66px;
}
@media screen and (max-width: 1236px) {
  .about-start__container {
    padding-top: 41.25px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__container {
    padding-top: 27px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__container {
    padding-top: 5.625vw;
  }
}
.about-start__title-block {
  display: flex;
  font-family: "Neue Machina";
  font-size: 96px;
  text-transform: uppercase;
  line-height: 80%;
  margin-bottom: 67px;
}
@media screen and (max-width: 1236px) {
  .about-start__title-block {
    font-size: 60px;
    margin-bottom: 42.38px;
  }
}
.about-start__subheading {
  font-family: "Neue Machina";
  font-size: 32px;
  color: #E7A827;
  line-height: 23px;
  margin: 0px 0px 40px 113px;
}
@media screen and (max-width: 1236px) {
  .about-start__subheading {
    font-size: 20px;
    margin: 0px 0px 25px 71px;
    line-height: 14px;
  }
}
.about-start__text-block {
  display: flex;
  margin-bottom: 12px;
}
.about-start__row1 {
  margin-bottom: 78px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1236px) {
  .about-start__row1 {
    margin: 48.75px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__row1 {
    display: none;
  }
}
.about-start__row1__text1 {
  margin: 13px 0px 80px;
  font-size: 20px;
  max-width: 337px;
  line-height: 150%;
}
@media screen and (max-width: 1236px) {
  .about-start__row1__text1 {
    margin: 8px 0px 49.5px;
    font-size: 12.5px;
    max-width: 211px;
  }
}
.about-start__row1__btn-block {
  display: flex;
}
.about-start__row1__btn-block img {
  height: 300px;
  margin: 0px 64px 0px 22px;
}
@media screen and (max-width: 1236px) {
  .about-start__row1__btn-block img {
    height: 187.5px;
    margin: 0px 40px 0px 13.75px;
  }
}
.about-start__row1__btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 12px;
  padding: 27px 42px;
  border-radius: 8px;
  background-color: #E7A827;
  color: #fff;
  height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-start__row1__btn:hover {
  background-color: #edb84d;
}
.about-start__row1__btn img {
  height: 6.5px;
  margin: 0px 8px 0px 0px;
}
@media screen and (max-width: 1236px) {
  .about-start__row1__btn {
    font-size: 10px;
    line-height: 7px;
    padding: 17px 26px;
  }
  .about-start__row1__btn img {
    height: 4.5px;
    margin-right: 5px;
  }
}
.about-start__row1__image {
  position: absolute;
  right: -2px;
}
.about-start__row1__image img {
  width: 785px;
  height: 400px;
}
@media screen and (max-width: 1236px) {
  .about-start__row1__image img {
    width: 490.62px;
    height: 250px;
  }
}
.about-start__row1__text2 {
  margin-left: 128px;
  font-size: 18px;
  max-width: 260px;
  line-height: 150%;
}
@media screen and (max-width: 1236px) {
  .about-start__row1__text2 {
    margin-left: 93.75px;
    font-size: 11.25px;
    max-width: 162px;
  }
}
.about-start__row1-mobile {
  display: none;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 785px) {
  .about-start__row1-mobile {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .about-start__row1-mobile {
    margin-bottom: 10vw;
  }
}
.about-start__row1-mobile__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.about-start__row1-mobile__image-block {
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  width: 420px;
  height: 523.5px;
  margin-bottom: 30px;
}
.about-start__row1-mobile__image-block img {
  width: 100%;
  height: 100%;
}
.about-start__row1-mobile__image-block span {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 39px;
  line-height: 110%;
  color: #fff;
  margin-top: 61.5px;
  max-width: 246px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .about-start__row1-mobile__image-block {
    width: 87.5vw;
    height: 109.063vw;
    margin-bottom: 6.25vw;
  }
  .about-start__row1-mobile__image-block span {
    font-size: 9.375vw;
    margin-top: 12.813vw;
    max-width: 62.5vw;
  }
}
.about-start__row1-mobile__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 30.5px;
}
.about-start__row1-mobile__text span {
  max-width: 256px;
}
@media screen and (max-width: 480px) {
  .about-start__row1-mobile__text {
    font-size: 3.75vw;
    margin-bottom: 6.25vw;
  }
  .about-start__row1-mobile__text span {
    max-width: 68.75vw;
  }
}
.about-start__row1-mobile__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24.5px 0px;
  background-color: #E7A827;
  border-radius: 7.5px;
}
.about-start__row1-mobile__btn img {
  width: 15px;
  margin-right: 9px;
}
.about-start__row1-mobile__btn span {
  font-family: "Neue Machina";
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .about-start__row1-mobile__btn {
    padding: 6.875vw 0px;
    border-radius: 1.563vw;
  }
  .about-start__row1-mobile__btn img {
    width: 3.125vw;
    margin-right: 1.875vw;
  }
  .about-start__row1-mobile__btn span {
    font-size: 4.375vw;
  }
}
.about-start__row2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .about-start__row2 {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__row2 {
    flex-direction: column;
    margin-bottom: 36px;
    justify-content: start;
  }
}
@media screen and (max-width: 480px) {
  .about-start__row2 {
    margin-bottom: 7.5vw;
  }
}
.about-start__column {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 50px;
  background-color: #F6F8F7;
  border-radius: 12px;
  width: 496px;
}
@media screen and (max-width: 1236px) {
  .about-start__column {
    padding: 28.5px 31px;
    border-radius: 7.5px;
    width: 310.5px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__column {
    padding: 30px 24px;
    width: 372px;
    margin-bottom: 15px;
  }
  .about-start__column:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__column {
    padding: 6.25vw 5vw;
    width: 77.5vw;
    margin-bottom: 3.125vw;
  }
  .about-start__column:last-child {
    margin-bottom: 0vw;
  }
}
.about-start__column__content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 785px) {
  .about-start__column__content {
    flex-direction: row;
    align-items: center;
  }
}
.about-start__column__content__number {
  font-family: "Neue Machina";
  color: #E7A827;
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 24px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .about-start__column__content__number {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__column__content__number {
    font-size: 48px;
    margin: 0px 15px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__column__content__number {
    font-size: 10vw;
    margin-right: 3.125vw;
  }
}
.about-start__column__content__text {
  font-size: 18px;
  line-height: 150%;
  max-width: 250px;
}
@media screen and (max-width: 1236px) {
  .about-start__column__content__text {
    font-size: 11.25px;
    max-width: 150px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__column__content__text {
    font-size: 12px;
    line-height: 130%;
    max-width: 180px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__column__content__text {
    font-weight: 600;
    font-size: 3.75vw;
    max-width: 42.5vw;
  }
}
.about-start__column__number {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 100px;
  line-height: 65%;
  color: transparent;
  outline: #E7A827 2px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E7A827;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: outside;
}
@media screen and (max-width: 1236px) {
  .about-start__column__number {
    font-size: 62.5px;
    -webkit-text-stroke-width: 1.25px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__column__number {
    position: absolute;
    right: -13px;
    top: -3px;
    font-size: 72px;
    color: #121212;
    opacity: 0.1;
    -webkit-text-fill-color: #121212;
    -webkit-text-stroke-width: 0px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__column__number {
    right: -2.188vw;
    top: -0.625vw;
    font-size: 15vw;
  }
}
.about-start__row3 {
  display: flex;
  flex-direction: column;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 75px 0px 75px 60px;
}
@media screen and (max-width: 1236px) {
  .about-start__row3 {
    border-radius: 7.5px;
    padding: 47.5px 0px 47.5px 37.5px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__row3 {
    padding: 36px 0px 36px 24px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__row3 {
    border-radius: 5px;
    padding: 7.5vw 0px 7.5vw 5vw;
  }
}
.about-start__row3__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 44px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .about-start__row3__title {
    font-size: 25px;
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__row3__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__row3__title {
    font-size: 6vw;
    margin-bottom: 7.5vw;
  }
}
.about-start__row3__text {
  font-size: 20px;
  line-height: 150%;
  max-width: 1006px;
}
@media screen and (max-width: 1236px) {
  .about-start__row3__text {
    font-size: 12.5px;
    max-width: 629px;
  }
}
@media screen and (max-width: 785px) {
  .about-start__row3__text {
    font-size: 13.5px;
    max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .about-start__row3__text {
    font-size: 3.438vw;
    max-width: 68.75vw;
  }
}

.project-slider {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-slider {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider {
    margin-bottom: 7.5vw;
  }
}
.project-slider__slider {
  text-align: center;
  position: relative;
}
.project-slider__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .project-slider__title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider__title {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider__title {
    font-size: 3.75vw;
    margin-bottom: 5vw;
  }
}
.project-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-slider .swiper-slide img {
  width: 1000px;
  height: 600px;
  border-radius: 20px;
}
@media screen and (max-width: 1236px) {
  .project-slider .swiper-slide img {
    width: 525px;
    height: 312.5px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider .swiper-slide img {
    width: 330px;
    height: 180px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider .swiper-slide img {
    width: 68.75vw;
    height: 37.5vw;
    border-radius: 1.25vw;
  }
}
.project-slider .project-slider-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background-color: #DFA633;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-slider .project-slider-arrow:hover {
  background-color: #e5b555;
}
.project-slider .project-slider-arrow img {
  width: 7px;
  height: 14px;
}
@media screen and (max-width: 1236px) {
  .project-slider .project-slider-arrow {
    width: 28.75px;
    height: 28.75px;
  }
  .project-slider .project-slider-arrow img {
    width: 4.38px;
    height: 8.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider .project-slider-arrow {
    width: 30px;
    height: 30px;
  }
  .project-slider .project-slider-arrow img {
    width: 4.57px;
    height: 9.13px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider .project-slider-arrow {
    width: 6.25vw;
    height: 6.25vw;
  }
  .project-slider .project-slider-arrow img {
    width: 0.95vw;
    height: 1.903vw;
  }
}
.project-slider .swiper-button-prev-project {
  top: 270px;
  left: 0px;
}
@media screen and (max-width: 1236px) {
  .project-slider .swiper-button-prev-project {
    top: 141.87px;
    left: 67.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider .swiper-button-prev-project {
    top: 75px;
    left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider .swiper-button-prev-project {
    top: 15.625vw;
  }
}
.project-slider .swiper-button-next-project {
  top: 270px;
  right: 0px;
}
@media screen and (max-width: 1236px) {
  .project-slider .swiper-button-next-project {
    top: 141.87px;
    right: 67.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-slider .swiper-button-next-project {
    top: 75px;
    right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-slider .swiper-button-next-project {
    top: 15.625vw;
  }
}

.awards {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .awards {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 785px) {
  .awards {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .awards {
    margin-bottom: 7.5vw;
  }
}
.awards__container {
  display: flex;
  flex-direction: column;
}
.awards__row1 {
  display: flex;
  justify-content: center;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 45px 0px;
  margin-bottom: 21px;
}
@media screen and (max-width: 1236px) {
  .awards__row1 {
    border-radius: 7.5px;
    padding: 28px 0px;
    margin-bottom: 13px;
  }
}
@media screen and (max-width: 785px) {
  .awards__row1 {
    padding: 30px 0px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .awards__row1 {
    border-radius: 1.563vw;
    padding: 6.25vw 0px;
    margin-bottom: 7.5vw;
  }
}
.awards__image {
  width: 95.48px;
  height: 221.7px;
  padding: 0px 36px;
  border-left: 1px solid #D9D9D9;
}
.awards__image img {
  width: 100%;
  height: 100%;
}
.awards__image:last-child {
  border-right: 1px solid #D9D9D9;
}
@media screen and (max-width: 1236px) {
  .awards__image {
    width: 62.79px;
    height: 139.85px;
    padding: 0px 22.61px;
    border-left: 0.63px solid #D9D9D9;
  }
  .awards__image:last-child {
    border-right: 0.63px solid #D9D9D9;
  }
}
@media screen and (max-width: 785px) {
  .awards__image {
    width: 42px;
    height: 111px;
    margin-right: 18px;
    padding: 0px;
    border: 0px;
  }
  .awards__image:last-child {
    margin-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .awards__image {
    width: 8.75vw;
    height: 23.125vw;
    margin-right: 3.75vw;
  }
}
.awards__row2 {
  display: flex;
}
@media screen and (max-width: 785px) {
  .awards__row2 {
    flex-direction: column;
  }
}
.awards__column {
  position: relative;
  background-color: #F6F8F7;
  border-radius: 12px;
  width: 350px;
  padding: 50px 0px 50px 40px;
}
@media screen and (max-width: 1236px) {
  .awards__column {
    border-radius: 7.5px;
    width: 243.75px;
    padding: 31.5px 0px 31.5px 25px;
  }
}
@media screen and (max-width: 785px) {
  .awards__column {
    width: 396px;
    padding: 30px 0px 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .awards__column {
    border-radius: 1.563vw;
    width: 75vw;
    padding: 7.5vw 7.5vw 7.5vw 5vw;
  }
}
.awards__column__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .awards__column__title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .awards__column__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .awards__column__title {
    font-size: 4.688vw;
    margin-bottom: 3.594vw;
  }
}
.awards__column__text {
  font-size: 15px;
  max-width: 202px;
}
@media screen and (max-width: 1236px) {
  .awards__column__text {
    font-size: 9.38px;
    max-width: 130px;
  }
}
@media screen and (max-width: 785px) {
  .awards__column__text {
    font-size: 13.5px;
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .awards__column__text {
    font-size: 3.438vw;
    max-width: 62.5vw;
  }
}
.awards__column__icon {
  position: absolute;
  right: 40px;
  bottom: 30px;
}
.awards__column__icon img {
  width: 100%;
}
@media screen and (max-width: 1236px) {
  .awards__column__icon {
    width: 30px;
    right: 25px;
    bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .awards__column__icon {
    width: 36px;
    right: 30px;
    top: 30px;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .awards__column__icon {
    width: 7.5vw;
    right: 6.25vw;
    top: 6.25vw;
  }
}
.awards__column + .awards__column {
  margin-left: 21px;
}
@media screen and (max-width: 1236px) {
  .awards__column + .awards__column {
    margin-left: 13.13px;
  }
}
@media screen and (max-width: 785px) {
  .awards__column + .awards__column {
    margin: 15px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .awards__column + .awards__column {
    margin-top: 3.125vw;
  }
}

.advantages {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .advantages {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 785px) {
  .advantages {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .advantages {
    margin-bottom: 7.5vw;
  }
}
.advantages__row1 {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .advantages__row1 {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1 {
    flex-direction: column;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1 {
    margin-bottom: 7.5vw;
  }
}
.advantages__row1__column {
  padding: 44px 0px 44px 50px;
  background-color: #F6F8F7;
  border-radius: 12px;
  width: 426px;
}
.advantages__row1__column span {
  display: flex;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  max-width: 241px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__column span {
    font-size: 25px;
    max-width: 150px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__column span {
    font-size: 24px;
    max-width: 250px;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__column span {
    font-size: 5.625vw;
    max-width: 56vw;
  }
}
@media screen and (max-width: 1236px) {
  .advantages__row1__column {
    padding: 27.5px 0px 27.5px 31.25px;
    border-radius: 7.5px;
    width: 221.25px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__column {
    padding: 30px 0px 30px 24px;
    width: 396px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__column {
    border-radius: 1.563vw;
    padding: 7.5vw 0px 7.5vw 5vw;
    width: 82.5vw;
  }
}
.advantages__row1__column + .advantages__row1__column {
  margin-left: 20px;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__column + .advantages__row1__column {
    margin-left: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__column + .advantages__row1__column {
    margin: 15px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__column + .advantages__row1__column {
    margin-top: 3.125vw;
  }
}
.advantages__row1__head-block {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__head-block {
    margin-bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__head-block {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__head-block {
    margin-bottom: 5vw;
  }
}
.advantages__row1__head-number {
  font-family: "Neue Machina";
  font-size: 46px;
  color: #E7A827;
  margin-right: 16px;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__head-number {
    font-size: 28.75px;
    margin-right: 9.5px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__head-number {
    font-size: 30px;
    margin-right: 18px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__head-number {
    font-size: 10vw;
    margin-right: 3.75vw;
  }
}
.advantages__row1__head-line {
  height: 1px;
  width: 161px;
  background-color: #E7A827;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__head-line {
    height: 0.63px;
    width: 101px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__head-line {
    height: 0.9px;
    width: 270px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__head-line {
    height: 0.187vw;
    width: 56.25vw;
  }
}
.advantages__row1__text {
  font-size: 18px;
  max-width: 272px;
  line-height: 160%;
}
@media screen and (max-width: 1236px) {
  .advantages__row1__text {
    font-size: 11.25px;
    max-width: 170px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row1__text {
    font-size: 13.5px;
    max-width: 331px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row1__text {
    font-size: 3.438vw;
    max-width: 63.438vw;
  }
}
.advantages__row2 {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 785px) {
  .advantages__row2 {
    flex-direction: column;
  }
}
.advantages__row2__text {
  font-size: 18px;
  max-width: 466px;
  margin-right: 134px;
  line-height: 160%;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__text {
    font-size: 11.25px;
    max-width: 292px;
    margin-right: 83.75px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__text {
    font-size: 13.5px;
    max-width: 272px;
    margin: 0px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__text {
    font-size: 3.438vw;
    max-width: 70.938vw;
  }
}
.advantages__row2__text2 {
  font-size: 18px;
  max-width: 331px;
  line-height: 160%;
}
.advantages__row2__text2 span {
  font-weight: 600;
}
@media screen and (max-width: 785px) {
  .advantages__row2__text2 span {
    font-weight: 500;
  }
}
@media screen and (max-width: 1236px) {
  .advantages__row2__text2 {
    font-size: 11.25px;
    max-width: 210px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__text2 {
    font-size: 13.5px;
    max-width: 255px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__text2 {
    font-size: 3.438vw;
    max-width: 70.938vw;
  }
}
.advantages__row2__heading {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 32px;
}
.advantages__row2__heading span {
  color: #E7A827;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__heading {
    font-size: 25px;
    margin-bottom: 25.37px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__heading {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__heading {
    font-size: 6.875vw;
    margin-bottom: 7.5vw;
  }
}
.advantages__row2__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F6F8F7;
  border-radius: 12px;
  padding: 50px 99px 50px 50px;
}
.advantages__row2__column:first-child {
  padding-right: 0px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__column {
    border-radius: 7.5px;
    padding: 31px 61.5px 31px 31px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__column {
    padding: 30px 0px 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__column {
    border-radius: 1.563vw;
    padding: 7.5vw 0px 7.5vw 5vw;
  }
}
.advantages__row2__content {
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__content {
    margin-top: 25px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__content {
    margin-top: 16px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__content {
    margin-top: 5vw;
  }
}
.advantages__row2__content__step {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__content__step {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__content__step {
    margin-bottom: 0;
  }
}
.advantages__row2__content__step span {
  font-family: "Neue Machina";
  font-size: 46px;
}
.advantages__row2__content__step span:last-child {
  color: #E7A827;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__content__step span {
    font-size: 28.75px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__content__step span {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__content__step span {
    font-size: 10vw;
  }
}
.advantages__row2__content__step img {
  opacity: 0.2;
  margin: 0px 32px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__content__step img {
    width: 35px;
    margin: 0px 20px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__content__step img {
    width: 37px;
    margin: 0px 21px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__content__step img {
    width: 9.375vw;
    margin: 0px 6.25vw 0px 3.125vw;
  }
}
.advantages__row2__content__text {
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__content__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__content__text {
    font-size: 4.063vw;
  }
}
.advantages__row2 .active-text {
  color: #E7A827;
}
.advantages__row2__column + .advantages__row2__column {
  margin-left: 20px;
}
@media screen and (max-width: 1236px) {
  .advantages__row2__column + .advantages__row2__column {
    margin-left: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .advantages__row2__column + .advantages__row2__column {
    margin: 15px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__row2__column + .advantages__row2__column {
    margin: 3.125vw 0px 0px;
  }
}

.priceup {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .priceup {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 785px) {
  .priceup {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .priceup {
    margin-bottom: 7.5vw;
  }
}
.priceup__container {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 785px) {
  .priceup__container {
    flex-direction: column;
  }
}
.priceup__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F6F8F7;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .priceup__column {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column {
    border-radius: 1.563vw;
  }
}
.priceup__column + .priceup__column {
  margin-left: 20px;
}
@media screen and (max-width: 1236px) {
  .priceup__column + .priceup__column {
    margin-left: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column + .priceup__column {
    margin: 15px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column + .priceup__column {
    margin: 3.125vw 0px 0px;
  }
}
.priceup__column1 {
  padding: 51px 67px;
}
@media screen and (max-width: 1236px) {
  .priceup__column1 {
    padding: 32px 42px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1 {
    align-items: stretch;
    padding: 36px 27px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1 {
    padding: 7.5vw 5.625vw;
  }
}
.priceup__column1__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 67px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .priceup__column1__title {
    font-size: 25px;
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1__title {
    letter-spacing: -0.16px;
    font-size: 5.625vw;
    margin-bottom: 7.5vw;
  }
}
.priceup__column1__image {
  width: 645px;
  height: 439px;
  margin-bottom: 24px;
}
.priceup__column1__image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .priceup__column1__image {
    width: 403px;
    height: 274px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1__image {
    width: 366px;
    height: 255px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1__image {
    width: 76.25vw;
    height: 53.125vw;
  }
}
.priceup__column1__text-block {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 46px 57px;
}
@media screen and (max-width: 1236px) {
  .priceup__column1__text-block {
    border-radius: 6.25px;
    padding: 29px 35.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1__text-block {
    border-radius: 12px;
    justify-content: center;
    padding: 30px 0px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1__text-block {
    border-radius: 1.25vw;
    padding: 6.25vw 0px;
  }
}
.priceup__column1__percent {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 64px;
  color: #E7A827;
  margin-right: 20px;
}
@media screen and (max-width: 1236px) {
  .priceup__column1__percent {
    font-size: 40px;
    margin-right: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1__percent {
    font-size: 36px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1__percent {
    font-size: 10vw;
    margin-right: 2.5vw;
  }
}
.priceup__column1__text {
  font-weight: 600;
  font-size: 24px;
  max-width: 273px;
  line-height: 150%;
}
@media screen and (max-width: 1236px) {
  .priceup__column1__text {
    font-size: 15px;
    max-width: 175px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column1__text {
    font-size: 12px;
    width: 122px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column1__text {
    font-size: 3.75vw;
    width: 37.813vw;
  }
}
.priceup__column2 {
  padding: 0px 79px;
}
@media screen and (max-width: 1236px) {
  .priceup__column2 {
    padding: 0px 49px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2 {
    padding: 36px 0px 36px 24px;
    align-items: start;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column2 {
    padding: 7.5vw 0px 7.5vw 6.25vw;
  }
}
.priceup__column2__month-block {
  text-align: center;
  width: 254px;
}
@media screen and (max-width: 1236px) {
  .priceup__column2__month-block {
    width: 160px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2__month-block {
    text-align: left;
    width: auto;
  }
}
.priceup__column2__month-number {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  color: #E7A827;
}
@media screen and (max-width: 1236px) {
  .priceup__column2__month-number {
    font-size: 18.75px;
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2__month-number {
    font-size: 21px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column2__month-number {
    font-size: 6.875vw;
    margin-bottom: 5.625vw;
  }
}
.priceup__column2__month-text {
  font-weight: 600;
  font-size: 18px;
  max-width: 254px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .priceup__column2__month-text {
    font-size: 11.25px;
    max-width: 160px;
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2__month-text {
    font-size: 13.5px;
    max-width: 300px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column2__month-text {
    font-size: 4.375vw;
    max-width: 62.5vw;
    margin-bottom: 5.625vw;
  }
}
.priceup__column2__month-raise {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  background-color: #E7A827;
  padding: 14px 20px;
  border-radius: 4px;
}
@media screen and (max-width: 1236px) {
  .priceup__column2__month-raise {
    font-size: 10px;
    padding: 8.75px 12.5px;
    border-radius: 2.5px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2__month-raise {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 180px;
    height: 35px;
    border-radius: 3.5px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column2__month-raise {
    font-size: 3.75vw;
    width: 47.813vw;
    height: 10vw;
    border-radius: 1.25vw;
  }
}
.priceup__column2__divider {
  height: 100px;
  width: 1px;
  background-color: #E7A827;
  margin: 30px 0px;
}
@media screen and (max-width: 1236px) {
  .priceup__column2__divider {
    height: 62.5px;
    width: 0.63px;
    margin: 18.62px 0px;
  }
}
@media screen and (max-width: 785px) {
  .priceup__column2__divider {
    height: 0.6px;
    width: 300px;
    background-color: #121212;
    opacity: 0.3;
    margin: 30px 0px;
  }
}
@media screen and (max-width: 480px) {
  .priceup__column2__divider {
    height: 0.125vw;
    width: 62.5vw;
    margin: 7.5vw 0px;
  }
}

.location {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .location {
    margin-bottom: 81px;
  }
}
@media screen and (max-width: 785px) {
  .location {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .location {
    margin-bottom: 15vw;
  }
}
.location__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 53px 0px 41px;
  background-color: #F6F8F7;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .location__container {
    padding: 33px 0px 26px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .location__container {
    padding: 30px 0px;
  }
}
@media screen and (max-width: 480px) {
  .location__container {
    align-items: start;
    max-width: 80vw;
    padding: 6.25vw 3.75vw;
  }
}
.location__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 51px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .location__title {
    font-size: 25px;
    margin-bottom: 31px;
  }
}
@media screen and (max-width: 785px) {
  .location__title {
    font-size: 21px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .location__title {
    font-size: 5.625vw;
    max-width: 58.125vw;
    margin-bottom: 7.5vw;
  }
}
.location__map {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  width: 1100px;
  height: 600px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1236px) {
  .location__map {
    border-radius: 7.5px;
    width: 687.5px;
    height: 375px;
    margin-bottom: 27.5px;
  }
}
@media screen and (max-width: 785px) {
  .location__map {
    width: 384px;
    height: 210px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .location__map {
    width: 80vw;
    height: 43.75vw;
    margin-bottom: 5vw;
  }
}
.location__map__place {
  display: flex;
  align-items: center;
  position: absolute;
}
.location__map__number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #E7A827;
  width: 46px;
  height: 46px;
  margin-right: 6px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1236px) {
  .location__map__number {
    font-size: 12.5px;
    width: 28.75px;
    height: 28.75px;
    margin-right: 3.75px;
  }
}
@media screen and (max-width: 785px) {
  .location__map__number {
    font-size: 7.5px;
    width: 15px;
    height: 15px;
    margin-right: 3px;
  }
}
@media screen and (max-width: 480px) {
  .location__map__number {
    font-size: 1.563vw;
    width: 3.125vw;
    height: 3.125vw;
    margin-right: 0.625vw;
  }
}
.location__map__text {
  font-weight: 700;
  font-size: 20px;
  padding: 16px 30px;
  line-height: 100%;
  color: #E7A827;
  background-color: #fff;
  border-radius: 23px;
}
@media screen and (max-width: 1236px) {
  .location__map__text {
    font-size: 12.5px;
    padding: 10px 18px;
    border-radius: 14.38px;
  }
}
@media screen and (max-width: 785px) {
  .location__map__text {
    font-size: 7.5px;
    padding: 4.5px 9px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 480px) {
  .location__map__text {
    font-size: 1.563vw;
    padding: 0.938vw 1.875vw;
    border-radius: 1.875vw;
  }
}
.location__map .map__place1 {
  top: 359px;
  left: 522px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place1 {
    top: 224px;
    left: 326px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place1 {
    top: 129px;
    left: 190px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place1 {
    top: 26.875vw;
    left: 39.688vw;
  }
}
.location__map .map__place2 {
  top: 139px;
  left: 518px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place2 {
    top: 87px;
    left: 324px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place2 {
    top: 46px;
    left: 177px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place2 {
    top: 9.688vw;
    left: 36.875vw;
  }
}
.location__map .map__place3 {
  top: 62px;
  left: 84px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place3 {
    top: 39px;
    left: 52px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place3 {
    top: 24px;
    left: 36px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place3 {
    top: 5vw;
    left: 7.5vw;
  }
}
.location__map .map__place4 {
  top: 16px;
  left: 739px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place4 {
    top: 10px;
    left: 462px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place4 {
    top: 12px;
    left: 264px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place4 {
    top: 2.5vw;
    left: 55vw;
  }
}
.location__map .map__place5 {
  top: 385px;
  left: 46px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place5 {
    top: 241px;
    left: 29px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place5 {
    top: 142px;
    left: 21px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place5 {
    top: 29.688vw;
    left: 4.375vw;
  }
}
.location__map .map__place6 {
  top: 265px;
  left: 325px;
}
@media screen and (max-width: 1236px) {
  .location__map .map__place6 {
    top: 166px;
    left: 203px;
  }
}
@media screen and (max-width: 785px) {
  .location__map .map__place6 {
    top: 90px;
    left: 144px;
  }
}
@media screen and (max-width: 480px) {
  .location__map .map__place6 {
    top: 18.75vw;
    left: 30vw;
  }
}
.location__text-block {
  display: flex;
  align-items: center;
}
.location__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 16px;
}
.location__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .location__icon {
    width: 16px;
    height: 16px;
    margin-right: 13px;
  }
}
@media screen and (max-width: 785px) {
  .location__icon {
    width: 12px;
    height: 12px;
    margin-right: 9px;
  }
}
@media screen and (max-width: 480px) {
  .location__icon {
    width: 3.75vw;
    height: 3.75vw;
    margin-right: 1.875vw;
  }
}
.location__text {
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1236px) {
  .location__text {
    font-size: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .location__text {
    font-weight: 600;
    font-size: 10.5px;
  }
}
@media screen and (max-width: 480px) {
  .location__text {
    font-size: 2.813vw;
    max-width: 48.625vw;
  }
}

.project-start {
  margin: 40px 0px 120px;
}
@media screen and (max-width: 1236px) {
  .project-start {
    margin: 25px 0px 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-start {
    margin: 27px 0px 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-start {
    margin: 5.625vw 0px 10vw;
  }
}
.project-start__container {
  display: flex;
  flex-direction: column;
}
.project-start__main-image {
  width: 1212px;
  height: 554px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.project-start__main-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
@media screen and (max-width: 1236px) {
  .project-start__main-image {
    width: 757.5px;
    height: 346.5px;
    margin-bottom: 12.5px;
  }
  .project-start__main-image img {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-start__main-image {
    width: 420px;
    height: 468px;
    margin-bottom: 15px;
  }
  .project-start__main-image img {
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .project-start__main-image {
    width: 87.5vw;
    height: 97.5vw;
    margin-bottom: 3.125vw;
  }
}
.project-start__content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 40px;
  background-color: #F6F8F7;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .project-start__content {
    padding: 26px 25px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-start__content {
    padding: 30px 24px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-start__content {
    padding: 6.25vw;
    margin-bottom: 3.125vw;
  }
}
.project-start__subheading {
  font-family: "Neue Machina";
  font-size: 32px;
  line-height: 100%;
  color: #E7A827;
  margin-bottom: 24px;
}
@media screen and (max-width: 1236px) {
  .project-start__subheading {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 785px) {
  .project-start__subheading {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-start__subheading {
    font-size: 4.375vw;
    margin-bottom: 3.75vw;
  }
}
.project-start__title {
  font-family: "Neue Machina";
  font-size: 64px;
  line-height: 120%;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .project-start__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 785px) {
  .project-start__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-start__title {
    font-size: 8.5vw;
  }
}
.project-start__request {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #E7A827;
}
.project-start__request__ellipse1 {
  position: absolute;
  right: -195%;
  width: 639px;
  height: 416px;
  border: 2px solid #DFA633;
  border-radius: 50%;
  opacity: 0.1;
}
.project-start__request__ellipse2 {
  position: absolute;
  right: -180%;
  width: 577px;
  height: 376px;
  border: 2px solid #DFA633;
  border-radius: 50%;
  opacity: 0.3;
}
.project-start__request__ellipse3 {
  position: absolute;
  right: -165%;
  top: 50%;
  transform: translateY(-50%);
  width: 516px;
  height: 338px;
  border: 2px solid #DFA633;
  border-radius: 50%;
  opacity: 0.4;
}
.project-start__request__ellipse4 {
  position: absolute;
  right: -150%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 457px;
  height: 296px;
  border: 2px solid #DFA633;
  border-radius: 50%;
}
.project-start__request__content {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: end;
  font-family: "Neue Machina";
  font-size: 22px;
  width: auto;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .project-start__request__content {
    font-size: 13.75px;
  }
}
.project-start__request__image-text {
  margin-right: 12px;
}
@media screen and (max-width: 1236px) {
  .project-start__request__image-text {
    margin-right: 7.25px;
  }
}
.project-start__request img {
  width: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 1236px) {
  .project-start__request img {
    width: 15px;
    margin-right: 5px;
  }
  .project-start__request__ellipse1 {
    width: 399px;
    height: 260px;
    border: 1.25px solid #DFA633;
  }
  .project-start__request__ellipse2 {
    width: 360px;
    height: 235px;
    border: 1.25px solid #DFA633;
  }
  .project-start__request__ellipse3 {
    width: 323px;
    height: 211px;
    border: 1.25px solid #DFA633;
  }
  .project-start__request__ellipse4 {
    width: 286px;
    height: 185px;
    border: 1.25px solid #DFA633;
  }
}
@media screen and (max-width: 785px) {
  .project-start__request {
    display: none;
  }
}
.project-start__request-mobile {
  display: none;
  background-color: #E7A827;
  padding: 24px 117px;
  border-radius: 7.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-start__request-mobile:hover {
  background-color: #edb84d;
}
.project-start__request-mobile img {
  width: 15px;
  margin-right: 9px;
}
.project-start__request-mobile span {
  font-family: "Neue Machina";
  font-size: 15px;
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 785px) {
  .project-start__request-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .project-start__request-mobile {
    width: 87.5vw;
    height: 16.875vw;
    padding: 0;
    border-radius: 1.563vw;
  }
  .project-start__request-mobile img {
    width: 5vw;
    height: 2.5vw;
  }
  .project-start__request-mobile span {
    font-size: 4.375vw;
  }
}

.project-descr {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-descr {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr {
    margin-bottom: 7.5vw;
  }
}
.project-descr__container {
  background-color: #F6F8F7;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .project-descr__container {
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr__container {
    display: flex;
    flex-direction: column-reverse;
    max-width: 372px;
    padding: 36px 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr__container {
    max-width: 77.5vw;
    padding: 7.5vw 5vw;
  }
}
.project-descr__slider {
  position: relative;
}
.project-descr__slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}
.project-descr__slider img {
  width: 1092px;
  height: 500px;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  object-fit: cover;
}
@media screen and (max-width: 1236px) {
  .project-descr__slider .swiper-slide {
    padding-top: 37.5px;
  }
  .project-descr__slider img {
    width: 682.5px;
    height: 312.5px;
    border-radius: 7.5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr__slider {
    margin-bottom: 45px;
  }
  .project-descr__slider .swiper-slide {
    padding: 0;
  }
  .project-descr__slider img {
    width: 372px;
    height: 240px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr__slider {
    margin-bottom: 9.375vw;
  }
  .project-descr__slider img {
    width: 77.5vw;
    height: 50vw;
    border-radius: 1.25vw;
  }
}
.project-descr__slider__arrows {
  display: none;
}
@media screen and (max-width: 785px) {
  .project-descr__slider__arrows {
    display: flex;
    justify-content: center;
    gap: 0px 15.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr__slider__arrows {
    gap: 0px 3.125vw;
  }
}
.project-descr .project-slider-arrow {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 20px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-descr .project-slider-arrow img {
  width: 20px;
  height: 14.5px;
}
.project-descr .project-slider-arrow:hover {
  background-color: #ebebeb;
}
@media screen and (max-width: 1236px) {
  .project-descr .project-slider-arrow {
    padding: 14px 12.5px;
  }
  .project-descr .project-slider-arrow img {
    width: 9px;
    height: 6.65px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr .project-slider-arrow {
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  .project-descr .project-slider-arrow img {
    width: 9px;
    height: 6.65px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr .project-slider-arrow {
    width: 6.25vw;
    height: 6.25vw;
  }
  .project-descr .project-slider-arrow img {
    width: 1.875vw;
    height: 1.384vw;
  }
}
.project-descr .swiper-button-prev-custom {
  top: 250px;
  left: 30px;
}
@media screen and (max-width: 1236px) {
  .project-descr .swiper-button-prev-custom {
    top: 156.25px;
    left: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr .swiper-button-prev-custom {
    top: 255px;
    left: 148.25px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr .swiper-button-prev-custom {
    top: 53.125vw;
    left: 30.938vw;
  }
}
.project-descr .swiper-button-next-custom {
  top: 250px;
  right: 30px;
}
@media screen and (max-width: 1236px) {
  .project-descr .swiper-button-next-custom {
    top: 156.25px;
    right: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr .swiper-button-next-custom {
    top: 255px;
    left: 193.75px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr .swiper-button-next-custom {
    top: 53.125vw;
    left: 40.313vw;
  }
}
.project-descr__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
}
@media screen and (max-width: 1236px) {
  .project-descr__content {
    padding: 37.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr__content {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: start;
    padding: 0;
  }
}
.project-descr__text {
  font-size: 20px;
  line-height: 160%;
  max-width: 490px;
}
@media screen and (max-width: 1236px) {
  .project-descr__text {
    font-size: 12.5px;
    max-width: 307px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr__text {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr__text {
    font-size: 3.438vw;
    max-width: 63.438vw;
    margin-bottom: 4.125vw;
  }
}
.project-descr__about {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .project-descr__about {
    font-size: 25px;
  }
}
@media screen and (max-width: 785px) {
  .project-descr__about {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .project-descr__about {
    font-size: 6.875vw;
    margin-bottom: 4.125vw;
  }
}

.project-master-plan__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F6F8F7;
  padding: 60px 50px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__wrapper {
    padding: 37.5px 31.5px;
    margin-bottom: 75px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__wrapper {
    padding: 24px 18px 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__wrapper {
    padding: 5vw 3.75vw 6.25vw;
    margin-bottom: 3.125vw;
  }
}
.project-master-plan__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__content {
    margin-bottom: 31.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__content {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__content {
    margin-bottom: 3.125vw;
  }
}
.project-master-plan__title {
  align-self: flex-start;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__title {
    font-size: 25px;
    margin-bottom: 25.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__title {
    align-self: auto;
    font-size: 18px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__title {
    font-size: 5.625vw;
    margin-bottom: 5vw;
  }
}
.project-master-plan__line {
  height: 1px;
  width: 654px;
  background-color: #B2B3B2;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__line {
    height: 0.63px;
    width: 408.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__line {
    height: 0.35px;
    width: 178.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__line {
    height: 0.072vw;
    width: 37.188vw;
  }
}
.project-master-plan__zoom {
  width: 27px;
  height: 27px;
  padding: 20.32px 20.32px 22.58px 22.58px;
  background-color: #E7A827;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-master-plan__zoom img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__zoom {
    width: 17px;
    height: 17px;
    padding: 12.7px 12.7px 14.1px 14.1px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__zoom {
    width: 9px;
    height: 9px;
    padding: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__zoom {
    width: 1.875vw;
    height: 1.875vw;
    padding: 1.563vw;
  }
}
.project-master-plan__image {
  width: 1112px;
}
.project-master-plan__image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__image {
    width: 695px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__image {
    width: 384px;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__image {
    width: 80vw;
  }
}
.project-master-plan__btn {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7A827;
  padding: 26px 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-master-plan__btn:hover {
  background-color: #edb84d;
}
.project-master-plan__btn span {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 1236px) {
  .project-master-plan__btn {
    padding: 16.2px 25px;
    border-radius: 3.75px;
  }
  .project-master-plan__btn span {
    font-size: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-master-plan__btn {
    display: none;
  }
}
.project-master-plan__btn-mobile {
  display: none;
}
@media screen and (max-width: 785px) {
  .project-master-plan__btn-mobile {
    display: flex;
    margin-bottom: 36px;
  }
  .project-master-plan__btn-mobile img {
    width: 15px;
    margin-right: 9px;
  }
  .project-master-plan__btn-mobile span {
    font-size: 15px;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 480px) {
  .project-master-plan__btn-mobile {
    margin-bottom: 7.5vw;
  }
  .project-master-plan__btn-mobile img {
    width: 5vw;
    margin-right: 2.5vw;
  }
  .project-master-plan__btn-mobile span {
    font-size: 4.375vw;
  }
}

.project-structure {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-structure {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-structure {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-structure {
    margin-bottom: 7.5vw;
  }
}
.project-structure__wrapper {
  background-color: #F6F8F7;
  padding: 60px 0px 60px 50px;
}
@media screen and (max-width: 1236px) {
  .project-structure__wrapper {
    padding: 37.5px 0px 37.5px 31.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-structure__wrapper {
    padding: 30px 0px 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-structure__wrapper {
    padding: 7.5vw 5vw;
  }
}
.project-structure__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 41px;
}
@media screen and (max-width: 1236px) {
  .project-structure__title {
    font-size: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 785px) {
  .project-structure__title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 130%;
    max-width: 250px;
  }
}
@media screen and (max-width: 480px) {
  .project-structure__title {
    font-size: 5.625vw;
    margin-bottom: 7.5vw;
    max-width: 62.5vw;
  }
}
.project-structure__content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 810px;
}
@media screen and (max-width: 1236px) {
  .project-structure__content {
    gap: 19.5px;
    max-width: 507px;
  }
}
@media screen and (max-width: 785px) {
  .project-structure__content {
    gap: 9px 0px;
    max-width: 257px;
  }
}
@media screen and (max-width: 480px) {
  .project-structure__content {
    gap: 2.5vw 0px;
    max-width: 75vw;
  }
}
.project-structure__param {
  font-size: 24px;
  padding: 20px 40px;
  line-height: 75%;
  background-color: #fff;
  border-radius: 29px;
}
@media screen and (max-width: 1236px) {
  .project-structure__param {
    font-size: 15px;
    padding: 12.5px 25px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 785px) {
  .project-structure__param {
    font-size: 13.5px;
    padding: 12px 30px;
    border-radius: 17px;
  }
}
@media screen and (max-width: 480px) {
  .project-structure__param {
    font-size: 3.75vw;
    padding: 3.75vw 6.25vw;
    border-radius: 5.156vw;
  }
}

.project-filter {
  margin-bottom: 24px;
}
@media screen and (max-width: 1236px) {
  .project-filter {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter {
    margin-bottom: 3.125vw;
  }
}
.project-filter__wrapper {
  display: flex;
  flex-direction: column;
  background-color: #F6F8F7;
  padding-right: 0;
}
@media screen and (max-width: 785px) {
  .project-filter__wrapper {
    padding: 30px 0px 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__wrapper {
    padding: 7.5vw 0px 7.5vw 5vw;
  }
}
.project-filter__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 36px;
}
@media screen and (max-width: 1236px) {
  .project-filter__title {
    font-size: 25px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__title {
    font-size: 6.25vw;
    margin-bottom: 6.25vw;
  }
}
.project-filter__input-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .project-filter__input-title {
    font-size: 11.25px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__input-title {
    font-size: 13.5px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__input-title {
    font-size: 3.125vw;
    margin-bottom: 3.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__bedroom {
    display: none;
  }
}
.project-filter__form {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .project-filter__form {
    align-items: start;
    flex-direction: column;
  }
}
.project-filter__form-blocks {
  display: flex;
}
.project-filter__form-blocks input[type=radio] {
  display: none;
}
.project-filter__form-blocks__el + .project-filter__form-blocks__el {
  margin-left: 80px;
}
@media screen and (max-width: 1236px) {
  .project-filter__form-blocks__el + .project-filter__form-blocks__el {
    margin-left: 50px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__form-blocks__el + .project-filter__form-blocks__el {
    margin-left: 30px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__form-blocks__el + .project-filter__form-blocks__el {
    margin-left: 6.25vw;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__form-blocks {
    flex-direction: column;
  }
}
.project-filter__range-block {
  display: flex;
  gap: 0px 80px;
  margin-left: 80px;
}
@media screen and (max-width: 1236px) {
  .project-filter__range-block {
    gap: 0px 50px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__range-block {
    gap: 0px 30px;
    margin: 30px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__range-block {
    gap: 0px 6.25vw;
    margin-top: 6.25vw;
  }
}
.project-filter__radio-wrapper {
  display: flex;
}
.project-filter__radio {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #B2B3B2;
  border-radius: 4px;
  padding: 17px 0px;
  width: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 67%;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-filter__radio:hover {
  background-color: #9c9c9c;
}
.project-filter__radio:last-child {
  width: 60px;
  margin-right: 0px;
}
@media screen and (max-width: 1236px) {
  .project-filter__radio {
    border-radius: 2.5px;
    padding: 10.5px 0px;
    width: 31.25px;
    font-size: 15px;
    margin-right: 5px;
  }
  .project-filter__radio:last-child {
    width: 37.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__radio {
    border-radius: 6px;
    padding: 11.5px 15px;
    width: 11px;
    font-size: 18px;
    margin-right: 6px;
  }
  .project-filter__radio:last-child {
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__radio {
    border-radius: 1.25vw;
    padding: 2.5vw 4.063vw;
    width: 2.313vw;
    font-size: 5vw;
    margin-right: 1.25vw;
  }
  .project-filter__radio:last-child {
    width: 5.663vw;
  }
}
.project-filter .radio-active {
  background-color: #DFA633;
  cursor: default;
}
.project-filter__range-wrapper .project-filter__input-title, .project-filter__range-wrapper .project-filter__field {
  margin-left: 10px;
}
@media screen and (max-width: 1236px) {
  .project-filter__range-wrapper .project-filter__input-title, .project-filter__range-wrapper .project-filter__field {
    margin-left: 6px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__range-wrapper .project-filter__input-title, .project-filter__range-wrapper .project-filter__field {
    margin-left: 0;
  }
}
.project-filter__number-input {
  display: flex;
  margin-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .project-filter__number-input {
    margin-bottom: 10.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__number-input {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__number-input {
    margin-bottom: 4.375vw;
  }
}
.project-filter__text {
  font-size: 18px;
  color: #949494;
  margin-right: 8px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-filter__text {
    font-size: 11.25px;
    margin-right: 4.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__text {
    font-size: 12px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__text {
    font-size: 3.125vw;
    margin-right: 1.25vw;
  }
}
.project-filter__field {
  display: flex;
  align-items: center;
}
.project-filter__field input {
  font-family: "Gilroy";
  display: flex;
  background-color: inherit;
  border: 0px;
  padding: 0;
  margin: 0px;
  width: 103.5px;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 1236px) {
  .project-filter__field input {
    width: 66px;
    font-size: 15px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__field input {
    width: 78px;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__field input {
    width: 19.063vw;
    font-size: 4.375vw;
  }
}
.project-filter__field input[type=number]::-webkit-outer-spin-button,
.project-filter__field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.project-filter__field span {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-filter__field span {
    font-size: 15px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__field span {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__field span {
    font-size: 4.375vw;
  }
}
.project-filter__field .square-input-style {
  width: 69px;
}
@media screen and (max-width: 1236px) {
  .project-filter__field .square-input-style {
    width: 42px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__field .square-input-style {
    width: 52px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__field .square-input-style {
    width: 12.625vw;
  }
}
.project-filter__slider {
  position: relative;
  width: 192px;
  height: 2px;
  background-color: #B2B2B2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1236px) {
  .project-filter__slider {
    width: 120px;
    height: 1.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__slider {
    width: 150px;
    height: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__slider {
    width: 31.25vw;
    height: 0.313vw;
  }
}
.project-filter__progress {
  display: flex;
  align-items: center;
  height: 100%;
  left: 0%;
  width: 50%;
  height: 2px;
  position: absolute;
  background-color: #DFA633;
}
.project-filter__progress__left {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DFA633;
}
.project-filter__progress__right {
  position: absolute;
  width: 8px;
  height: 8px;
  right: 0;
  border-radius: 50%;
  background-color: #B2B3B2;
}
@media screen and (max-width: 1236px) {
  .project-filter__progress {
    height: 1.25px;
  }
  .project-filter__progress__left {
    width: 6px;
    height: 6px;
  }
  .project-filter__progress__right {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__progress {
    height: 1.5px;
  }
  .project-filter__progress__left {
    width: 7.5px;
    height: 7.2px;
  }
  .project-filter__progress__left {
    width: 7.5px;
    height: 7.2px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__progress {
    height: 0.313vw;
  }
  .project-filter__progress__left {
    width: 1.563vw;
    height: 1.563vw;
  }
  .project-filter__progress__right {
    width: 1.563vw;
    height: 1.563vw;
  }
}
.project-filter__range-input {
  position: relative;
}
.project-filter__range-input input {
  position: absolute;
  width: 100%;
  height: 2px;
  margin: 0;
  top: -2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 1236px) {
  .project-filter__range-input input {
    height: 1.25px;
    top: -1.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__range-input input {
    height: 1.5px;
    top: -1.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__range-input input {
    height: 0.313vw;
    top: -0.313vw;
  }
}
.project-filter input[type=range]::-webkit-slider-thumb {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #DFA633;
  pointer-events: auto;
  -webkit-appearance: none;
}
@media screen and (max-width: 1236px) {
  .project-filter input[type=range]::-webkit-slider-thumb {
    width: 7.5px;
    height: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter input[type=range]::-webkit-slider-thumb {
    width: 10.5px;
    height: 10.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter input[type=range]::-webkit-slider-thumb {
    width: 2.188vw;
    height: 2.188vw;
  }
}
.project-filter__submit {
  margin-top: 23px;
  background-color: #E7A827;
  padding: 18px 50px 18px 40px;
  border: 0px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 80%;
  height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-filter__submit:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .project-filter__submit {
    margin-top: 14px;
    padding: 11.25px 31.25px 11.25px 25px;
    border-top-left-radius: 15.63px;
    border-bottom-left-radius: 15.63px;
    font-size: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-filter__submit {
    text-transform: capitalize;
    margin-top: 30px;
    padding: 15px 24px;
    border-radius: 22.5px;
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  .project-filter__submit {
    margin-top: 6.25vw;
    padding: 3.125vw 5vw;
    border-radius: 4.688vw;
    font-size: 4.375vw;
  }
}

.project-apartments {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-apartments {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments {
    margin-bottom: 3.125vw;
  }
}
.project-apartments__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #F6F8F7;
}
@media screen and (max-width: 1236px) {
  .project-apartments__wrapper {
    gap: 12.5px;
    padding: 31.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__wrapper {
    gap: 16px;
    padding: 30px 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__wrapper {
    gap: 5vw;
    padding: 6.25vw 5vw;
  }
}
.project-apartments__apart {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 46px;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart {
    border-radius: 8.5px;
    padding: 25px 28.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart {
    padding: 30px 51px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart {
    padding: 7.5vw;
    border-radius: 1.563vw;
  }
}
.project-apartments__apart__tags {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__tags {
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__tags {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__tags {
    margin-bottom: 3.75vw;
  }
}
.project-apartments__apart__tag + .project-apartments__apart__tag {
  margin-left: 4px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__tag + .project-apartments__apart__tag {
    margin-left: 2.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__tag + .project-apartments__apart__tag {
    margin-left: 6px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__tag + .project-apartments__apart__tag {
    margin-left: 1.25vw;
  }
}
.project-apartments__apart__tag {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  padding: 15px 20px;
  background-color: #DFA633;
  border-radius: 21.5px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__tag {
    font-size: 11.25px;
    padding: 9.37px 12.5px;
    border-radius: 13.44px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__tag {
    font-size: 15px;
    padding: 13px 15px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__tag {
    font-size: 4.375vw;
    padding: 3.75vw;
    border-radius: 5.313vw;
  }
}
.project-apartments__apart__image {
  width: 216px;
  height: 290px;
  margin-bottom: 30px;
}
.project-apartments__apart__image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__image {
    width: 135px;
    height: 181px;
    margin-bottom: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__image {
    width: 243px;
    height: 330px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__image {
    width: 62.5vw;
    height: 84.375vw;
    margin-bottom: 9.375vw;
  }
}
.project-apartments__apart__content {
  width: 265px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__content {
    width: 166.25px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__content {
    width: 255px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__content {
    width: 62.5vw;
    margin-bottom: 9.375vw;
  }
}
.project-apartments__apart__row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 15px 0px;
  border-bottom: 1px solid #E9E9E9;
}
.project-apartments__apart__row:first-child {
  padding-top: 0px;
}
.project-apartments__apart__row:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__row {
    padding: 9px 0px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__row {
    padding: 18px 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__row {
    padding: 5vw;
  }
}
.project-apartments__apart__text {
  font-size: 15px;
  line-height: 100%;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__text {
    font-size: 9.38px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__text {
    font-size: 4.063vw;
  }
}
.project-apartments__apart__text2 {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__apart__text2 {
    font-size: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__text2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__text2 {
    font-size: 5vw;
  }
}
.project-apartments__apart__text2-color {
  color: #E7A827;
}
.project-apartments__apart__show-more-mobile {
  display: none;
}
@media screen and (max-width: 785px) {
  .project-apartments__apart__show-more-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-family: "Neue Machina";
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    color: #fff;
    background-color: #E7A827;
    width: 270px;
    height: 58.5px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__apart__show-more-mobile {
    font-size: 4.375vw;
    width: 62.5vw;
    height: 14.375vw;
    border-radius: 1.563vw;
  }
}
.project-apartments__show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 357px;
  height: 653.2px;
  color: #777777;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-apartments__show-more:hover {
  color: #b5b5b5;
}
.project-apartments__show-more span {
  font-size: 16px;
}
@media screen and (max-width: 1236px) {
  .project-apartments__show-more {
    width: 223.12px;
    height: 381.25px;
  }
  .project-apartments__show-more span {
    font-size: 10px;
  }
}
@media screen and (max-width: 785px) {
  .project-apartments__show-more {
    text-transform: uppercase;
    width: 372px;
    height: 58.5px;
    background-color: #B2B2B2;
    border-radius: 7.5px;
  }
  .project-apartments__show-more span {
    font-family: "Neue Machina";
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .project-apartments__show-more {
    width: 77.5vw;
    height: 14.375vw;
    border-radius: 1.563vw;
  }
  .project-apartments__show-more span {
    font-size: 4.375vw;
  }
}
.project-apartments .hide-content {
  overflow: hidden;
  display: none;
}

.project-facilites {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-facilites {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites {
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__content {
    text-align: center;
    background-color: #F6F8F7;
    border-radius: 7.5px;
    padding: 30px 24px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__content {
    border-radius: 1.563vw;
    padding: 7.5vw 5vw;
    margin-bottom: 7.5vw;
  }
}
.project-facilites__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__title {
    font-size: 25px;
    margin-bottom: 19.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__title {
    font-size: 5.625vw;
    margin-bottom: 6.25vw;
  }
}
.project-facilites__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__grid {
    gap: 7.5px;
    margin-bottom: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__grid {
    gap: 9px 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__grid {
    gap: 1.875vw 0px;
  }
}
.project-facilites__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F6F8F7;
  width: 316px;
  border-radius: 12px;
  padding: 70px 40px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__card {
    width: 197.5px;
    border-radius: 7.5px;
    padding: 43.5px 25px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__card {
    background-color: #fff;
    width: 372px;
    border-radius: 6px;
    padding: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__card {
    width: 77.5vw;
    border-radius: 1.25vw;
    padding: 5vw;
  }
}
.project-facilites__name {
  font-size: 20px;
  line-height: 130%;
  max-width: 170px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__name {
    font-size: 12.5px;
    max-width: 107px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__name {
    font-weight: 600;
    font-size: 13.5px;
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__name {
    text-align: start;
    font-size: 3.75vw;
    max-width: 37.5vw;
  }
}
.project-facilites__distance {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 30px;
  color: #DFA633;
}
@media screen and (max-width: 1236px) {
  .project-facilites__distance {
    font-size: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__distance {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__distance {
    font-size: 5vw;
  }
}
.project-facilites__map {
  position: relative;
}
.project-facilites__map iframe {
  width: 1212px;
  height: 606px;
  border-radius: 12px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map iframe {
    width: 757.6px;
    height: 379px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map iframe {
    width: 420px;
    height: 270px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map iframe {
    width: 87.5vw;
    height: 56.25vw;
    margin-bottom: 3.125vw;
  }
}
.project-facilites__map-content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  padding: 48px 52px;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map-content {
    left: 31.25px;
    bottom: 31.25px;
    padding: 30px 32.5px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content {
    position: static;
    left: 0;
    bottom: 0;
    padding: 36px 24px;
    background-color: #F6F8F7;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content {
    padding: 7.5vw 5vw;
    border-radius: 1.563vw;
  }
}
.project-facilites__map-content__title {
  font-family: "Neue Machina";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map-content__title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content__title {
    font-size: 5.625vw;
    margin-bottom: 5vw;
  }
}
.project-facilites__map-content__row {
  display: flex;
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__row {
    flex-direction: column;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__column {
    background-color: #fff;
    padding: 24px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content__column {
    padding: 6.25vw 5vw;
    border-radius: 1.25vw;
  }
}
.project-facilites__map-content__column + .project-facilites__map-content__column {
  margin-left: 56px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map-content__column + .project-facilites__map-content__column {
    margin-left: 35px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__column + .project-facilites__map-content__column {
    margin: 9px 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content__column + .project-facilites__map-content__column {
    margin-top: 2.5vw;
  }
}
.project-facilites__map-content__subheading {
  font-size: 12px;
  line-height: 100%;
  color: #DFA633;
  margin-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map-content__subheading {
    font-size: 7.5px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__subheading {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content__subheading {
    font-size: 4.375vw;
    margin-bottom: 3.75vw;
  }
}
.project-facilites__map-content__text {
  display: block;
  font-weight: 600;
  font-size: 13px;
  max-width: 204px;
}
@media screen and (max-width: 1236px) {
  .project-facilites__map-content__text {
    font-size: 8px;
    max-width: 127px;
  }
}
@media screen and (max-width: 785px) {
  .project-facilites__map-content__text {
    font-size: 19.5px;
    max-width: 260px;
  }
  .project-facilites__map-content__text:last-child {
    font-size: 13.5px;
  }
}
@media screen and (max-width: 480px) {
  .project-facilites__map-content__text {
    font-size: 4.688vw;
    max-width: 54.688vw;
  }
  .project-facilites__map-content__text:last-child {
    font-size: 3.75vw;
  }
}

.project-consult {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .project-consult {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .project-consult {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult {
    margin-bottom: 3.125vw;
  }
}
.project-consult__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 70px;
  background-color: #F6F8F7;
}
@media screen and (max-width: 1236px) {
  .project-consult__wrapper {
    padding: 50px 43.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-consult__wrapper {
    justify-content: start;
    align-items: start;
    flex-direction: column;
    background-color: #fff;
    padding: 0;
  }
}
@media screen and (max-width: 785px) {
  .project-consult__content {
    background-color: #F6F8F7;
    width: 372px;
    padding: 30px 24px;
    border-radius: 7.5px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult__content {
    padding: 7.5vw 5vw;
    border-radius: 1.563vw;
    width: 77.5vw;
  }
}
.project-consult__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 48px;
  max-width: 397px;
}
@media screen and (max-width: 1236px) {
  .project-consult__title {
    font-size: 25px;
    margin-bottom: 30px;
    max-width: 250px;
  }
}
@media screen and (max-width: 785px) {
  .project-consult__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult__title {
    font-size: 5.625vw;
  }
}
.project-consult__text {
  font-size: 20px;
  line-height: 160%;
  max-width: 506px;
}
@media screen and (max-width: 1236px) {
  .project-consult__text {
    font-size: 12.5px;
    max-width: 317px;
  }
}
@media screen and (max-width: 785px) {
  .project-consult__text {
    font-size: 13.5px;
    max-width: 280px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult__text {
    font-size: 3.438vw;
    max-width: 71.875vw;
  }
}
.project-consult__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 65px;
  background-color: #DFA633;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-consult__btn:hover {
  background-color: #e5b555;
}
.project-consult__btn img {
  display: none;
}
@media screen and (max-width: 785px) {
  .project-consult__btn img {
    display: block;
    width: 24px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult__btn img {
    width: 5vw;
    margin-right: 2.5vw;
  }
}
.project-consult__btn span {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  line-height: 70%;
}
@media screen and (max-width: 1236px) {
  .project-consult__btn {
    padding: 25px 40.5px;
    border-radius: 7.5px;
  }
  .project-consult__btn span {
    font-size: 18.75px;
  }
}
@media screen and (max-width: 785px) {
  .project-consult__btn {
    width: 420px;
    height: 81px;
    padding: 0;
  }
  .project-consult__btn img {
    display: flex;
    width: 24px;
    height: 15px;
    margin-right: 12px;
  }
  .project-consult__btn span {
    font-weight: 700;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .project-consult__btn {
    width: 87.5vw;
    height: 16.875vw;
  }
  .project-consult__btn img {
    width: 5vw;
    height: 3.125vw;
    margin-right: 2.5vw;
  }
  .project-consult__btn span {
    font-size: 4.375vw;
  }
}

.project-location {
  margin-bottom: 160px;
}
@media screen and (max-width: 1236px) {
  .project-location {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 785px) {
  .project-location {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .project-location {
    margin-bottom: 15vw;
  }
}

.villa-start {
  margin: 105px 0px 120px;
}
@media screen and (max-width: 1236px) {
  .villa-start {
    margin: 66px 0px 75px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start {
    margin: 48px 0px 36px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start {
    margin: 10vw 7.5vw;
  }
}
.villa-start__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 945px;
}
@media screen and (max-width: 1236px) {
  .villa-start__container {
    max-width: 591.38px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__container {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    max-width: 420px;
  }
}
.villa-start__image {
  width: 483px;
  height: 600px;
}
.villa-start__image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .villa-start__image {
    width: 302px;
    height: 362.5px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__image {
    width: 420px;
    height: 489px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__image {
    width: 87.5vw;
    height: 101.875vw;
    margin-bottom: 5.625vw;
  }
}
.villa-start__subheading {
  font-family: "Neue Machina";
  font-size: 16px;
  line-height: 70%;
  margin-bottom: 24px;
  text-transform: capitalize;
}
@media screen and (max-width: 1236px) {
  .villa-start__subheading {
    font-size: 10px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__subheading {
    font-size: 18px;
    margin-bottom: 21px;
    opacity: 0.3;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__subheading {
    font-size: 3.75vw;
    margin-bottom: 4.375vw;
  }
}
.villa-start__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 24px;
  line-height: 70%;
  color: #E7A827;
  margin-bottom: 24px;
}
@media screen and (max-width: 1236px) {
  .villa-start__title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__title {
    margin-bottom: 21px;
    line-height: 135%;
  }
  .villa-start__title-1 {
    font-size: 30px;
  }
  .villa-start__title-2 {
    font-size: 24px;
  }
  .villa-start__title-3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__title {
    margin-bottom: 4.375vw;
  }
  .villa-start__title-1 {
    font-size: 6.25vw;
  }
  .villa-start__title-2 {
    font-size: 5vw;
  }
  .villa-start__title-3 {
    font-size: 3.75vw;
  }
}
.villa-start__price {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 26px;
  line-height: 70%;
  margin-bottom: 40px;
}
@media screen and (max-width: 1236px) {
  .villa-start__price {
    font-size: 16.25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__price {
    font-size: 27px;
    margin-bottom: 57px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__price {
    font-size: 5.625vw;
    margin-bottom: 10vw;
  }
}
.villa-start__params {
  width: 362px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1236px) {
  .villa-start__params {
    width: 226.25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__params {
    width: 348px;
    margin-bottom: 15px;
    background-color: #F6F8F7;
    padding: 42px 36px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__params {
    width: 72.5vw;
    margin-bottom: 3.125vw;
    padding: 8.75vw 7.5vw;
    border-radius: 1.563vw;
  }
}
.villa-start__param {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid #E7E7E7;
}
.villa-start__param:first-child {
  border-top: 1px solid #E7E7E7;
}
@media screen and (max-width: 1236px) {
  .villa-start__param {
    padding: 12.5px 0px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__param {
    padding: 27px 0px;
  }
  .villa-start__param:first-child {
    padding-top: 0;
    border-top: 0px;
  }
  .villa-start__param:last-child {
    padding-bottom: 0;
    border-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__param {
    padding: 5.625vw 0px;
  }
}
.villa-start__text1 {
  font-family: "Neue Machina";
  font-size: 14px;
  line-height: 70%;
  color: #888888;
}
@media screen and (max-width: 1236px) {
  .villa-start__text1 {
    font-size: 8.75px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__text1 {
    font-size: 19.5px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__text1 {
    font-size: 4.063vw;
  }
}
.villa-start__text2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 70%;
}
@media screen and (max-width: 1236px) {
  .villa-start__text2 {
    font-size: 10px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__text2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__text2 {
    font-size: 5vw;
  }
}
.villa-start__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7A827;
  border-radius: 6px;
  padding: 24px 118px;
  font-weight: 600;
  font-size: 18px;
  line-height: 70%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.villa-start__btn:hover {
  background-color: #edb84d;
}
.villa-start__btn-mobile {
  display: none;
}
@media screen and (max-width: 1236px) {
  .villa-start__btn {
    border-radius: 3.75px;
    width: 226.25px;
    height: 37.5px;
    padding: 0;
  }
  .villa-start__btn span {
    font-size: 11.25px;
  }
}
@media screen and (max-width: 785px) {
  .villa-start__btn {
    display: none;
    width: 420px;
    height: 81px;
    padding: 0px;
    border-radius: 7.5px;
  }
  .villa-start__btn-mobile {
    display: flex;
  }
  .villa-start__btn img {
    width: 24px;
    height: 15px;
    margin-right: 12px;
  }
  .villa-start__btn span {
    font-size: 21px;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 480px) {
  .villa-start__btn {
    width: 87.5vw;
    height: 16.875vw;
    border-radius: 1.563vw;
  }
  .villa-start__btn img {
    width: 5vw;
    height: 3.125vw;
    margin-right: 2.5vw;
  }
  .villa-start__btn span {
    font-size: 4.375vw;
  }
}

.villa-slider {
  margin-bottom: 120px;
}
@media screen and (max-width: 1236px) {
  .villa-slider {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .villa-slider {
    margin-bottom: 7.5vw;
  }
}
.villa-slider__slider {
  text-align: center;
  position: relative;
}
.villa-slider__title {
  font-family: "Neue Machina";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 46px;
  text-transform: uppercase;
}
@media screen and (max-width: 1236px) {
  .villa-slider__title {
    font-size: 25px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider__title {
    display: none;
  }
}
.villa-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.villa-slider__image {
  width: 1000px;
  height: 600px;
  border-radius: 20px;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1236px) {
  .villa-slider__image {
    width: 625px;
    height: 375px;
    border-radius: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider__image {
    width: 420px;
    height: 270px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .villa-slider__image {
    width: 87.5vw;
    height: 56.25vw;
    border-radius: 1.563vw;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider .mySwiperVilla {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider .villa-slider-arrows {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 480px) {
  .villa-slider .villa-slider-arrows {
    gap: 2.5vw;
    margin-top: 3.125vw;
  }
}
.villa-slider .villa-slider-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background-color: #DFA633;
  padding: 23px 20px;
  width: 20px;
  height: 14.01px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.villa-slider .villa-slider-arrow:hover {
  background-color: #e5b555;
}
@media screen and (max-width: 1236px) {
  .villa-slider .villa-slider-arrow {
    width: 37.5px;
    height: 37.5px;
    padding: 0;
  }
  .villa-slider .villa-slider-arrow img {
    width: 12px;
    height: 9px;
  }
}
@media screen and (max-width: 785px) {
  .villa-slider .villa-slider-arrow {
    position: static;
    width: 36px;
    height: 36px;
  }
  .villa-slider .villa-slider-arrow img {
    width: 6px;
    height: 11px;
  }
}
@media screen and (max-width: 480px) {
  .villa-slider .villa-slider-arrow {
    width: 7.5vw;
    height: 7.5vw;
  }
  .villa-slider .villa-slider-arrow img {
    width: 1.141vw;
    height: 2.281vw;
  }
}
.villa-slider .swiper-button-prev-villa {
  top: 270px;
  left: 0px;
}
@media screen and (max-width: 1236px) {
  .villa-slider .swiper-button-prev-villa {
    top: 168.75px;
  }
}
.villa-slider .swiper-button-next-villa {
  top: 270px;
  right: 0px;
}
@media screen and (max-width: 1236px) {
  .villa-slider .swiper-button-next-villa {
    top: 168.75px;
  }
}
.villa-apartments {
  margin-bottom: 160px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments {
    margin-bottom: 10vw;
  }
}
.villa-apartments__head {
  font-family: "Neue Machina";
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 40px;
}
.villa-apartments__head span {
  color: #DFA633;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__head {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__head {
    display: none;
  }
}
.villa-apartments__wrapper {
  display: grid;
  background-color: #F6F8F7;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-radius: 24px;
  padding: 20px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__wrapper {
    gap: 12.5px;
    border-radius: 16px;
    padding: 12.5px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__wrapper {
    gap: 5vw;
    padding: 6.25vw 5vw;
    border-radius: 1.875vw;
  }
}
.villa-apartments__apart {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 45px 60px;
  gap: 30px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart {
    padding: 28px 36px;
    border-radius: 10px;
    gap: 18px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart {
    padding: 36px;
    border-radius: 8px;
    gap: 18px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart {
    padding: 7.5vw;
    border-radius: 1.875vw;
    gap: 3.75vw;
  }
}
.villa-apartments__apart__show-more-mobile {
  display: none;
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__show-more-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-family: "Neue Machina";
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    color: #fff;
    background-color: #E7A827;
    width: 270px;
    height: 58.5px;
    border-radius: 7.5px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__show-more-mobile {
    font-size: 4.375vw;
    width: 62.5vw;
    height: 14.375vw;
    border-radius: 1.563vw;
  }
}
.villa-apartments__apart__text {
  font-family: "Neue Machina";
  font-weight: 500;
  font-size: 13px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__text {
    font-size: 8px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__text {
    font-size: 4.063vw;
  }
}
.villa-apartments__apart__text2 {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__text2 {
    font-size: 10px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__text2 {
    font-weight: 600;
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__text2 {
    font-size: 5vw;
  }
}
.villa-apartments__apart__text2-color {
  color: #E7A827;
}
.villa-apartments__apart__tags {
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__tags {
    gap: 1.25vw;
  }
}
.villa-apartments__apart__name {
  position: absolute;
  background-color: #DFA633;
  padding: 25px 15px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 70%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__name {
    padding: 15px 9px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 10px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__name {
    position: relative;
    padding: 18px;
    border-radius: 26px;
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__name {
    padding: 3.75vw;
    border-radius: 5.313vw;
    font-size: 4.375vw;
  }
}
.villa-apartments__apart__image {
  width: 230px;
  height: 280px;
}
.villa-apartments__apart__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__image {
    width: 144px;
    height: 175px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__image {
    width: 300px;
    height: 405px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__image {
    width: 62.5vw;
    height: 84.375vw;
  }
}
.villa-apartments__apart__description {
  font-family: "Neue Machina";
  font-weight: 700;
  line-height: 70%;
  font-size: 24px;
  color: #DFA633;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__description {
    font-size: 15px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__description {
    background-color: #E7A827;
    color: #fff;
    font-weight: 600;
    line-height: 75%;
    font-size: 21px;
    padding: 18px;
    border-radius: 25px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__description {
    padding: 3.75vw;
    border-radius: 5.313vw;
    font-size: 4.375vw;
  }
}
.villa-apartments__apart__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__content {
    margin: 27px 0;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__content {
    margin: 5.625vw 0;
  }
}
.villa-apartments__apart__content > .villa-apartments__apart__row + .villa-apartments__apart__row {
  padding-top: 15px;
  border-top: 1px solid #E9E9E9;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__content > .villa-apartments__apart__row + .villa-apartments__apart__row {
    padding-top: 8px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__content > .villa-apartments__apart__row + .villa-apartments__apart__row {
    padding-top: 27px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__content > .villa-apartments__apart__row + .villa-apartments__apart__row {
    padding-top: 5vw;
  }
}
.villa-apartments__apart__content .villa-apartments__apart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  line-height: 70%;
  padding-bottom: 15px;
}
@media screen and (max-width: 1236px) {
  .villa-apartments__apart__content .villa-apartments__apart__row {
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 785px) {
  .villa-apartments__apart__content .villa-apartments__apart__row {
    padding-bottom: 27px;
  }
}
@media screen and (max-width: 480px) {
  .villa-apartments__apart__content .villa-apartments__apart__row {
    padding-bottom: 5vw;
  }
}
.villa-apartments__apart__content .villa-apartments__apart__row:last-child {
  padding-bottom: 0;
}

.apart-text-grey {
  color: #888;
}

.admin-login__container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin-login__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px 0px;
  padding: 60px;
}
.admin-login__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 70%;
  color: #DFA633;
}
.admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 20px 0px;
}
.admin-login__form__field {
  position: relative;
}
.admin-login__form__icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.admin-login__form__icon img {
  width: 20px;
  height: 18px;
}
.admin-login__form__input {
  width: 580px;
  height: 70px;
  background-color: #EEF1F0;
  padding: 0;
  border: none;
  border-radius: 20px;
  text-indent: 30px;
  font-family: "Gilroy";
  font-size: 20px;
  font-weight: 600;
  color: #121212;
}
.admin-login__form__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #777777;
}
.admin-login__form__btn {
  width: 580px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 20px;
  background-color: #DFA633;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: 30px;
  line-height: 75%;
  color: #fff;
  cursor: pointer;
}

.admin-header {
  margin: 32px 0px 20px;
}
.admin-header__container {
  display: flex;
  gap: 0px 20px;
}
.admin-header__list {
  display: flex;
  justify-content: space-between;
  width: 1009px;
  padding: 15px 21px;
  background-color: #EEF1F0;
  border-radius: 20px;
}
.admin-header__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px 14px;
  padding: 18px 50px;
  background-color: #fff;
  border-radius: 20px;
}
.admin-header__list__item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin-header__list__item__icon img {
  width: 20px;
  height: 20px;
}
.admin-header__list__item__text {
  font-size: 20px;
  line-height: 75%;
  color: #121212;
}
.admin-header__list .active {
  background-color: #DFA633;
  color: #fff;
}
.admin-header__account__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 20px;
  width: 331px;
  background-color: #EEF1F0;
  border-radius: 20px;
}
.admin-header__account__name {
  font-size: 20px;
  line-height: 75%;
}
.admin-header__account__settings {
  display: flex;
  align-items: center;
  gap: 0px 6px;
}
.admin-header__account__settings button {
  background-color: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.admin-header__account__settings__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 12px;
}
.admin-header__account__settings__icon img {
  width: 18px;
  height: 20px;
}
.admin-header__account__settings__icon:last-child img {
  width: 16px;
  height: 16px;
}

.footer {
  background-color: #F6F8F7;
  padding: 70px 0px;
}
@media screen and (max-width: 1236px) {
  .footer {
    padding: 43.75px 0px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  max-width: 955px;
  margin: 0px auto 60px;
}
@media screen and (max-width: 1236px) {
  .footer__content {
    max-width: 597px;
    margin: 0px auto 22.5px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
}
.footer__list-title {
  font-family: "Neue Machina";
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1236px) {
  .footer__list-title {
    font-size: 15px;
    margin-bottom: 18.37px;
  }
}
.footer__list-item {
  font-size: 14px;
  max-width: 176px;
  margin-bottom: 24px;
  text-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .footer__list-item {
    font-size: 8.75px;
    margin-bottom: 15.25px;
    max-width: 110px;
  }
}
.footer__address__certain {
  font-size: 14px;
  line-height: 180%;
  padding-bottom: 0px;
  display: block;
  max-width: 205px;
  text-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .footer__address__certain {
    font-size: 8.75px;
    margin-bottom: 15.25px;
    max-width: 130px;
  }
}
.footer__callback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 25px 60px;
}
@media screen and (max-width: 1236px) {
  .footer__callback {
    padding: 18px 37.5px;
    border-radius: 5px;
  }
}
.footer__callback__content-block {
  display: flex;
  align-items: center;
}
.footer__callback__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 41px;
}
.footer__callback__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1236px) {
  .footer__callback__icon {
    width: 18.75px;
    height: 18.75px;
    margin-right: 23px;
  }
}
.footer__callback__title {
  height: 17px;
  color: #E7A827;
  font-weight: 600;
  font-size: 24px;
  line-height: 75%;
  padding-bottom: 16px;
}
@media screen and (max-width: 1236px) {
  .footer__callback__title {
    font-size: 15px;
    padding-bottom: 10.62px;
  }
}
.footer__callback__text {
  height: 9px;
  font-size: 13px;
  line-height: 75%;
}
@media screen and (max-width: 1236px) {
  .footer__callback__text {
    height: 6px;
    font-size: 8px;
  }
}
.footer__callback__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 50px;
  border-radius: 6px;
  background-color: #E7A827;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__callback__button:hover {
  background-color: #edb84d;
}
@media screen and (max-width: 1236px) {
  .footer__callback__button {
    width: 168.75px;
    height: 31.25px;
    border-radius: 3.75px;
    font-size: 11.25px;
  }
}
@media screen and (max-width: 785px) {
  .footer {
    display: none;
  }
}

.contact-list-item:last-child {
  padding-bottom: 0px;
}

.project-list-item:last-child {
  padding-bottom: 0px;
}

.social-list-item:last-child {
  padding-bottom: 0px;
}

.footer-policy-link {
  text-decoration: underline;
  color: #E7A827;
}

.footer-mobile {
  display: none;
  padding: 49px 0px 45px;
  background-color: #F6F8F7;
}
@media screen and (max-width: 480px) {
  .footer-mobile {
    padding: 30px 0px;
  }
}
.footer-mobile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__head {
    margin-bottom: 9.375vw;
  }
}
.footer-mobile__icon-logo {
  width: 66px;
  height: 77.58px;
}
.footer-mobile__icon-logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .footer-mobile__icon-logo {
    width: 13.75vw;
    height: 16.563vw;
  }
}
.footer-mobile__icons {
  display: flex;
}
.footer-mobile__icons img {
  width: 36px;
  height: 36px;
}
.footer-mobile__icons a + a {
  margin-left: 9px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__icons img {
    width: 7.5vw;
    height: 7.5vw;
  }
  .footer-mobile__icons a + a {
    margin-left: 1.875vw;
  }
}
@media screen and (max-width: 785px) {
  .footer-mobile {
    display: block;
  }
}
.footer-mobile__accordeon-block {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon-block {
    margin-bottom: 6.25vw;
  }
}
.footer-mobile__accordeon {
  border-bottom: 0.6px solid rgba(18, 18, 18, 0.2);
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon {
    border-bottom: 0.125vw solid rgba(18, 18, 18, 0.2);
  }
}
.footer-mobile__accordeon__btn {
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
  cursor: pointer;
}
.footer-mobile__accordeon__btn span {
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon__btn span {
    font-size: 3.75vw;
  }
}
.footer-mobile__accordeon__btn img {
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon__btn img {
    width: 2vw;
  }
}
.footer-mobile__accordeon__btn .img-active {
  transform: rotateX(180deg);
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon__btn {
    padding: 6.25vw 0px;
  }
  .footer-mobile__accordeon__btn span {
    font-size: 3.75vw;
  }
}
.footer-mobile__accordeon__content {
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.footer-mobile__accordeon__container {
  display: flex;
  flex-direction: column;
  gap: 24px 0px;
  padding: 30px 0px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon__container {
    gap: 16px 0px;
    padding: 20px 0px;
  }
}
@media screen and (max-width: 785px) {
  .footer-mobile__accordeon .footer__content-item {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #636363;
  }
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon .footer__content-item {
    font-size: 3.334vw;
  }
}
.footer-mobile__accordeon:first-child .footer-mobile__accordeon__btn {
  padding: 0px 0px 30px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__accordeon:first-child .footer-mobile__accordeon__btn {
    padding: 0px 0px 6.25vw;
  }
}
.footer-mobile__accordeon .accordeon-padding {
  padding-bottom: 0 !important;
}
.footer-mobile__policy {
  margin-bottom: 45px;
}
.footer-mobile__policy a {
  font-size: 15px;
  color: #E7A827;
}
@media screen and (max-width: 480px) {
  .footer-mobile__policy {
    margin-bottom: 9.375vw;
  }
  .footer-mobile__policy a {
    font-size: 3.125vw;
  }
}
.footer-mobile__callback {
  background-color: #fff;
  border-radius: 7.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback {
    padding: 6.25vw 0px;
  }
}
.footer-mobile__callback__content {
  max-width: 316px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback__content {
    max-width: 65.938vw;
  }
}
.footer-mobile__callback__icon {
  margin-bottom: 30px;
}
.footer-mobile__callback__icon img {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback__icon {
    margin-bottom: 6.25vw;
  }
  .footer-mobile__callback__icon img {
    width: 7.5vw;
    height: 7.5vw;
  }
}
.footer-mobile__callback__title {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
  color: #E7A827;
  line-height: 130%;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback__title {
    font-size: 3.75vw;
    margin-bottom: 3.75vw;
  }
}
.footer-mobile__callback__text {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 11px;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback__text {
    font-size: 3.125vw;
    margin-bottom: 6.25vw;
    line-height: 2.188vw;
  }
}
.footer-mobile__callback__btn {
  font-family: "Gilroy";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-mobile__callback__btn:hover {
  background-color: #393939;
}
@media screen and (max-width: 480px) {
  .footer-mobile__callback__btn {
    border-radius: 1.25vw;
    font-size: 3.75vw;
    padding: 3.75vw 5vw;
  }
}

/*# sourceMappingURL=style.css.map */
