@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #F3EFE5;
  position: relative;
  overflow-x: hidden;
}

h2.h2 {
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: -2%;
  line-height: 1em;
}
h2.h2 .blue {
  color: #293D59;
  display: inline-block;
  margin-top: 0.75rem;
}

p.p {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5em;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 65px;
  }
  p.p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 47px;
  }
  p.p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 37px;
  }
  p.p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 30px;
    line-height: 0.9em;
  }
  p.p {
    font-size: 12px;
  }
}
header {
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #F3EFE5;
}
header .logo {
  height: 100%;
}
header .logo a {
  height: 100%;
  color: #000;
  text-decoration: none;
}
header .logo a img {
  height: 100%;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #000;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #DA3332;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: rgba(41, 61, 89, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #DA3332;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .logo {
    font-size: 1.5em;
  }
  header .right {
    gap: 1.5rem;
  }
  header nav {
    gap: 1.5rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  header {
    height: 5rem;
  }
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.5rem;
    display: none;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.white a {
  background: #fff;
  color: #293D59;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #F3EFE5;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.65em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #DA3332;
}
.btn:hover a {
  transform: scale(1.05);
}

footer {
  padding: 5rem 7.5%;
  background: #293D59;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 65%;
}
footer .footer__content .left .title {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 100px;
  margin-bottom: 1rem;
}
footer .footer__content .left .title img {
  height: 150px;
  border-radius: 15px;
}
footer .footer__content .left .title p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
  margin-top: 1rem;
}
footer .footer__content .left .socials {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  padding-left: 35px;
}
footer .footer__content .left .socials a {
  height: 41px;
  width: 41px;
  background: #DA3332;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__content .left .socials a svg {
  color: #fff;
  height: 25px;
  width: 25px;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  color: #fff;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #DA3332;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left {
    width: 60%;
  }
  footer .footer__content .left .title {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .footer__content .left .title img {
    height: 100px;
  }
  footer .footer__content .left .title p {
    font-size: 0.85em;
  }
  footer .footer__content .left .socials a {
    height: 35px;
    width: 35px;
  }
  footer .footer__content .left .socials a svg {
    height: 21px;
    width: 21px;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right h3 {
    font-size: 30px;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left .title {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .footer__content .left .title h2 {
    font-size: 2em;
  }
  footer .footer__content .left .title p {
    font-size: 0.7em;
  }
  footer .footer__content .left .socials {
    padding: 1rem 0 0 0;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    padding: 3rem 7.5%;
  }
  footer .footer__content {
    flex-flow: column;
    row-gap: 3rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
  footer .footer__content .left .title img {
    height: 125px;
  }
  footer .footer__content .left .title p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
  footer .footer__content .right a {
    font-size: 15px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #000;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #000;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #293D59;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(41, 61, 89, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #000;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #000;
  outline: none;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #DA3332;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 500;
}
.contacts .details .link {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts .details .link svg {
  height: 31px;
  width: 31px;
}
.contacts .details .link span {
  font-size: 27px;
}

@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form .h2 {
    margin-bottom: 10px;
  }
  .contacts form p {
    font-size: 13px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}
.benefits2 {
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.benefits2 .h1 {
  color: #000;
  text-align: center;
}
.benefits2 .h2 {
  text-align: center;
}
.benefits2 .h2 span.blue {
  margin: 0;
}
.benefits2 .subheading {
  justify-content: center;
  margin-bottom: 0.5rem;
}
.benefits2 .subheading span {
  color: #000;
}
.benefits2 .heading__desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
  max-width: 80%;
  margin: 0.5rem 0;
}
.benefits2 .benefits__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 1.5rem;
  width: 100%;
}
.benefits2 .benefits__content.four {
  grid-template-columns: repeat(4, 1fr);
}
.benefits2 .benefits__content.two {
  grid-template-columns: 1fr 1fr;
}
.benefits2 .benefits__content .item {
  padding: 1.5rem;
  background: #293D59;
  border-radius: 25px;
  transition: 0.25s ease;
}
.benefits2 .benefits__content .item:hover {
  transform: scale(1.025);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}
.benefits2 .benefits__content .item .icon {
  height: 51px;
  width: 51px;
}
.benefits2 .benefits__content .item h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.benefits2 .benefits__content .item p {
  font-size: 0.9em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
}
.benefits2 .benefits__content .item ul {
  padding-left: 20px;
  margin-top: 0.5rem;
}
.benefits2 .benefits__content .item ul li {
  font-size: 0.85em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0;
}
.benefits2 .benefits__content .item .btn {
  margin-top: 0.5rem;
}
.benefits2 .btn {
  margin-top: 3rem;
}
.benefits2 .btn a {
  font-size: 1.25em;
}

@media only screen and (max-width: 1500px) {
  .benefits2 .benefits__content .item .item__heading h3 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 1300px) {
  .benefits2 .heading__desc {
    font-size: 14px;
  }
  .benefits2 .benefits__content.four {
    grid-template-columns: 1fr 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    grid-template-columns: 45px 1fr;
  }
  .benefits2 .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.35em;
  }
  .benefits2 .benefits__content .item p {
    font-size: 0.75em;
  }
  .benefits2 .benefits__content .item ul li {
    font-size: 0.75em;
  }
  .benefits2 .btn {
    margin-top: 2rem;
  }
  .benefits2 .btn a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits2 {
    padding: 3.5rem 10% 2.5rem;
  }
  .benefits2 .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    grid-template-columns: 39px 1fr;
  }
  .benefits2 .benefits__content .item .item__heading .icon {
    height: 39px;
    width: 39px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.25em;
  }
  .benefits2 .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits {
    padding: 3.5rem 10% 2.5rem;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content.two {
    grid-template-columns: 1fr;
  }
  .benefits .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  .benefits2 {
    padding: 0 10% 2.5rem;
  }
  .benefits2 .heading__desc {
    font-size: 12px;
    max-width: 100%;
  }
  .benefits2 .benefits__content {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .benefits2 .benefits__content.four {
    grid-template-columns: 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    min-height: none;
  }
  .benefits2 .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.2em;
  }
  .benefits2 .benefits__content .item p, .benefits2 .benefits__content .item ul li {
    font-size: 0.9em;
  }
  .benefits2 .btn {
    margin-top: 1.5rem;
  }
  .benefits2 .btn a {
    font-size: 0.9em;
  }
}
.hero {
  position: relative;
  height: 650px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 61, 89, 0.75);
}
.hero .bg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .bg video source {
  height: 100%;
  width: 100%;
}
.hero .text {
  position: absolute;
  left: 5vw;
  bottom: 75px;
  width: 45vw;
}
.hero .text h1 {
  font-size: 80px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2%;
}
.hero .text p {
  font-size: 20px;
  color: #fff;
  line-height: 1.5em;
  font-weight: 300;
}
.hero .text .buttons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
}
.hero .text .buttons .btn a {
  font-size: 24px;
}

.benefits {
  padding: 5rem 5%;
  background: #F3EFE5;
  border-top-left-radius: 25px;
  position: relative;
  z-index: 2;
}
.benefits h3 {
  font-size: 40px;
}
.benefits .subheading {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.benefits .benefits__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 2.5rem;
}
.benefits .benefits__content .item {
  background: #293D59;
  border-radius: 20px;
  padding: 30px;
}
.benefits .benefits__content .item .item__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 5px;
}
.benefits .benefits__content .item .item__heading .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits .benefits__content .item .item__heading .icon img {
  height: 41px;
  width: 41px;
}
.benefits .benefits__content .item .item__heading h4 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.benefits .benefits__content .item p {
  font-size: 16px;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.video__section {
  width: 100vw;
  height: 50vw;
  padding: 5rem 0;
  margin: 0 auto;
}
.video__section iframe {
  height: 100%;
  width: 100%;
  border: none;
}

.parallax-background {
  height: 500px;
  width: 89.35vw;
  margin: 0 auto;
  background-image: url("../../img/byt2/vizualizace/byt2_3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.jarallax__parent {
  padding: 0 5%;
}

.jarallax {
  position: relative;
  z-index: 0;
  height: 600px;
  margin: 0 auto;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.offer {
  padding: 5rem 5%;
}
.offer .title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 150px;
}
.offer .title p {
  margin-bottom: 1rem;
}
.offer .title .btn a {
  font-size: 20px;
}
.offer .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
.offer .navigation .property__parent {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0;
  position: relative;
}
.offer .navigation .property__parent .property {
  padding: 20px;
  background: #DA3332;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  margin-left: 25px;
  width: 225px;
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(25px, -40%);
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
}
.offer .navigation .property__parent .property.active {
  z-index: 2;
  opacity: 1;
  transform: translate(0, -50%);
}
.offer .navigation .property__parent .property span {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.offer .navigation .buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.offer .navigation .buttons button {
  height: 51px;
  width: 51px;
  border: none;
  border-radius: 50%;
  background: #c7c7c7;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DA3332;
  transition: 0.25s ease;
  cursor: pointer;
}
.offer .navigation .buttons button:hover {
  transform: scale(1.05);
}
.offer .navigation .buttons button svg {
  height: 31px;
  width: 31px;
  color: #fff;
}
.offer .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.offer .content .big__image {
  width: 100%;
  height: 50rem;
  position: relative;
}
.offer .content .big__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer .content .big__image .property__info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 2;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding: 35px;
}
.offer .content .big__image .property__info .info__heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.offer .content .big__image .property__info .info__heading .price {
  font-size: 50px;
  color: #293D59;
  font-weight: 700;
}
.offer .content .big__image .property__info .info__heading .arrow {
  height: 51px;
  width: 51px;
  background: #DA3332;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  outline: 2px solid transparent;
  transition: 0.25s ease;
}
.offer .content .big__image .property__info .info__heading .arrow:hover {
  outline: 2px solid #DA3332;
}
.offer .content .big__image .property__info .info__heading .arrow svg {
  height: 31px;
  width: 31px;
  color: #fff;
}
.offer .content .big__image .property__info .details {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-top: 1.5rem;
}
.offer .content .big__image .property__info .details span {
  font-size: 20px;
}
.offer .content .big__image .property__info .details .details__content {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
.offer .content .big__image .property__info .details .details__content .item {
  position: relative;
  font-size: 20px;
  padding: 0 20px;
  height: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000;
}
.offer .content .big__image .property__info .details .details__content .item:last-child {
  padding: 0 0 0 20px;
  border: none;
}
.offer .content .big__image .property__info .details .details__content .item sup {
  font-size: 0.5em;
}
.offer .content .images__right {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-flow: column;
  gap: 25px;
  height: 50rem;
}
.offer .content .images__right .top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
  height: calc(25rem - 12px);
}
.offer .content .images__right .top .item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.offer .content .images__right .top .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer .content .images__right .bottom__img {
  height: calc(25rem - 12px);
  width: 100%;
}
.offer .content .images__right .bottom__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offer__3d {
  padding: 5rem 5%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.offer__3d .house__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer__3d .house__map .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.offer__3d .house__map .content .flat__1, .offer__3d .house__map .content .flat__2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  background: rgba(41, 61, 89, 0.4);
  z-index: 2;
  transition: 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}
.offer__3d .house__map .content .flat__1 .flat__number, .offer__3d .house__map .content .flat__2 .flat__number {
  font-size: 60px;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 2px white;
  font-weight: 900;
}
.offer__3d .house__map .content .flat__1:hover, .offer__3d .house__map .content .flat__1.active, .offer__3d .house__map .content .flat__2:hover, .offer__3d .house__map .content .flat__2.active {
  background: rgba(41, 61, 89, 0.85);
}
.offer__3d .house__map .content .flat__1:hover .card, .offer__3d .house__map .content .flat__1.active .card, .offer__3d .house__map .content .flat__2:hover .card, .offer__3d .house__map .content .flat__2.active .card {
  opacity: 1;
  visibility: visible;
}
.offer__3d .house__map .content .flat__1 {
  position: absolute;
  height: 6vw;
  width: 14.5vw;
  left: 18.5vw;
}
.offer__3d .house__map .content .flat__2 {
  position: absolute;
  height: 6vw;
  left: calc(33vw - 2px);
  width: 13.25vw;
}
.offer__3d .house__map .content #flat_1_1 {
  bottom: 20.75%;
}
.offer__3d .house__map .content #flat_1_2 {
  bottom: 20.75%;
}
.offer__3d .house__map .content #flat_2_1 {
  bottom: calc(20.75% + 6vw - 2px);
}
.offer__3d .house__map .content #flat_2_2 {
  bottom: calc(20.75% + 6vw - 2px);
}
.offer__3d .house__map .content #flat_3_1 {
  bottom: calc(20.75% + 12vw - 4px);
  height: 6.25vw;
}
.offer__3d .house__map .content #flat_3_2 {
  bottom: calc(20.75% + 12vw - 4px);
  height: 6.25vw;
}
.offer__3d .house__map .content #flat_4_1 {
  bottom: calc(20.75% + 12vw + 6.25vw - 6px);
  height: 6.25vw;
}
.offer__3d .house__map .content #flat_4_2 {
  bottom: calc(20.75% + 12vw + 6.25vw - 6px);
  height: 6.25vw;
}
.offer__3d .house__map .content #flat_5_1 {
  bottom: calc(20.75% + 12vw + 12.5vw - 8px);
  height: 6.5vw;
}
.offer__3d .house__map .content #flat_5_2 {
  bottom: calc(20.75% + 12vw + 12.5vw - 8px);
  height: 6.5vw;
}
.offer__3d .cards {
  width: 100%;
  height: 100%;
  position: relative;
}
.offer__3d .cards::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 61, 89, 0.75);
  z-index: 2;
}
.offer__3d .cards img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer__3d .cards .card {
  position: absolute;
  top: 35px;
  right: 35px;
  bottom: 35px;
  left: 35px;
  z-index: 3;
  background: #293D59;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}
.offer__3d .cards .card .h2 {
  color: #fff;
  font-size: 60px;
}
.offer__3d .cards .card .status {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #DA3332;
  padding: 10px 50px;
  text-align: center;
  margin-top: 1rem;
}
.offer__3d .cards .card .params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  margin-top: 50px;
}
.offer__3d .cards .card .params .item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.offer__3d .cards .card .params .item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.offer__3d .cards .card .params .item h3 {
  font-size: 35px;
  color: #fff;
}
.offer__3d .cards .card .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 3rem;
  width: 100%;
}
.offer__3d .cards .card .buttons .btn a {
  font-size: 20px;
}
.offer__3d .cards .card .btn {
  display: none;
}

