@charset "UTF-8";
:root {
  --index: calc(1vw + 1vh);
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  /* исправлено */
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-text);
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
  color: var(--color-text-g);
}

legend {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #f8f9fa;
}

body::-webkit-scrollbar {
  width: 14px; /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
  background-color: #1D1D1B; /* цвет дорожки */
  padding: 30px; /* добавляем отступ */
}
body::-webkit-scrollbar-thumb {
  background-color: #E0B364; /* цвет плашки */
  border-radius: 20px; /* закругления плашки */
  border: 3px solid #1D1D1B; /* padding вокруг плашки */
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #fdb63c; /* цвет при наведении */
}

.hero-section {
  background-color: #ffffff;
  padding: 50px 15px;
  position: relative;
  background: url("/data/assets/images/DSC_4155.jpg") no-repeat center center;
  background-size: cover;
  background-color: rgb(199, 45, 45);
  height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-content .btn {
  border-radius: 0;
}
.hero-section .hero-content .badge {
  font-size: 1rem;
  background-color: #E0B364;
  transition: all 0.3s;
  border-radius: 5px;
  margin-top: 15px;
}
.hero-section .hero-content .badge:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: #fdb63c;
}
.hero-section .hero-content .hero-title {
  font-size: 2rem;
  margin: 20px 0;
}
.hero-section .hero-content .hero-description {
  font-size: 1rem;
}
.hero-section .top_img {
  margin-left: 50px;
}
.hero-section .hero-content {
  max-width: 600px;
}
.hero-section .hero-content .badge {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
}
.hero-section .hero-content .hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 1rem;
}
.hero-section .hero-content .hero-description {
  margin-top: 1rem;
  font-size: 1rem;
}

main {
  padding-top: 70px;
}

@media (max-width: 992px) {
  .madpx {
    display: none;
  }
}
header.site-header {
  position: sticky;
  top: 0;
  background-color: #1D1D1B;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  overflow: visible;
}
header.site-header.stuck {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header.site-header .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-header .logo {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
header.site-header .logo:hover {
  color: #E0B364;
}
header.site-header .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}
header.site-header .nav-toggle .burger,
header.site-header .nav-toggle .burger::before,
header.site-header .nav-toggle .burger::after {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}
header.site-header .nav-toggle .burger::before,
header.site-header .nav-toggle .burger::after {
  content: "";
  position: absolute;
  left: 0;
}
header.site-header .nav-toggle .burger::before {
  top: -8px;
}
header.site-header .nav-toggle .burger::after {
  top: 8px;
}
header.site-header .nav-toggle.active .burger {
  background-color: transparent;
}
header.site-header .nav-toggle.active .burger::before {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #1D1D1B;
}
header.site-header .nav-toggle.active .burger::after {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #1D1D1B;
}
@media (max-width: 768px) {
  header.site-header .nav-toggle {
    display: flex;
  }
}
header.site-header nav.nav {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
header.site-header nav.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
header.site-header nav.nav ul li {
  position: relative;
}
header.site-header nav.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.3s ease;
  margin-top: 1px;
}
header.site-header nav.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #E0B364;
  transition: width 0.3s ease;
}
header.site-header nav.nav ul li a:hover {
  color: #E0B364;
}
header.site-header nav.nav ul li a:hover::after {
  width: 100%;
}
header.site-header nav.nav .nav-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  padding: 0;
  z-index: 1003;
}
header.site-header nav.nav .nav-close .close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
header.site-header nav.nav .nav-close .close-icon::before, header.site-header nav.nav .nav-close .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1D1D1B;
  transform-origin: center center;
}
header.site-header nav.nav .nav-close .close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
header.site-header nav.nav .nav-close .close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 768px) {
  header.site-header nav.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  header.site-header nav.nav.open {
    transform: translateY(0);
  }
  header.site-header nav.nav .nav-close {
    display: block;
  }
  header.site-header nav.nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 80px;
    padding: 0;
  }
  header.site-header nav.nav ul li {
    border-bottom: 1px solid white;
  }
  header.site-header nav.nav ul li a {
    display: block;
    padding: 20px;
    text-align: center;
    color: #1D1D1B;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  header.site-header nav.nav ul li a:hover {
    background-color: #f0f0f0;
    color: #333333;
  }
  header.site-header nav.nav ul li a:hover::after {
    background-color: #fdb63c;
    width: 100%;
  }
}

.navbar-brand {
  position: relative;
  width: 20vh;
  left: 30px;
  cursor: pointer;
}

.container-fluid {
  padding: 0;
}

.navbar {
  padding: 0;
}

@media (max-width: 992px) {
  .navbar-brand {
    width: 15%;
  }
}
.p-head {
  color: #fff;
}

.navbar-nav {
  position: relative;
  right: 30px;
}

.icon-top {
  position: relative;
  width: 100px;
}

.nav {
  margin-top: 5px;
}

@media screen and (max-width: 992px) {
  .madpx {
    display: none;
  }
}
@media (max-width: 768px) {
  header.site-header nav.nav {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  .close-icon {
    top: 20px;
  }
}/*# sourceMappingURL=top_img-header.css.map */

.img-gg{
  width: 100%;
  border-radius: 5px;
}.property-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1b;
  line-height: 1.3;
}

.property-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}


.property-highlight .btn:hover {
  background-color: #1D1D1B;
  color: #fff;
}