.area {
  padding: 5rem 0 0;
  background: #EAE5DB;
  position: relative;
  overflow: hidden;
}
.area .title {
  display: grid;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 0 20%;
}
.area .title .h2 {
  text-align: center;
}
.area .title p {
  margin: 1rem 0;
  text-align: center;
}
.area .title .btn {
  display: flex;
  margin: 0 auto;
}
.area .title .btn a {
  font-size: 20px;
}
.area .video {
  width: 100vw;
  margin-top: 2rem;
  position: relative;
}
.area .video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 62px;
  width: 100%;
  background: #EAE5DB;
}

.history {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}
.history .years {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: row nowrap;
  margin-top: 50px;
  transition: 0.5s ease;
}
.history .years .item {
  padding-top: 0.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.25);
  padding-right: 20vw;
  position: relative;
  transition: 0.5s ease;
}
.history .years .item span {
  letter-spacing: -3px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 70px;
  display: block;
  cursor: pointer;
  white-space: nowrap;
}
.history .years .item span:hover {
  color: #000;
}
.history .years .item span:hover::before {
  opacity: 1;
}
.history .years .item span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(calc(-50% - 10vw), -50%);
  height: 21px;
  width: 21px;
  border-radius: 50%;
  background: #DA3332;
  opacity: 0;
  transition: 0.5s ease;
}
.history .years .item.active span {
  color: #000;
}
.history .years .item.active span::before {
  opacity: 1;
}
.history .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
  margin-top: 4rem;
}
.history .content .image {
  width: 100%;
}
.history .content .image img {
  width: 100%;
}
.history .content .text {
  padding-right: 15%;
}
.history .content .text h3 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 15px;
}
.history .content .text p {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 7px;
  line-height: 1.5em;
}

.team {
  padding: 5rem 5%;
  background: #293D59;
}
.team h2.h2 {
  text-align: center;
  color: #fff;
}
.team h2.h2 .blue {
  color: #fff;
}
.team .team__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.team .team__content .item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  width: 100%;
  position: relative;
}
.team .team__content .item::after {
  content: "";
  position: absolute;
  top: 200px;
  transform: translateY(-50%);
  right: 0;
  height: 125px;
  width: 3px;
  background: #DA3332;
}
.team .team__content .item:last-child::after {
  content: none;
}
.team .team__content .item img {
  height: 400px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.team .team__content .item h3 {
  font-size: 28px;
  margin-top: 1rem;
  text-transform: uppercase;
  color: #fff;
}
.team .team__content .item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  width: 80%;
  margin-bottom: 10px;
}
.team .team__content .item span {
  font-size: 15px;
  color: #fff;
  padding: 0 10%;
  text-align: center;
  line-height: 1.5em;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background-color: #293D59;
  color: #fff;
  font-size: 120px;
  font-weight: bold;
  padding: 2.5rem 0;
}
.marquee .marquee__inner {
  display: inline-flex;
  animation: scroll 25s linear infinite;
  min-width: 200%;
}
.marquee .marquee__inner span {
  display: inline-block;
}
.marquee .marquee__inner span .red {
  color: #DA3332;
  font-weight: 200;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.standards {
  padding: 5rem 10%;
}
.standards .title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.standards .title .btn {
  margin-top: 10px;
}
.standards .title .btn a {
  font-size: 20px;
}
.standards .title .buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.standards .title .buttons button {
  height: 51px;
  width: 51px;
  border: none;
  border-radius: 50%;
  background: #c7c7c7;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DA3332;
  transition: 0.25s ease;
  cursor: pointer;
}
.standards .title .buttons button:hover {
  transform: scale(1.05);
}
.standards .title .buttons button svg {
  height: 31px;
  width: 31px;
  color: #fff;
}
.standards .standards__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 2.5rem;
  transition: 0.25s ease;
}
.standards .standards__content .image {
  width: 100%;
}
.standards .standards__content .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.standards .standards__content .text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
.standards .standards__content .text h3 {
  font-size: 45px;
}

.swiper {
  width: 100%;
  margin: 5rem auto;
  max-width: 90vw;
}
.swiper .swiper-slide {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
}
.swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fff;
  background: #293D59;
  height: 51px;
  width: 51px;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  font-size: 20px;
}

.text__image {
  padding: 7.5rem 5% 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  background: #EAE5DB;
}
.text__image.mirror {
  background: none;
}
.text__image.mirror .text {
  order: 1;
  padding: 0;
  padding-left: 10%;
}
.text__image.mirror .images {
  order: 2;
}
.text__image.mirror .images img {
  right: initial;
  left: 0;
}
.text__image.mirror .images img:nth-child(2) {
  right: inherit;
  left: 30px;
  transform: rotate(2.5deg);
}
.text__image.mirror .images img:nth-child(3) {
  right: inherit;
  left: 60px;
  transform: rotate(5deg);
}
.text__image .images {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
.text__image .images img {
  width: 600px;
  position: absolute;
  top: 0;
  right: 0;
}
.text__image .images img:nth-child(2) {
  top: 30px;
  right: 30px;
  z-index: 2;
  transform: rotate(-2.5deg);
}
.text__image .images img:nth-child(3) {
  top: 60px;
  right: 60px;
  z-index: 3;
  transform: rotate(-5deg);
}
.text__image .text {
  padding-right: 10%;
}
.text__image .text .p {
  margin: 1.5rem 0 3rem;
}
.text__image .text .btn a {
  font-size: 23px;
}

.contracts {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 3rem 5%;
}
.contracts .item {
  background: #293D59;
  border-radius: 20px;
  padding: 75px 30px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
}
.contracts .item .item__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 5px;
}
.contracts .item .item__heading h4 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  z-index: 2;
  line-height: 1em;
}
.contracts .item .item__heading .number {
  font-size: 200px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0.7em;
  filter: blur(1px);
}
.contracts .item .btn {
  margin-top: 2.5rem;
  z-index: 2;
}
.contracts .item .btn a {
  font-size: 18px;
}
.contracts .item .btn a svg {
  height: 23px;
  width: 23px;
}

@media only screen and (max-width: 1550px) {
  .hero {
    height: 650px;
  }
  .hero .text h1 {
    font-size: 65px;
  }
  .hero .text p {
    font-size: 18px;
  }
  .hero .text .buttons .btn a {
    font-size: 22px;
  }
  .hero .benefits h3 {
    font-size: 35px;
  }
  .hero .benefits .subheading {
    font-size: 16px;
  }
  .hero .benefits .benefits__content .item .item__heading .icon {
    height: 23px;
    width: 23px;
  }
  .hero .benefits .benefits__content .item .item__heading .icon img {
    height: 13px;
    width: 13px;
  }
  .hero .benefits .benefits__content .item .item__heading h4 {
    font-size: 17px;
  }
  .hero .benefits .benefits__content .item p {
    font-size: 12px;
  }
  .offer .navigation .property span {
    font-size: 25px;
  }
  .offer .navigation .buttons button {
    height: 43px;
    width: 43px;
  }
  .offer .content .big__image {
    height: 40rem;
  }
  .offer .content .big__image .property__info .info__heading .price {
    font-size: 40px;
  }
  .offer .content .big__image .property__info .info__heading .arrow {
    height: 43px;
    width: 43px;
  }
  .offer .content .big__image .property__info .info__heading .arrow svg {
    height: 27px;
    width: 27px;
  }
  .offer .content .big__image .property__info .details span {
    font-size: 17px;
  }
  .offer .content .big__image .property__info .details .details__content .item {
    font-size: 17px;
    padding: 0 15px;
  }
  .offer .content .big__image .property__info .details .details__content .item:last-child {
    padding: 0 15px;
  }
  .offer .content .images__right {
    height: 40rem;
  }
  .offer .content .images__right .top {
    height: calc(20rem - 12px);
  }
  .offer .content .images__right .bottom__img {
    height: calc(20rem - 12px);
  }
  .history .years .item span {
    font-size: 60px;
  }
  .history .content .text h3 {
    font-size: 45px;
  }
  .history .content .text p {
    font-size: 17px;
  }
  .team .team__content .item::after {
    top: 166px;
  }
  .team .team__content .item img {
    height: 333.33px;
    width: 250px;
  }
  .text__image .images img {
    width: 450px;
  }
  .text__image .text .p {
    margin: 1.25rem 0 2.5rem;
  }
  .text__image .text .btn a {
    font-size: 20px;
  }
  .offer__3d .cards .card .h2 {
    font-size: 50px;
  }
  .offer__3d .cards .card .status {
    font-size: 16px;
  }
  .offer__3d .cards .card .params {
    gap: 35px;
  }
  .offer__3d .cards .card .params .item h4 {
    font-size: 16px;
  }
  .offer__3d .cards .card .params .item h3 {
    font-size: 28px;
  }
  .contracts .item .item__heading .number {
    font-size: 150px;
    top: 100px;
  }
  .contracts .item .item__heading h4 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    height: 450px;
  }
  .hero .text {
    left: 50px;
    bottom: 50px;
  }
  .hero .text h1 {
    font-size: 45px;
  }
  .hero .text p {
    font-size: 15px;
  }
  .hero .text .buttons {
    margin-top: 1rem;
  }
  .hero .text .buttons .btn a {
    font-size: 18px;
  }
  .benefits {
    padding: 3.5rem 5%;
  }
  .benefits h3 {
    font-size: 25px;
  }
  .benefits .subheading {
    font-size: 14px;
  }
  .benefits .benefits__content {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content .item {
    padding: 20px;
  }
  .benefits .benefits__content .item .item__heading {
    gap: 10px;
  }
  .benefits .benefits__content .item .item__heading .icon img {
    height: 35px;
    width: 35px;
  }
  .benefits .benefits__content .item .item__heading h4 {
    font-size: 27px;
  }
  .benefits .benefits__content .item p {
    font-size: 14px;
  }
  .parallax-background {
    height: 400px;
  }
  .offer {
    padding: 3.5rem 5%;
  }
  .offer .title {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .offer .title .btn a {
    font-size: 18px;
  }
  .offer .navigation .property__parent .property {
    padding: 15px 50px;
    width: 175px;
  }
  .offer .navigation .property__parent .property span {
    font-size: 22px;
  }
  .offer .navigation .buttons button {
    height: 37px;
    width: 37px;
  }
  .offer .navigation .buttons button svg {
    height: 25px;
    width: 25px;
  }
  .offer .content .big__image {
    height: 35rem;
  }
  .offer .content .big__image .property__info {
    left: 20px;
    bottom: 20px;
    right: 20px;
    padding: 25px;
  }
  .offer .content .big__image .property__info .info__heading .price {
    font-size: 30px;
  }
  .offer .content .big__image .property__info .info__heading .arrow {
    height: 37px;
    width: 37px;
  }
  .offer .content .big__image .property__info .info__heading .arrow svg {
    height: 25px;
    width: 25px;
  }
  .offer .content .big__image .property__info .details {
    flex-flow: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  .offer .content .big__image .property__info .details span {
    font-size: 16px;
  }
  .offer .content .big__image .property__info .details span br {
    display: none;
  }
  .offer .content .big__image .property__info .details .details__content .item {
    font-size: 16px;
  }
  .offer .content .images__right {
    height: 35rem;
  }
  .offer .content .images__right .top {
    height: calc(17.5rem - 12px);
  }
  .offer .content .images__right .bottom__img {
    height: calc(17.5rem - 12px);
  }
  .offer__3d .house__map .content .flat__1 .flat__number, .offer__3d .house__map .content .flat__2 .flat__number {
    font-size: 40px;
  }
  .offer__3d .house__map .content #flat_1_1 {
    bottom: 25%;
  }
  .offer__3d .house__map .content #flat_1_2 {
    bottom: 25%;
  }
  .offer__3d .house__map .content #flat_2_1 {
    bottom: calc(25% + 6vw - 2px);
  }
  .offer__3d .house__map .content #flat_2_2 {
    bottom: calc(25% + 6vw - 2px);
  }
  .offer__3d .house__map .content #flat_3_1 {
    bottom: calc(25% + 12vw - 4px);
    height: 6.25vw;
  }
  .offer__3d .house__map .content #flat_3_2 {
    bottom: calc(25% + 12vw - 4px);
    height: 6.25vw;
  }
  .offer__3d .house__map .content #flat_4_1 {
    bottom: calc(25% + 12vw + 6.25vw - 6px);
    height: 6.25vw;
  }
  .offer__3d .house__map .content #flat_4_2 {
    bottom: calc(25% + 12vw + 6.25vw - 6px);
    height: 6.25vw;
  }
  .offer__3d .house__map .content #flat_5_1 {
    bottom: calc(25% + 12vw + 12.5vw - 8px);
    height: 6.5vw;
  }
  .offer__3d .house__map .content #flat_5_2 {
    bottom: calc(25% + 12vw + 12.5vw - 8px);
    height: 6.5vw;
  }
  .offer__3d .cards .card {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }
  .offer__3d .cards .card .h2 {
    font-size: 40px;
  }
  .offer__3d .cards .card .status {
    font-size: 14px;
    padding: 10px 35px;
    margin-top: 0.5rem;
  }
  .offer__3d .cards .card .params {
    margin-top: 25px;
    gap: 25px;
  }
  .offer__3d .cards .card .params .item h4 {
    font-size: 15px;
  }
  .offer__3d .cards .card .params .item h3 {
    font-size: 25px;
  }
  .area {
    padding: 3.5rem 0 0;
  }
  .area .title {
    grid-template-columns: 1fr;
  }
  .area .title .btn a {
    font-size: 18px;
  }
  .history {
    padding: 3.5rem 5%;
  }
  .history .years .item span {
    font-size: 45px;
  }
  .history .content .text h3 {
    font-size: 30px;
  }
  .history .content .text p {
    font-size: 15px;
  }
  .team {
    padding: 3.5rem 5%;
  }
  .team .team__content .item::after {
    top: 100px;
    height: 100px;
  }
  .team .team__content .item img {
    height: 266.66666667px;
    width: 200px;
  }
  .team .team__content .item h3 {
    font-size: 25px;
  }
  .team .team__content .item p {
    font-size: 14px;
  }
  .team .team__content .item span {
    font-size: 13px;
    padding: 0 5%;
  }
  .marquee {
    font-size: 75px;
  }
  .standards .title .btn a {
    font-size: 18px;
  }
  .standards .title .buttons button {
    height: 37px;
    width: 37px;
  }
  .standards .title .buttons button svg {
    height: 25px;
    width: 25px;
  }
  .standards .standards__content {
    gap: 50px;
  }
  .standards .standards__content .text h3 {
    font-size: 37px;
  }
  .text__image {
    padding: 3.5rem 5%;
    gap: 50px;
  }
  .text__image .images img {
    width: 300px;
  }
  .text__image .text .p {
    margin: 1rem 0 1.5rem;
  }
  .text__image .text .btn a {
    font-size: 18px;
  }
  .contracts {
    gap: 15px;
  }
  .contracts .item {
    padding: 50px 25px;
  }
  .contracts .item .item__heading h4 {
    font-size: 23px;
  }
  .contracts .item .item__heading .number {
    font-size: 105px;
    top: 75px;
  }
  .contracts .item .btn {
    margin-top: 1.5rem;
  }
  .contracts .item .btn a {
    font-size: 15px;
  }
  .contracts .item .btn a svg {
    height: 19px;
    width: 19px;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    height: 400px;
  }
  .hero .text h1 {
    font-size: 35px;
  }
  .hero .text p {
    font-size: 14px;
  }
  .hero .text .buttons {
    margin-top: 1rem;
  }
  .hero .text .buttons .btn a {
    font-size: 16px;
  }
  .benefits {
    padding: 2.5rem 5%;
  }
  .benefits .benefits__content {
    gap: 15px;
  }
  .benefits .benefits__content .item .item__heading .icon img {
    height: 31px;
    width: 31px;
  }
  .benefits .benefits__content .item .item__heading h4 {
    font-size: 23px;
  }
  .benefits .benefits__content .item p {
    font-size: 13px;
  }
  .video__section {
    height: 70vh;
  }
  .offer {
    padding: 3rem 5%;
  }
  .offer .title .btn a {
    font-size: 16px;
  }
  .offer .navigation .property__parent .property {
    padding: 12px 50px;
    transform: translate(25px, -25%);
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
  }
  .offer .navigation .property__parent .property.active {
    transform: translate(0, -35%);
  }
  .offer .navigation .property__parent .property span {
    font-size: 15px;
  }
  .offer .navigation .property__parent .buttons button {
    height: 35px;
    width: 35px;
  }
  .offer .navigation .property__parent .buttons button svg {
    height: 19px;
    width: 19px;
  }
  .offer .content .big__image {
    height: 25rem;
  }
  .offer .content .big__image .property__info {
    left: 10px;
    bottom: 10px;
    right: 10px;
    padding: 15px;
  }
  .offer .content .big__image .property__info .info__heading .price {
    font-size: 23px;
  }
  .offer .content .big__image .property__info .info__heading .arrow {
    height: 35px;
    width: 35px;
  }
  .offer .content .big__image .property__info .info__heading .arrow svg {
    height: 19px;
    width: 19px;
  }
  .offer .content .images__right {
    height: 25rem;
  }
  .offer .content .images__right .top {
    height: calc(12.5rem - 12px);
  }
  .offer .content .images__right .bottom__img {
    height: calc(12.5rem - 12px);
  }
  .offer__3d .cards .card .h2 {
    font-size: 35px;
  }
  .offer__3d .cards .card .status {
    font-size: 13px;
    padding: 7px 25px;
  }
  .offer__3d .cards .card .params {
    margin-top: 10px;
    gap: 15px;
  }
  .offer__3d .cards .card .params .item h4 {
    font-size: 13px;
  }
  .offer__3d .cards .card .params .item h3 {
    font-size: 22px;
  }
  .parallax-background {
    height: 300px;
  }
  .area {
    padding: 2rem 0 0;
  }
  .area .title .btn a {
    font-size: 16px;
  }
  .history {
    padding: 2rem 5%;
  }
  .history .years .item span {
    font-size: 40px;
  }
  .history .content .text h3 {
    font-size: 25px;
  }
  .history .content .text p {
    font-size: 14px;
  }
  .team {
    padding: 2rem 5%;
  }
  .team .team__content {
    grid-template-columns: 1fr;
  }
  .team .team__content .item {
    padding: 1.5rem 0;
  }
  .team .team__content .item:first-child {
    padding-top: 0;
  }
  .team .team__content .item::after {
    right: initial;
    top: initial;
    bottom: 0;
    transform: none;
    height: 2px;
    width: 50vw;
  }
  .team .team__content .item img {
    height: 200px;
    width: 150px;
  }
  .team .team__content .item h3 {
    font-size: 25px;
    margin-top: 0.5rem;
  }
  .team .team__content .item p {
    font-size: 16px;
  }
  .team .team__content .item span {
    max-width: 600px;
  }
  .marquee {
    font-size: 55px;
  }
  .standards .title .btn a {
    font-size: 16px;
  }
  .standards .title .buttons button {
    height: 35px;
    width: 35px;
  }
  .standards .title .buttons button svg {
    height: 19px;
    width: 19px;
  }
  .standards .standards__content {
    gap: 50px;
  }
  .standards .standards__content .text h3 {
    font-size: 27px;
  }
  .text__image .images img {
    width: 250px;
    border-radius: 15px;
  }
  .text__image .text .p {
    margin: 0.5rem 0 1rem;
  }
  .text__image .text .btn a {
    font-size: 16px;
  }
  .contracts {
    gap: 15px;
  }
  .contracts .item {
    padding: 35px 15px;
  }
  .contracts .item .item__heading .number {
    font-size: 90px;
    top: 55px;
  }
  .contracts .item .item__heading h4 {
    font-size: 18px;
  }
  .contracts .item .btn a {
    font-size: 15px;
  }
  .contracts .item .btn a svg {
    height: 19px;
    width: 19px;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    height: 400px;
  }
  .hero .text {
    width: calc(100% - 50px);
    bottom: 25px;
    left: 25px;
    padding: 30px 20px 20px;
  }
  .hero .text h1 {
    font-size: 30px;
  }
  .hero .text p {
    font-size: 12px;
  }
  .hero .text .buttons .btn a {
    font-size: 14px;
  }
  .benefits .subheading {
    margin-top: 0.5rem;
    font-size: 14px;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr;
  }
  .benefits .benefits__content .item .item__heading .icon img {
    height: 27px;
    width: 27px;
  }
  .benefits .benefits__content .item .item__heading h4 {
    font-size: 21px;
  }
  .benefits .benefits__content .item p {
    font-size: 12px;
  }
  .offer .title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offer .title .btn a {
    font-size: 14px;
  }
  .offer .navigation .property__parent .property {
    padding: 10px 40px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    height: 45px;
    width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(15px, -35%);
  }
  .offer .navigation .property__parent .property.active {
    transform: translate(0, -45%);
  }
  .offer .navigation .property__parent .property span {
    font-size: 16px;
  }
  .offer .content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .offer .content .big__image .property__info .info__heading .price {
    font-size: 25px;
  }
  .offer .content .images__right {
    gap: 15px;
  }
  .offer .content .images__right .top {
    gap: 15px;
    height: calc(12.5rem - 7px);
  }
  .offer .content .images__right .bottom__img {
    height: calc(12.5rem - 7px);
  }
  .parallax-background {
    height: 200px;
  }
  .area .title {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
  .area .title p {
    margin: 0.5rem 0 1rem;
  }
  .area .title .btn a {
    font-size: 14px;
  }
  .history .years .item span {
    font-size: 30px;
  }
  .history .years .item span::before {
    height: 17px;
    width: 17px;
  }
  .history .content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .history .content .image {
    order: 2;
  }
  .team .team__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .team .team__content .item {
    padding: 1.5rem 0;
  }
  .team .team__content .item:first-child {
    padding-top: 0;
  }
  .team .team__content .item::after {
    right: initial;
    top: initial;
    bottom: 0;
    transform: none;
    height: 2px;
    width: 50vw;
  }
  .team .team__content .item h3 {
    font-size: 20px;
  }
  .marquee {
    font-size: 30px;
  }
  .standards {
    padding: 2.5rem 10%;
  }
  .standards .title {
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
  .standards .title .btn a {
    font-size: 13px;
  }
  .standards .title .buttons button {
    height: 35px;
    width: 35px;
  }
  .standards .title .buttons button svg {
    height: 19px;
    width: 19px;
  }
  .standards .standards__content {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .standards .standards__content .image {
    order: 2;
  }
  .standards .standards__content .text {
    gap: 10px;
  }
  .standards .standards__content .text h3 {
    font-size: 23px;
  }
  .text__image {
    grid-template-columns: 1fr;
  }
  .text__image.mirror .images img {
    left: initial;
    top: 0;
    right: 0;
  }
  .text__image.mirror .images img:nth-child(2) {
    top: 30px;
    right: 30px;
    left: initial;
    z-index: 2;
    transform: rotate(-2.5deg);
  }
  .text__image.mirror .images img:nth-child(3) {
    top: 60px;
    left: initial;
    right: 60px;
    z-index: 3;
    transform: rotate(-5deg);
  }
  .text__image .images {
    position: relative;
    height: 200px;
    order: 2;
  }
  .contracts {
    grid-template-columns: 1fr;
  }
  .contracts .item {
    padding: 35px 25px;
  }
  .contracts .item .item__heading .number {
    font-size: 100px;
    top: 60px;
  }
  .contracts .item .item__heading h4 {
    font-size: 23px;
  }
  .contracts .item .btn a {
    font-size: 13px;
  }
  .contracts .item .btn a svg {
    height: 17px;
    width: 17px;
  }
  .offer__3d {
    grid-template-columns: 1fr;
  }
  .offer__3d .house__map {
    position: relative;
  }
  .offer__3d .house__map .content .flat__1 {
    position: absolute;
    height: 13vw;
    width: 30vw;
    left: 25vw;
  }
  .offer__3d .house__map .content .flat__2 {
    position: absolute;
    height: 13vw;
    left: calc(55vw - 2px);
    width: 30vw;
  }
  .offer__3d .house__map .content #flat_1_1 {
    bottom: 16%;
  }
  .offer__3d .house__map .content #flat_1_2 {
    bottom: 16%;
  }
  .offer__3d .house__map .content #flat_2_1 {
    bottom: calc(16% + 13vw - 2px);
  }
  .offer__3d .house__map .content #flat_2_2 {
    bottom: calc(16% + 13vw - 2px);
  }
  .offer__3d .house__map .content #flat_3_1 {
    bottom: calc(16% + 26vw - 4px);
    height: 13vw;
  }
  .offer__3d .house__map .content #flat_3_2 {
    bottom: calc(16% + 26vw - 4px);
    height: 13vw;
  }
  .offer__3d .house__map .content #flat_4_1 {
    bottom: calc(16% + 26vw + 13vw - 6px);
    height: 13vw;
  }
  .offer__3d .house__map .content #flat_4_2 {
    bottom: calc(16% + 26vw + 13vw - 6px);
    height: 13vw;
  }
  .offer__3d .house__map .content #flat_5_1 {
    bottom: calc(16% + 26vw + 26vw - 8px);
    height: 13vw;
  }
  .offer__3d .house__map .content #flat_5_2 {
    bottom: calc(16% + 26vw + 26vw - 8px);
    height: 13vw;
  }
  .offer__3d .cards {
    height: 350px;
  }
  .offer__3d .cards .card {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
  .offer__3d .cards .card .status {
    font-size: 13px;
    padding: 5px 25px;
    margin-top: 10px;
  }
  .offer__3d .cards .card .params {
    gap: 10px;
    margin-top: 10px;
  }
  .offer__3d .cards .card .params .item h4 {
    font-size: 14px;
  }
  .offer__3d .cards .card .params .item h3 {
    font-size: 23px;
  }
  .offer__3d .cards .card .btn {
    display: flex;
  }
  .swiper {
    margin: 3.5rem 0;
  }
}/*# sourceMappingURL=style.css.map */