/*@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/CenturyGothic-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}*/

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/*@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/CenturyGothic-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}
*/

/*@font-face {
	font-family: 'Calibri';
	src: url('../fonts/Calibri Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}
*/
@font-face {
  font-family: "Calibri Bold";
  src: url("../fonts/Calibri Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/*
@font-face {
	font-family: 'Calibri';
	src: url('../fonts/Calibri Bold Italic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}
*/
@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");

#overlayer {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 1;
  background: #4a4a4a;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 3;
  border: 4px solid #fff;
  top: 50%;
  left: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

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

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

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

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/*
div#page {
  overflow-x: hidden;
}
*/

.animation-element {
  opacity: 0;
  position: relative;
}
.animation-element.slide-left {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  animation-delay: 1s;
  transition-duration: opacity 0.4s ease-in-out;
  -moz-transform: translate3d(-150px, 0px, 0px);
  -webkit-transform: translate3d(-150px, 0px, 0px);
  -o-transform: translate(-150px, 0px);
  -ms-transform: translate(-150px, 0px);
  transform: translate3d(-150px, 0px, 0px);
}

.animation-element.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  animation-delay: 0.75s;
  transition-duration: opacity 0.4s ease-in-out;
  -moz-transform: translate3d(150px, 0px, 0px);
  -webkit-transform: translate3d(150px, 0px, 0px);
  -o-transform: translate(150px, 0px);
  -ms-transform: translate(150px, 0px);
  transform: translate3d(150px, 0px, 0px);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-up {
  opacity: 0;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.25s;
  transition-duration: opacity 0.3s ease-in-out;
  -moz-transform: translate3d(0px, -150px, 0px);
  -webkit-transform: translate3d(0px, -150px, 0px);
  -o-transform: translate(0px, -150px);
  -ms-transform: translate(0px, -150px);
  transform: translate3d(0px, -150px, 0px);
}

.animation-element.slide-up.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-down {
  opacity: 0;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.6s;
  transition-duration: opacity 0.3s ease-in-out;
  -moz-transform: translate3d(0px, 150px, 0px);
  -webkit-transform: translate3d(0px, 150px, 0px);
  -o-transform: translate(0px, 150px);
  -ms-transform: translate(0px, 150px);
  transform: translate3d(0px, 150px, 0px);
}

.animation-element.slide-down.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-left-child {
}
.animation-element.slide-left-child:nth-child(1) {
  opacity: 0;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.75s;
  transition-duration: opacity 0.3s ease-in-out;
  -moz-transform: translate3d(-150px, 0px, 0px);
  -webkit-transform: translate3d(-150px, 0px, 0px);
  -o-transform: translate(-150px, 0px);
  -ms-transform: translate(-150px, 0px);
  transform: translate3d(-150px, 0px, 0px);
}
.animation-element.slide-left-child:nth-child(2) {
  opacity: 0;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.5s;
  transition-duration: opacity 0.4s ease-in-out;
  -moz-transform: translate3d(-150px, 0px, 0px);
  -webkit-transform: translate3d(-150px, 0px, 0px);
  -o-transform: translate(-150px, 0px);
  -ms-transform: translate(-150px, 0px);
  transform: translate3d(-150px, 0px, 0px);
}
.animation-element.slide-left-child:nth-child(3) {
  opacity: 0;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.6s;
  transition-duration: opacity 0.6s ease-in-out;
  -moz-transform: translate3d(-150px, 0px, 0px);
  -webkit-transform: translate3d(-150px, 0px, 0px);
  -o-transform: translate(-150px, 0px);
  -ms-transform: translate(-150px, 0px);
  transform: translate3d(-150px, 0px, 0px);
}
.animation-element.slide-left-child.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-left-child.in-view:nth-child(1) {
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  animation-delay: 0.4s;
}

header .header {
  width: 1460px;
  margin: 0 auto;
  height: 145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-item .header-phone {
  display: flex;
  flex-direction: column;
  text-align: end;
}
header .header-item .site-title a {
  color: #cc9933;
  text-decoration: none;
  text-align: center;
}
.header-item {
  width: 33%;
  /* width: 20%; */
}
.header-item-new {
  /* margin-left: -100px; */
  position: relative;
  left: -100px;
}
@media (max-width: 1599px) {
  a.header-logo-m7 img {
    width: 90px;
  }
}
@media (max-width: 1299px) {
  .header-item-new {
    left: -50px;
  }
  a.header-logo-m7 img {
    width: 70px;
  }
}
@media (max-width: 959px) {
  .header-item-new {
    display: none;
  }
  .header-item .header-item-new {
    display: block !important;
    margin-right: 20px;
    left: 0;
  }
  .header-item {
    display: flex;
    align-items: center;
    width: 33.333% !important;
  }
  .header-item:nth-child(2) {
    justify-content: flex-start;
  }
  .header-item:nth-child(3) {
    justify-content: center;
  }
  .header-item:nth-child(4) {
    justify-content: flex-end;
  }
  /* .header-item-new2 {
    display: block;
  } */
}
@media (max-width: 510px) {
  .header-item-new2 {
    display: none;
  }
}
header .header-item .site-title h3 a {
  font-size: 58px;
}
header .header-item .header-phone a {
  text-decoration: none;
  font-size: 25px;
}
header .header-item .header-phone a:first-child {
  padding-bottom: 5px;
}
header .header-adress {
  line-height: 1.2;
  font-size: 25px;
  padding-left: 30px;
}
.mobile-phone {
  display: none;
}

.social-item img {
  width: 28px;
}
.wrapper__button-line {
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 42px;
  background: #000;
  margin: 10px 0;
  position: relative;
}
.burger-menu {
  display: flex;
}
.burger-icon {
  display: inline-block;
}
.burger-icon:hover {
  cursor: pointer;
}
.header-menu {
  display: flex;
  align-items: center;
}

/* scroll-top */

.scroll-top {
  position: absolute;
  top: 85vh;
  right: 50px;
  z-index: 999;
  opacity: 0;
  margin-top: 15px;
}
#popup__toggle {
  bottom: 16%;
  right: -5px;
  position: fixed;
  z-index: 999;
}
.img-circle {
  background-color: #29aee34f;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
.circlephone {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border: 2px solid #29aee3;
  width: 150px;
  height: 150px;
  bottom: -25px;
  right: 10px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: 0.5;
  -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
  -o-animation: circle-anim 2.4s infinite ease-in-out !important;
  animation: circle-anim 2.4s infinite ease-in-out !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-fill {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  background-color: #29aee3;
  width: 100px;
  height: 100px;
  bottom: 0px;
  right: 35px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
  animation: circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.img-circle {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  bottom: 14px;
  right: 49px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
}
.img-circleblock {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  background-image: url(Group286.png);
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.img-circle:hover {
  opacity: 1;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }
}
@keyframes tossing {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(-8deg);
  }
}
@-moz-keyframes circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
    -moz-opacity: 0.1;
    -webkit-opacity: 0.1;
    -o-opacity: 0.1;
  }
  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
    -moz-opacity: 0.5;
    -webkit-opacity: 0.5;
    -o-opacity: 0.5;
  }
  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.6;
    -moz-opacity: 0.6;
    -webkit-opacity: 0.6;
    -o-opacity: 0.1;
  }
}
@-webkit-keyframes circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-o-keyframes circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: 0.1;
  }
  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity: 0.5;
  }
  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: 0.1;
  }
}
@keyframes circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@-moz-keyframes circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-o-keyframes circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}

.contact_form_pop img {
  position: fixed;
  bottom: 14%;
  right: 50px;
  opacity: 1;
  transition: all 0.5s ease 0s;
}

.scroll-top-active {
  position: fixed;
  top: 85vh;
  right: 50px;
  opacity: 1;
  transition: all 0.5s ease 0s;
  margin-top: 15px;
}

.scroll-top
  a:focus:not(.wp-block-button__link):not(.wp-block-file__button)
  img {
  outline: 0px dotted
    var(--wp--style--color--link, var(--global--color-primary));
}
.pop-up-form {
  display: none;
  position: fixed;
  z-index: 222;
  top: 0;
  width: 100%;
  background-color: rgba(20, 38, 54, 0.6);
  height: 100%;
  justify-content: center;
  align-items: center;
}
.pop-up-form-block {
  background-color: #323232;
  max-width: 500px;
  padding: 0 30px;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.pop-up-form-block h3 {
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  /* line-height: 1.2;
  font-size: 2.1rem; */
  text-align: center;
  /* letter-spacing: 0.02em;
  margin: 2rem auto 1.125rem auto; */
}
.wpcf7-form-control-wrap input {
  width: 100%;
  background-color: #ffffff;
  border: var(--form--border-width) solid #ffffff;
  font-size: 1rem;
  border-radius: 2px;
}
.first_label {
}
.first_label label {
}
.second_label {
  margin-bottom: 20px;
}
.second_label label {
}
.submit_buttom input {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08929em;
  text-decoration: none;
  text-transform: uppercase;
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform, opacity;
  padding: 0 8px 0 8px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 64px;
  height: 36px;
  border: none;
  outline: none;
  line-height: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 4px;
  background-color: #3f51b5;
  padding: 0 16px 0 16px;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
    0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  background-color: #ffffff;
  font-size: 1rem;
  border-radius: 2px;
}
.form_message {
  color: #ffffff;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.pop-up-form-block p:first-child {
  padding-bottom: 23px;
}
/* .pop-up-form-block p.form-rule {
  font-family: "Calibri", sans-serif !important;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-size: 1rem;
  text-align: center;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0rem 0 1.2rem 0;
} */
.pop-up-form-active {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
}
div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.closex_pop {
  padding-left: 470px;
  font-size: 27px;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
}

.burger-menu-close {
  position: absolute;
  top: 55px;
  right: 45px;
}
.burger-menu-close .wrapper__button-line:nth-child(1) {
  transform: rotate(45deg);
  background: white;
  top: 8px;
}
.burger-menu-close .wrapper__button-line:nth-child(2) {
  transform: rotate(-45deg);
  background: white;
  top: -6px;
}
.menu:not(.header-language .menu) {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 30%;
  height: 100vh;
  top: 0;
  transform: translateX(-100%);
  transition-property: transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: 0.5s;
  display: flex;
  z-index: 22;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu .nav__item {
  border-radius: 4px;
  transform: translateX(-300px);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.wrapper__menu-link {
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
}
.menu-list .nav__item {
  padding-bottom: 25px;
}
.menu .nav__item:nth-child(1) {
  transition-delay: 0.1s;
}
.menu .nav__item:nth-child(2) {
  transition-delay: 0.15s;
}
.menu .nav__item:nth-child(3) {
  transition-delay: 0.2s;
}
.menu .nav__item:nth-child(4) {
  transition-delay: 0.25s;
}
.menu .nav__item:nth-child(5) {
  transition-delay: 0.3s;
}
.menu .nav__item:nth-child(6) {
  transition-delay: 0.35s;
}
.menu .nav__item:nth-child(7) {
  transition-delay: 0.4s;
}
.menu .nav__item:nth-child(7) {
  transition-delay: 0.45s;
}
.menu .nav__item:nth-child(8) {
  transition-delay: 0.5s;
}
.menu .nav__item:nth-child(9) {
  transition-delay: 0.55s;
}
.menu .nav__item:nth-child(10) {
  transition-delay: 0.6s;
}
.menu .nav__item:nth-child(11) {
  transition-delay: 0.65s;
}
.menu .nav__item:nth-child(12) {
  transition-delay: 0.7s;
}

.menu-open {
  transform: translateX(0px) !important;
  transition-delay: 0s !important;
}
.menu-open .nav__item {
  transform: translateX(0px);
}

/*------------*/
main#main {
  padding: 0;
}

.youtube-video-back {
  position: fixed;
  top: 0;
  z-index: 222222;
  transition: all 0.5s linear;
  opacity: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.slider-back-popup {
  position: fixed;
  top: 0;
  z-index: -1;
  transition: all 0.5s linear;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-video-back.active {
  display: flex;
  opacity: 1;
}
.slider-back-popup.active {
  z-index: 222222;
  opacity: 1;
}
.youtube-video-close {
  display: flex;
  justify-content: flex-end;
}
.slider-close {
  display: flex;
  justify-content: flex-end;
}
.youtube-video-close-icon-button-line {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 42px;
  margin: 10px 0;
  position: relative;
}
.youtube-video-close-icon-burger-icon:hover {
  cursor: pointer;
}
.youtube-video-close-icon-button-line:nth-child(1) {
  transform: rotate(45deg);
  background: black;
  top: 7px;
}
.youtube-video-close-icon-button-line:nth-child(2) {
  transform: rotate(-45deg);
  background: black;
  top: -7px;
}
.youtube-video {
  background-color: white;
  padding: 15px;
  /*width: 75vw;*/
}

.slider-body {
  background-color: white;
  padding: 15px;
}

.youtube-video-back iframe {
  width: 80vw;
  height: 80vh;
}
.slider-wrap-popup {
  width: 80vw;
  height: 80vh;
}
.slider-popup-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.popUP-slider-share {
  cursor: pointer;
  margin-right: 20px;
}
span.bwc-chat-icon {
  display: none !important;
}
.slider-wrap-popup .slick-slide {
  height: 80vh !important;
}
.slider-wrap-popup__item {
  height: 80vh;
}
.slider-wrap-popup .slider-wrap-popup__item img {
  height: 100% !important;
  object-fit: contain;
}
.popup-slider-open {
  cursor: pointer;
}
.mortgage-wrap {
  display: none !important;
}
/*section-1*/
.main-photo {
  background-attachment: fixed;
  background-size: cover;
  height: calc(100vh - 145px);
  min-height: 600px;
  margin: 0;
}
.section-1-text {
  text-shadow: 3px 5px 6px #000;
  position: absolute;
  color: white;
  text-align: center;
  bottom: 115px;
  left: 0;
  right: 0;
  font-size: 62px;
}
.section-1-icons {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
}
.section-1-social {
  display: flex;
  padding-top: 15px;
  /*justify-content: center;*/
}
.social-item {
  margin: 0 10px;
}
/*------------*/

/*section-2*/

section.section-2.section-uniq-project {
  /*height: 100vh;*/
  display: flex;
  /*min-height: 780px;*/
  margin: 170px 0;
}
.uniq-project {
  display: flex;
  margin: auto 0;
}
.uniq-project-mobile-title {
  display: none;
}
.section-item:first-child,
.section-item.first-child {
  /*border-right: 20px solid #996699;*/
  width: calc(50% + 10px);
}
.section-item:last-child {
  width: calc(50% - 10px);
}
.uniq-infrastructure .section-item {
  position: relative;
}
.section-infrastructure .section-item:first-child {
  /*border-right: 20px solid #996699;*/
  width: calc(50% - 10px);
}
.section-infrastructure .section-item:last-child {
  width: calc(50% + 10px);
}

.svg-image {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.65s ease;
}
.svg-image.active {
  opacity: 1;
}
.svg-image.active-2 {
  opacity: 1;
}
.svg-image svg {
  height: auto;
  width: 100%;
  border-left: 20px solid transparent;
}
.houses img {
  width: 100%;
  padding-left: 20px;
}
.list-img {
  width: 100%;
  padding-left: 20px;
}
section.section-2 .section-item:last-child {
  background-color: #f7f7f7;
}
.section-2 .section-item:last-child {
  padding-left: 60px;
  padding-top: 25px;
}
section.section-2 img.uniq-project-image {
  border-right: 20px solid #b17e9a;
  display: block;
  width: 100%;
}

.uniq-projec-title {
  font-size: 50px;
  font-weight: bold;
}
.uniq-projec-text {
  line-height: 1.4;
  font-family: "Calibri";
  padding: 22px 0 0;
  font-size: 23px;
  /*color: #7C7C7C;*/
  padding-right: 200px;
}
.uniq-projec-text-ps {
  line-height: 1.4;
  font-family: "Calibri";
  padding-top: 10px;
  font-size: 23px;
  /*color: #7C7C7C;*/
}

.uniq-projec-link {
  font-size: 30px;
  background-color: #4bacc6;
  /* font-size: 30px; */
  padding: 5px 20px 5px 20px;
  margin-bottom: 10px;
  margin-right: 39%;
  display: inline-block;
}
.uniq-projec-link-2 {
  font-size: 30px;
  background-color: #4bacc6;
  /* font-size: 30px; */
  padding: 5px 20px 5px 20px;
  display: inline-block;
}
.uniq-projec-link-div img {
  width: 65px;
}
.uniq-projec-link-2-div img {
  width: 65px;
}
.uniq-projec-link-div {
  display: flex;
  align-items: center;
}
.uniq-projec-link-2-div {
  display: flex;
  align-items: center;
}
.uniq-projec-link:hover {
  cursor: pointer;
}
.uniq-projec-link-2:hover {
  cursor: pointer;
}
.uniq-projec-link p {
  font-family: "Calibri";
  text-decoration: none;
  padding-right: 25px;
  color: white;
  /*font-size: 30px;*/
}
.uniq-projec-link-2 p {
  font-family: "Calibri";
  text-decoration: none;
  padding-right: 76px;
  color: white;
  /*font-size: 30px;*/
}
/*------------*/
.youtube-video-open:hover {
  cursor: pointer;
}

/*section background infrastructure*/
.white-line {
  position: absolute;
  bottom: 0;
  height: 300px;
  background-color: white;
  width: 100%;
  z-index: 1;
}
section.section-w-back {
  position: relative;
  background: url("../images/back2.jpg") no-repeat;
  background-size: contain;
  padding-top: 140px;
}
.sub-section {
  /*height: 100vh;*/
  /*min-height: 780px;*/
}
.section-infrastructure {
  display: flex;
  /*min-height: 780px;*/
  margin: 0;
  padding-bottom: 115px;
}
.uniq-infrastructure {
  width: 100%;
  display: flex;
  margin: auto 0;
}
.uniq-infrastructur-title {
  width: 640px;
  font-size: 50px;
  font-weight: bold;
  padding-bottom: 35px;
  /*margin: 0 auto;*/
  margin: 0 60px auto auto;
}
.uniq-infrastructure-image {
  border-left: 20px solid #b17e9a;
  display: block;
  width: 100%;
}
.uniq-infrastructure-link {
  display: flex;
  width: 640px;
  font-size: 30px;
  padding: 30px 10px 0 0;
  /* margin: 0 auto;*/
  margin: 0 60px auto auto;
  justify-content: flex-end;
}
.uniq-infrastructure-link p {
  font-family: "Calibri";
  color: #4bacc6;
  text-decoration: none;
}
.uniq-infrastructure-link:hover {
  cursor: pointer;
}

.accordion {
  font-size: 1rem;
  width: 640px;
  margin: 0 auto;
  border-radius: 5px;
}

.uniq-infrastructure .accordion {
  margin: 0 60px auto auto;
}
/*accordion*/
.accordion .accordion-header {
  font-size: 30px;
  font-family: "Calibri";
}

.accordion-header,
.accordion-body {
  background: white;
}

.accordion-header {
  padding: 15px 15px 15px 30px;
  background: #4bacc6;
  color: white;
  cursor: pointer;
  font-size: 0.7em;
  transition: all 0.3s;
}

.accordion__item {
  border-bottom: 1px solid #fff;
}

.accordion__item .accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-header:hover {
  background: #2d3d99;
  position: relative;
  z-index: 5;
}

.accordion-body {
  background: #fcfcfc;
  color: #353535;
  display: none;
}

.accordion-body__contents {
  padding: 1.5em 1.5em;
  font-size: 18px;
  font-family: "Calibri";
  line-height: 1.3;
}
.accordion-body__contents b:hover {
  color: #2d3d99;
}

.accordion__item.active:last-child .accordion-header {
  border-radius: none;
}

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:after {
  content: "\25be";
  font-family: IonIcons;
  font-size: 1.2em;
  float: right;
  position: relative;
  top: -2px;
  transition: 0.3s all;
  transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #2d3d99;
  z-index: 22;
  position: relative;
  box-shadow: 0 7px 19px rgb(0 0 0 / 70%);
}

.accordion__item .accordion__item .accordion-header {
  background: #f1f1f1;
  color: #353535;
}

@media screen and (max-width: 1000px) {
  .accordion {
    width: 100%;
  }
}
/*------*/
/*section-house*/
.section-house img.uniq-house-image {
  border-right: 20px solid #b17e9a;
  display: block;
  width: 100%;
}
/*------------------*/
.section-house {
  /*height: 100vh;*/
  display: flex;
  /*min-height: 780px;*/
  margin: 0;
  padding-bottom: 115px;
}
.house {
  display: flex;
  margin: auto 0;
  width: 100%;
}
.house-title {
  width: 640px;
  font-size: 50px;
  margin: 0 auto;
  margin: 0 auto auto 60px;
  font-weight: bold;
  padding-bottom: 40px;
}
.house .accordion {
  margin: 0 auto auto 60px;
}

.section-house img.house-image {
  display: block;
  width: 100%;
  border-right: 20px solid #b17e9a;
}

.house-link {
  position: relative;
  display: flex;
  width: 640px;
  font-size: 30px;
  margin: 30px auto 0 75px;
  /*padding: 30px 15px 0;*/
}
.house-link-pop-up {
  position: absolute;
  display: none;
  left: -520px;
  /*height: 320px;*/
  width: 500px;
  top: -80px;

  background: #fcfcfc;
  color: #353535;
  padding: 1.5em 1.5em;
  font-size: 18px;
  font-family: "Calibri";
  line-height: 1.3;
  display: none;
}
p.house-link-text {
  line-height: 1.3;
  font-family: "Calibri";
}
.house-link p.house-link-p {
  font-family: "Calibri";
  color: #4bacc6;
  text-decoration: none;
}
.house-link:hover {
  cursor: pointer;
}
/*----*/
/*price-cards*/
.card-points {
  display: inline-block;
}
.card-close-text {
  overflow: hidden;
  -webkit-transition: max-height 0.7s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: max-height 0.7s ease-in-out, box-shadow 0.6s linear;
  -o-transition: max-height 0.7s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: max-height 0.7s ease-in-out, box-shadow 0.6s linear;
  transition: max-height 0.7s ease-in-out, box-shadow 0.6s linear;
  transition-duration: 0.7s;
  max-height: 0;
}
.price-card .card-close-text {
  display: inline-block;
}
.price-card.active .card-points {
  display: none;
}
.price-card.active .card-close-text {
  max-height: 500px;
}
.price-card.active {
  transition-delay: 0.1s;
  /*min-height: 600px;*/
  -webkit-transition: min-height 0.5s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: min-height 0.5s ease-in-out, box-shadow 0.6s linear;
  -o-transition: min-height 0.5s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: min-height 0.5s ease-in-out, box-shadow 0.6s linear;
  transition: min-height 0.5s ease-in-out, box-shadow 0.6s linear;
}
.price {
  z-index: 22;
  width: 100%;
  display: flex;
  height: auto;
  flex-direction: column;
  margin: auto 0;
}

.price-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.price-card {
  -webkit-transition: min-height 0.3s ease-in-out, box-shadow 0.6s linear;
  -moz-transition: min-height 0.3s ease-in-out, box-shadow 0.6s linear;
  -o-transition: min-height 0.3s ease-in-out, box-shadow 0.6s linear;
  -ms-transition: min-height 0.3s ease-in-out, box-shadow 0.6s linear;
  transition: min-height 0.3s ease-in-out, box-shadow 0.6s linear;
  transition-delay: 0.3s;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  width: 450px;
  /*justify-content: space-between;*/
  height: 100%;
  min-height: 520px;
  border-bottom: 20px solid #b17e9a;
}
.price-card.active {
  /*min-height: 780px;*/
}
.price-card-title {
  font-weight: bold;
  padding: 30px 40px 30px;
  color: white;
  font-size: 37px;
  background-color: #4bacc6;
}

.price-card-text {
  padding: 30px 30px 45px;
  font-family: "Calibri";
  font-size: 27px;
  /* color: #7C7C7C;*/
}
.card-close-text {
  font-family: "Calibri";
}
.price-card-href {
  cursor: pointer;
  color: #4bacc6;
  text-decoration: none;
  font-family: "Calibri";
  font-size: 25px;
}

.price-card-link {
  display: flex;
  height: 100%;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: flex-end;
  justify-content: flex-end;
}

.price-title {
  font-size: 50px;
  padding-left: 20px;
  padding-bottom: 40px;
  font-weight: bold;
}

.sub-section.section-price {
  display: flex;
  padding-bottom: 115px;
  /* min-height: 780px;*/
}
.container {
  width: 1425px;
  margin: 0 auto;
}
.container2 {
  width: 1445px;
  margin: 0 auto;
}
.container3 {
  width: 1468px;
  margin: 0 auto;
}
/*---------------------*/

/*section-location*/
.location-img {
  /*background-image: url('../images/location.jpg');*/
  position: relative;
}
.location-img img {
  display: block;
  width: 100%;
}
.location {
  margin: auto;
}
.location .accordion {
  width: 570px;
}
section.section-location {
  margin: auto;
  padding-bottom: 110px;
  /*height: 100vh;*/
}

.location-title {
  text-align: center;
  padding-bottom: 20px;
}

.location-title h3 {
  font-size: 50px;
  font-weight: bold;
}

.location .accordion {
  position: absolute;
  top: 70px;
  left: 60px;
}

/*---------------------*/
.slick-arrows img {
  width: 27px;
}
section#apartaments {
  padding-right: 22px;
}
/*section-apartament*/
.apartaments-slide {
  margin: 0 1px;
  padding: 2px;
}
.place-image {
  border: 1px solid;
  display: none;
  left: -50vw;
  bottom: 0;
  z-index: 2118;
  position: absolute;
}
.place-image img {
  width: 100%;
}
div.place-image {
  width: 50vw;
}

.section-apartaments {
  padding-bottom: 110px;
}
ul.slider--tabs {
  display: flex;
  list-style: none;
  padding: 0;
  border: 2px solid #225e6c;
  background-color: #f7f7f7;
  width: auto;
  margin: 15px auto;
}
.apartaments-tabs {
  position: relative;
}
.slide-title {
  /*font-family: 'Calibri';*/
  font-size: 29px;
  /*font-weight: bold;*/
  padding-left: 18px;
  /*padding-bottom: 15px;*/
}
.slider--nav {
  position: absolute;
  left: 50%;
  bottom: 0px;
  display: flex;
  justify-content: flex-end;
}

li.slider--trigger.active {
  color: white;
  background-color: #4bacc6;
}

li.slider--trigger {
  color: #31889d;
  font-size: 29px;
  padding: 16px 16px;
}

li.slider--trigger:hover {
  cursor: pointer;
}

li.slider--trigger:first-child {
  border-right: 2px solid #225e6c;
}

li.slider--trigger:last-child {
  border-left: 2px solid #225e6c;
}

/*----------------------*/
.section-title {
  padding-bottom: 50px;
  text-align: center;
}
.section-title h3 {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
}

/*section-gallery*/
.section-gallery {
  padding-bottom: 110px;
}
.slick-arrow:hover {
  cursor: pointer;
}
.slick-prev-single.slick-arrow {
  position: absolute;
  left: -100px;
  bottom: 50%;
  z-index: 222;
}
.slick-next-single.slick-arrow {
  position: absolute;
  right: -100px;
  bottom: 50%;
  z-index: 222;
}

/*----------------------*/

/*section-projects*/
.projects-slider {
  font-family: "Open Sans", sans-serif;
  /*background-color: #E6E6E6;
    padding-top: 30px;
    padding-bottom: 60px;*/
}

.project-slide {
  /* width: 460px!important;*/
  margin: 0 auto;
  padding: 10px;
  /*height: 430px;*/
}
.news_block_items_item_img {
  width: 100%;
  overflow: hidden;
  transition: transform 0.5s;
}
.photo img {
  width: 8%;
  overflow: hidden;
  display: inline-block; /* Строчно-блочный элемент */
}
.project-photo {
  overflow: hidden;
}
.project-slide a {
  text-decoration: none;
}

.project-adress {
  padding-top: 5px;
  padding-bottom: 25px;
}
.projects {
  margin-bottom: 55px;
}
.projects * {
  font-size: 18px;

  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}
.project-title {
  font-size: 22px;
  padding-top: 20px;
}
section.section-news .projects {
  margin-bottom: 0;
}
#projects {
  margin-bottom: 50px;
}

.container {
  width: 1390px;
  margin: 0 auto;
  padding: 0;
}
.container2 {
  width: 1396px;
  margin: 0 auto;
  padding: 0;
}

.info-text p {
  font-size: 19px;
}
.last-item-not-display {
  opacity: 0;
}
.OneVideo_play {
  position: absolute;
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
  background-color: #fff !important;
  width: 64px !important;
  height: 64px !important;
  bottom: calc(50% - 32px) !important;
  left: calc(50% - 32px) !important;
  opacity: 1;
}

.OneVideo_play svg {
  position: absolute;
  fill: #fff;
  width: 16px;
  height: 16px;
  left: 25px;
  top: 23px;
}
.news_block_items_item_img {
  position: relative;
}
.news_block_items_item_img_hover {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 446px;
}
.news_block_items_item_img:hover .news_block_items_item_img_hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.news-block_items_item_img:hover .OneVideo_play {
  opacity: 1;
}

.news_block_items_item:hover {
  cursor: pointer;
}
.news_post_date p {
  margin-top: 35px;
  margin-bottom: 8px;
}
/*----------------------*/
/*footer*/

.footer-contacts-text:nth-child(2) {
  padding-left: 40px;
}
footer .social-item img {
  width: 38px;
}
section.section-news {
  padding-bottom: 115px;
}

.footer-contacts-title h4 {
  padding-bottom: 20px;
}
.social-item:first-child {
  margin: 0 10px 0 0;
}
footer#colophon {
  padding: 0;
  margin: 0;
  display: flex;
}
.contact-adress,
.contact-site,
.contact-phone {
  padding-bottom: 6px;
}
footer {
  height: 400px;
  background-color: #808080;
  margin: 0;
}
.footer-contacts {
  display: flex;
  width: 1460px;
  margin: auto;
  padding-top: 20px;
  justify-content: space-between;
  color: white;
}

.footer-contacts.container {
}

.contact-title {
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}

.footer-contacts-title h4 {
  font-size: 34px;
}

.footer-contacts-text {
  font-size: 24px;
}
.footer-contacts-text a {
  color: white;
  text-decoration: none;
}
/*------------*/
/*news*/
.news-post .news-img img {
  width: 100%;
}

.single-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.single-all-news {
  display: flex;
}

.news-posts-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px;
}

.news-posts-content article {
  width: 23%;
  min-width: 300px;
}

h4.news-title {
  padding-top: 15px;
  font-size: 24px;
  color: #4bacc6;
  font-weight: 400;
}
.single-news-post .news-desc {
  max-width: unset;
  font-size: 22px;
  line-height: 44px;
}

.news_post-date {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 20px;
}
.news_post-date p {
  margin: 0;
}
/*----news----*/
.site-title {
  text-align: center;
}

.news-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-posts article {
  margin-bottom: 20px;
}
.news-posts .news-text2 {
  width: 100%;
  padding-left: 6px;
}
.news-posts .news-text2 h4.news-title {
  font-family: "Calibri";
  padding-top: 25px;
  padding-bottom: 20px;
}
.news-posts .news_post-date2 p {
  font-family: "Calibri";
  font-size: 16px;
  margin: 0;
  padding-bottom: 20px;
}
.news-posts .news-text2 p.news-desc {
  margin-bottom: 25px;
}
.news-text {
  padding-left: 45px;
  padding-right: 95px;
}
.news-title {
  margin: 0;
}
.news-title a {
  font-family: "Calibri";
  font-size: 24px;
  color: #4bacc6;
  text-decoration: none;
  font-weight: 400;
}
p.news-desc {
  font-family: "Calibri";
  max-width: 400px;
  font-size: 18px;
}
.single-titles,
.single-all-news,
.single-subscribe-news {
  width: 33%;
}

.single-titles {
  text-align: center;
}

.single-all-news a {
  text-decoration: none;
  color: white;
}

.single-all-news {
  display: flex;
  align-items: center;
}

.single-all-news a:first-child {
  padding-right: 15px;
}

.nav-links {
  padding: 10px 0 0 0;
}
/*single news*/
.single-title {
  display: flex;
  color: white;
  align-items: center;
  background-color: #4bacc6;
  padding: 0 50px;
  height: 122px;
  justify-content: space-between;
}
.single-title h3 {
  margin: 0;
}
.single-news-post {
  display: flex;
  padding: 50px 85px 35px;
}
.single-news-left {
  width: 40%;
}
.single-news-post .single-news-left img {
  width: 100%;
}
.single-news-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
h4.news-title {
  padding-top: 0px;
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
.single-news-post .news-desc {
  max-width: unset;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
}
.news-text {
  padding-left: 28px;
  padding-right: 95px;
}
.news-title {
  margin: 0;
}
.news-title a {
  font-size: 24px;
  color: #4bacc6;
  text-decoration: none;
  font-weight: 400;
}
p.news-desc {
  max-width: 400px;
  font-size: 18px;
}
nav.navigation.post-navigation {
  margin: 0;
  max-width: 100%;
  padding: 0 85px 0 28px;
}

/*media*/

/*  1600-1910    */
@media (max-width: 1880px) {
  .slide-title {
    padding-left: 12px;
    font-size: 22px;
    margin-right: 25px;
  }
  footer .social-item img {
    width: 32px;
  }
  .container {
    width: 1190px;
  }
  .container2 {
    width: 1210px;
  }
  .container3 {
    width: 1233px;
  }
  .uniq-projec-link-div img {
    width: 47px;
  }
  .uniq-projec-link-2-div img {
    width: 47px;
  }
  .accordion .accordion-header {
    font-size: 25px;
  }
  .accordion {
    width: 535px;
  }
  .slick-arrows img {
    width: 22px;
  }
  .wrapper__button-line {
    width: 40px;
  }
  /*header*/
  header .header {
    width: 1220px;
  }
  header .header-adress {
    font-size: 21px;
  }
  header .header-item .site-title h3 a {
    font-size: 48px;
  }
  header .header-item .header-phone a {
    font-size: 21px;
  }
  /*------------*/
  /*section-1*/
  .section-1-text {
    font-size: 52px;
  }
  /*------------*/
  /*section-2*/

  .uniq-projec-link {
    /*width: 99%;*/
    padding: 4px 20px 4px 20px;
    margin-bottom: 10px;
  }
  .uniq-projec-link-2 {
    /*width: 99%;*/
    padding: 4px 20px 4px 20px;
  }
  .uniq-projec-title {
    font-size: 41px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 20px;
  }
  .uniq-projec-link p {
    font-size: 20px;
  }
  .uniq-projec-link-2 p {
    font-size: 20px;
    padding-right: 60px;
  }
  .section-2 .section-item:last-child {
    padding-left: 50px;
  }
  /*------------*/
  /*section background infrastructure*/
  .uniq-infrastructur-title {
    width: 535px;
    margin: 0 50px auto auto;
    font-size: 41px;
  }
  .uniq-infrastructure-link {
    width: 535px;
    font-size: 25px;
  }
  .uniq-infrastructure .accordion {
    margin: 0 50px auto auto;
  }
  .uniq-infrastructure-link {
    margin: 0 50px auto auto;
  }

  /*accordion*/
  /*------*/
  /*section-house*/
  .house-title {
    margin: 0 auto auto 50px;
    width: 535px;
    font-size: 41px;
  }
  .house-link {
    width: 535px;
    font-size: 25px;
    margin: 30px auto 0 65px;
  }
  .house .accordion {
    margin: 0 auto auto 50px;
  }
  /*----*/
  /*price-cards*/
  .price-title {
    font-size: 41px;
  }
  /* .price-content {
   margin: 0 auto;
} */
  .price-card {
    height: 100%;
    /* height: 411px;*/
    min-height: 500px;
    width: 376px;
  }
  /* .price-card.active{
min-height: 670px;
} */
  .price-card-title {
    padding: 20px 25px;
    font-size: 30px;
  }
  .price-card-text {
    font-size: 25px;
    line-height: 1.3;
  }
  .price-card-href {
    font-size: 20px;
  }
  /*---------------------*/

  /*section-location*/
  .section-title h3 {
    font-size: 41px;
  }
  .location .accordion {
    width: 475px;
  }
  /*---------------------*/

  /*section-apartament*/

  li.slider--trigger {
    font-size: 24px;
  }

  /*----------------------*/

  /*section-gallery*/

  /*----------------------*/

  /*section-projects*/
  /* .project-slide {
    width: 385px!important;
    height: 400px;
} */
  .projects * {
    font-size: 15px;
  }
  .project-title {
    font-size: 18px;
  }
  /*----------------------*/
  /*footer*/
  .footer-contacts {
    width: 1220px;
  }
  footer {
    height: 300px;
  }
  .footer-contacts-title h4 {
    font-size: 30px;
  }

  .footer-contacts-text {
    font-size: 20px;
  }
}

/*  1300-1600    */
@media (max-width: 1599px) {
  section.section-news {
    padding-bottom: 85px;
  }
  .uniq-projec-text {
    padding-right: 40px;
  }
  /* .youtube-video-back iframe {
    width: 760px;
    height: 500px;
}*/
  .place-image {
    bottom: 0;
  }

  /*div.place-image{
    width: 580px;
}*/
  /*  .place-image {
    top: -345px;
}*/
  .uniq-projec-link-div img {
    width: 37px;
  }
  .uniq-projec-link-2-div img {
    width: 37px;
  }
  section.section-2.section-uniq-project {
    margin: 120px 0;
  }
  section.section-w-back {
    padding-top: 95px;
  }
  .section-infrastructure {
    padding-bottom: 85px;
  }
  .section-house {
    padding-bottom: 85px;
  }
  .sub-section.section-price {
    padding-bottom: 85px;
  }
  section.section-location {
    padding-bottom: 85px;
  }
  .section-apartaments {
    padding-bottom: 85px;
  }
  .section-gallery {
    padding-bottom: 85px;
  }
  .container {
    width: 1010px;
  }
  .container2 {
    width: 1030px;
  }
  .container3 {
    width: 1053px;
  }
  .accordion .accordion-header {
    font-size: 21px;
  }
  .accordion {
    width: 456px;
  }
  .slick-arrows img {
    width: 19px;
  }
  .wrapper__button-line {
    width: 36px;
  }
  /*header*/
  header .header {
    width: 1040px;
  }
  header .header-adress {
    font-size: 18px;
  }
  header .header-item .site-title h3 a {
    font-size: 42px;
  }
  header .header-item .header-phone a {
    font-size: 18px;
  }
  /*------------*/
  /*section-1*/
  .section-1-text {
    font-size: 44px;
  }
  /*------------*/
  /*section-2*/

  .uniq-projec-link {
    /*width: 99%;*/
    padding: 3px 20px 3px 20px;
    margin-bottom: 10px;
  }
  .uniq-projec-link-2 {
    /*width: 99%;*/
    padding: 3px 20px 3px 20px;
  }
  .uniq-projec-title {
    font-size: 35px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 19px;
  }
  .uniq-projec-link p {
    font-size: 21px;
  }
  .uniq-projec-link-2 p {
    font-size: 21px;
    padding-right: 61px;
  }
  .section-2 .section-item:last-child {
    padding-left: 43px;
  }
  /*------------*/
  /*section background infrastructure*/
  .uniq-infrastructur-title {
    width: 456px;
    margin: 0 43px auto auto;
    font-size: 35px;
  }
  .uniq-infrastructure-link {
    width: 456px;
    font-size: 21px;
  }
  .uniq-infrastructure .accordion {
    margin: 0 43px auto auto;
  }
  .uniq-infrastructure-link {
    margin: 0 43px auto auto;
  }

  /*accordion*/
  /*------*/
  /*section-house*/
  .house-title {
    margin: 0 auto auto 43px;
    width: 456px;
    font-size: 35px;
  }
  .house-link {
    width: 456px;
    font-size: 21px;
    margin: 30px auto 0 58px;
  }
  .house .accordion {
    margin: 0 auto auto 43px;
  }
  /*----*/
  /*price-cards*/
  .price-title {
    font-size: 35px;
  }
  .price-content {
    /* margin: 0 auto;*/
  }
  .price-card {
    width: 321px;
    /*height: 435px;*/
    min-height: 410px;
  }
  .price-card.active {
    /*min-height: 720px;*/
  }
  .price-card-title {
    font-size: 25px;
  }
  .price-card-text {
    padding-bottom: 45px;
    font-size: 19px;
    line-height: 1.3;
  }
  .price-card-href {
    font-size: 17px;
  }
  /*---------------------*/

  /*section-location*/
  .section-title h3 {
    font-size: 35px;
  }
  .location .accordion {
    width: 406px;
  }
  .location .accordion {
    top: 50px;
    left: 44px;
  }
  /*---------------------*/

  /*section-apartament*/

  li.slider--trigger {
    font-size: 20px;
  }

  /*----------------------*/

  /*section-gallery*/

  /*----------------------*/

  /*section-projects*/
  .project-slide {
    /*width: 328px!important;*/
    /*height: 340px;*/
  }
  .projects * {
    font-size: 13px;
    line-height: 1.3;
  }
  .news_block_items_item_word {
    font-size: 16px;
  }
  .project-title {
    font-size: 16px;
  }
  /*----------------------*/
  /*footer*/

  footer .social-item img {
    width: 28px;
  }

  .footer-contacts {
    width: 1040px;
  }
  .footer-contacts-title h4 {
    font-size: 26px;
  }

  .footer-contacts-text {
    font-size: 17px;
  }
}

/*  960-1300    */
@media (max-width: 1299px) {
  .container {
    width: 850px;
  }
  .container2 {
    width: 870px;
  }
  .container3 {
    width: 893px;
  }
  .accordion .accordion-header {
    font-size: 18px;
  }
  .accordion {
    width: 456px;
  }
  .wrapper__button-line {
    width: 31px;
  }

  /*header*/
  header .header {
    width: 880px;
  }
  header .header-adress {
    font-size: 16px;
  }
  header .header-item .site-title h3 a {
    font-size: 35px;
  }
  header .header-item .header-phone a {
    font-size: 16px;
  }
  /*------------*/
  /*section-1*/
  .section-1-text {
    font-size: 38px;
  }
  /*------------*/
  /*section-2*/
  .section-item:first-child,
  .section-item.first-child {
    /*padding-right: 20px;*/
  }

  .uniq-projec-link {
    /*width: 99%;*/
    padding: 5px 20px 5px 20px;
    margin-right: 1%;
  }
  .uniq-projec-link-2 {
    /*width: 99%;*/
    padding: 5px 20px 5px 20px;
  }
  .uniq-projec-title {
    font-size: 30px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 13px;
  }
  .uniq-projec-link-div img {
    width: 23px;
  }
  .uniq-projec-link-2-div img {
    width: 23px;
  }
  .uniq-projec-link p {
    font-size: 18px;
  }
  .uniq-projec-link-2 p {
    font-size: 18px;
    padding-right: 55px;
  }
  .section-2 .section-item:last-child {
    padding-left: 43px;
  }
  /*------------*/
  /*section background infrastructure*/
  .uniq-infrastructur-title {
    width: 456px;
    margin: 0 43px auto auto;
    font-size: 30px;
  }
  .uniq-infrastructure-link {
    width: 456px;
    font-size: 18px;
  }
  .uniq-infrastructure .accordion {
    margin: 0 43px auto auto;
  }
  .uniq-infrastructure-link {
    margin: 0 43px auto auto;
  }

  /*accordion*/
  /*------*/
  /*section-house*/
  .house-title {
    margin: 0 auto auto 43px;
    width: 456px;
    font-size: 30px;
  }
  .house-link {
    width: 456px;
    font-size: 18px;
    margin: 30px auto 0 58px;
  }
  .house .accordion {
    margin: 0 auto auto 43px;
  }
  /*----*/
  /*price-cards*/
  .price-title {
    font-size: 30px;
  }
  .price-content {
    /* margin: 0 auto;*/
  }
  .price-card {
    width: 300px;
    /* height: 380px; */
    max-width: 32%;
    min-height: 417px;
  }
  .price-card.active {
    /*min-height: 540px;*/
  }
  .price-card-title {
    padding: 20px 25px;
    font-size: 22px;
  }
  .price-card-text {
    font-size: 18px;
    line-height: 1.3;
  }
  .price-card-href {
    font-size: 14px;
  }
  /*---------------------*/

  /*section-location*/
  .section-title h3 {
    font-size: 30px;
  }
  .location .accordion {
    width: 340px;
  }
  /*---------------------*/

  /*section-apartament*/

  li.slider--trigger {
    font-size: 17px;
  }

  /*----------------------*/

  /*section-gallery*/

  /*----------------------*/

  /*section-projects*/
  .project-slide {
    /*width: 276px!important;*/
    /*height: 300px;*/
  }
  .projects * {
    font-size: 12px;
    line-height: 1.3;
  }
  .project-title {
    font-size: 16px;
  }
  /*----------------------*/
  /*footer*/
  .footer-contacts {
    width: 880px;
  }
  .footer-contacts-title h4 {
    font-size: 22px;
  }

  .footer-contacts-text {
    font-size: 15px;
  }
}

.section-1-social.social-footer-mobile {
  display: none;
}

/*  mobile 480-960   */
@media (max-width: 959px) {
  .scroll-top {
    top: 80vh;
    right: 25px;
  }

  .scroll-top img {
    width: 50px;
    height: 50px;
  }

  .scroll-top-active {
    position: fixed;
    top: 80vh;
    right: 25px;
  }

  .contact_form_pop img {
    width: 50px;
    position: fixed;
    top: 74vh;
    right: 25px;
    opacity: 1;
    transition: all 0.5s ease 0s;
  }
  .footer-contacts-text:nth-child(2) {
    padding-left: 0px;
  }

  section.section-news {
    padding-bottom: 50px;
  }

  .animation-element.slide-left,
  .animation-element.slide-right,
  .animation-element.slide-up,
  .animation-element.slide-down,
  .animation-element.slide-left-child:nth-child(1),
  .animation-element.slide-left-child:nth-child(2),
  .animation-element.slide-left-child:nth-child(3) {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }

  .container {
    width: 100%;
  }
  .container2 {
    width: 100%;
  }
  .container3 {
    width: 100%;
  }
  .youtube-video-back iframe {
    width: 100%;
    height: 100%;
  }
  .house-link-pop-up {
    left: 0;
    width: 100%;
    height: auto;
    top: 90px;
    z-index: 222;
  }
  .uniq-projec-link-div img {
    width: 30px;
  }
  .uniq-projec-link-2-div img {
    width: 30px;
  }
  .place-image {
    left: auto;
    right: auto;
    top: 140px;
    max-width: 100%;
    z-index: 2222;
  }
  .apartaments-slider .slick-next-single {
    bottom: -58px;
  }

  .apartaments-slider .slick-prev-single {
    bottom: -58px;
  }

  /*header*/
  header .header {
    width: 90%;
    height: 118px;
  }
  .header-item {
    width: unset;
  }
  .mobile-phone {
    display: block;
  }
  .desctop-phone {
    display: none;
  }
  .header-adress {
    display: none;
  }
  header .header-item .site-title h3 a {
    font-size: 30px;
  }
  .menu:not(.header-language .menu) {
    width: 100%;
  }
  /*------------*/
  /*section-1*/
  .main-photo {
    height: calc(100vh - 118px);
    min-height: 400px;
  }
  section.section-1 {
    position: relative;
  }
  .section-1-text {
    font-size: 38px;
  }
  /*------------*/
  /*section-2*/
  .uniq-project {
    flex-direction: column;
    max-width: 100%;
  }
  .uniq-project-mobile-title {
    display: block;
    width: 100%;
    padding: 40px 0;
    text-align: center;
  }
  section.section-2.section-uniq-project {
    margin: 0 0 50px;
  }
  .uniq-project-mobile-title h3 {
    font-size: 30px;
    font-weight: bold;
  }
  .uniq-projec-title {
    display: none;
  }
  .uniq-projec-text {
    padding: 35px 45px;
  }
  .uniq-projec-link-div img {
    width: 35px;
  }
  .uniq-projec-link-2-div img {
    width: 35px;
  }
  .section-item:first-child,
  .section-item.first-child {
    width: 100%;
    padding-right: 0;
  }
  section.section-2 .section-item:last-child {
    background-color: white;
    padding-left: 0;
    padding-top: 0;
  }
  .uniq-projec-about {
    margin: 30px;
    background-color: #f7f7f7;
    padding: 0;
  }
  .section-item:last-child {
    width: 100%;
    padding-top: 0;
  }
  /*------------*/
  /*section background infrastructure*/
  section.section-w-back {
    padding-top: 0px;
  }
  .uniq-infrastructure {
    flex-direction: column-reverse;
  }
  .section-infrastructure .section-item:first-child {
    width: 100%;
  }
  .section-infrastructure .section-item:last-child {
    width: 100%;
  }
  .uniq-infrastructure .accordion {
    margin: 0 auto;
  }
  .uniq-infrastructure-link {
    width: 385px;
    font-size: 18px;
  }
  .uniq-infrastructur-title {
    width: 385px;
    padding-top: 35px;
    font-size: 30px;
  }
  .section-infrastructure {
    padding-bottom: 50px;
  }
  /*accordion*/
  .accordion {
    width: 385px;
  }
  /*.accordion__item > .accordion-header:after{
  display: none;
}*/
  /*------*/
  /*section-house*/
  .house {
    flex-direction: column;
  }
  .house-title {
    margin: 0 auto;
    width: 385px;
    font-size: 30px;
    padding-top: 40px;
  }
  .house .accordion {
    margin: 0 auto;
    width: 385px;
  }
  .house-link {
    margin: 0 auto;
    width: 385px;
    /* padding-top: 45px;*/
    margin-top: 45px;
  }
  /*----*/
  /*price-cards*/
  .price-title {
    width: 385px;
    margin: 0 auto;
    padding: 0 0 35px;
  }
  .price-content {
    align-items: center;
    flex-direction: column;
  }
  .price-card {
    max-width: unset;
    margin-bottom: 40px;
  }
  .price-card.active {
    /*min-height: 540px;*/
  }
  .sub-section.section-price {
    padding-bottom: 30px;
  }
  /*---------------------*/

  /*section-location*/
  .location .accordion {
    width: 385px;
    padding-top: 0;
    margin: 0 auto;
    position: relative;
    top: unset;
    left: unset;
  }
  section.section-location {
    padding-bottom: 50px;
  }

  /*---------------------*/

  li.slider--trigger {
    padding: 15px 15px;
  }
  /*section-apartament*/
  .slick-prev-single.slick-arrow {
    left: 25px;
  }
  .slick-next-single.slick-arrow {
    right: 25px;
  }

  .projects-slider .slick-prev-single.slick-arrow {
    left: 15px;
    bottom: 66%;
  }
  .projects-slider .slick-next-single.slick-arrow {
    right: 15px;
    bottom: 66%;
  }

  .slick-slide img {
    width: 100%;
  }
  .slider--nav {
    position: relative;
    right: unset;
    left: unset;
    bottom: unset;
    display: flex;
    margin-top: 80px;
    justify-content: center;
  }
  .section-apartaments {
    padding-bottom: 50px;
  }
  /*----------------------*/

  /*section-gallery*/
  .section-gallery {
    padding-bottom: 50px;
  }
  /*----------------------*/

  /*section-projects*/
  .project-slide {
    width: 75% !important;
    margin: 0 auto;
    display: block !important;
  }
  .projects {
    margin-bottom: 0;
  }
  /*----------------------*/
  /*footer*/
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts {
    padding: 50px 35px;
    flex-direction: column;
  }
  footer#colophon {
    height: auto;
  }
  .footer-contacts-text {
    padding-bottom: 40px;
  }
  .footer-contacts-title {
    padding-bottom: 30px;
  }
  .footer-contacts-title .section-1-social {
    display: none;
  }

  .footer-contacts-text:nth-child(3) {
    padding-bottom: 15px;
  }

  .section-1-social.social-footer-mobile {
    display: flex;
  }

  /*news*/
  .single-news-post {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
  }

  .single-news-left {
    width: 100%;
  }

  .single-news-right {
    width: 100%;
  }

  .news-text {
    padding: 10px 15px;
  }
  .single-title {
    padding: 0 25px;
  }

  .house-link-pop-up {
    position: relative;
    top: 20px;
    width: 90%;
  }

  .house-link {
    display: flex;
    flex-direction: column-reverse;
  }

  .slider--nav {
    display: flex;
    flex-direction: column-reverse;
  }

  .place-image {
    position: relative;
    top: 20px;
    margin: 0 auto;
  }

  div.place-image {
    width: 90%;
  }
  .nav-links {
    text-align: center;
  }
  nav.navigation.post-navigation {
    text-align: center;
    padding: 0;
  }
  .single-all-news a:last-child {
    display: none;
  }
  .single-all-news a:last-child {
    display: none;
  }
  .news-posts-content article {
    width: auto;
    min-width: unset;
  }
  .news-posts-content {
    padding: 25px;
  }
}
@media (max-width: 821px) {
  #popup__toggle {
    bottom: 230px;
    right: -36px;
  }
}
@media (max-width: 767px) {
  #popup__toggle {
    bottom: 188px;
    right: -36px;
  }
  .mortgage-wrap {
    display: flex !important;
  }
  .slider-wrap-popup ul.slick-dots {
    display: flex;
    justify-content: center;
    padding-left: 0;
    bottom: 20%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
  }

  /* footer */
  .footer-contacts {
    padding: 60px 0 110px 20px;
    background: #36576b;
  }
  .footer-contacts-title h4 {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
    position: relative;
  }
  .footer-contacts-title h4:after {
    content: "";
    display: block;
    position: absolute;
    width: 60%;
    height: 1px;
    background: #fff;
    top: 28%;
    right: 0;
  }
  .contact-title {
    border-bottom: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
  }
  .contact-adress {
    font-weight: 300;
    font-size: 16px;
    line-height: 110%;
    color: #ffffff;
  }
  .footer-contacts-text:nth-child(2) {
    padding-bottom: 20px;
  }

  /* header */
  .menu:not(.header-language .menu) {
    background: #d9d9d9;
    height: 100%;
    min-height: 900px;
  }
  .menu-list .nav__item {
    padding-bottom: 0;
  }

  .wrapper__menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 37px;
    padding: 10px 0;
    color: #000000;
    display: block;
    width: 100%;
    border-top: 0.5px solid rgba(0, 0, 0, 0.4);
  }
  .nav__item.link-scroll:last-child .wrapper__menu-link {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
  }
  .menu-list {
    width: 100%;
    padding: 23px 20px;
  }
  .menu-top-bg {
    width: 100%;
    height: 100%;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/menu-top-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .burger-menu-close {
    right: 27px;
  }
  .menu-list .nav__item {
    position: relative;
  }
  .menu-list .nav__item:first-child:after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-about-complex.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(2):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-genplan.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(3):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-houses.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(4):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-prices.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(5):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-location.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(6):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-gallery.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(7):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-news.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(9):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-commercian.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  .menu-list .nav__item:nth-child(10) {
    display: none;
  }

  .menu-list .nav__item:nth-child(12):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-other-projects.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }

  .menu-list .nav__item:nth-child(13):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/icon-contacts.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }
  /* .menu-list .nav__item:nth-child(10):after {
    content: "";
    display: block;
    background: url(https://park-side.com/wp-content/themes/twentytwentyone/assets/images/telephone-icon-menu.png);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  } */
  .section-projects-video {
    display: none !important;
  }
  .site-title > a {
    display: block !important;
  }
  .site-title h3 {
    display: none !important;
  }
}
/*  mobile 320-480   */
@media (max-width: 479px) {
  .container {
    width: 100%;
  }
  .uniq-projec-about {
    margin: 0;
  }
  section#apartaments {
    padding-right: 0;
  }
  .uniq-projec-text {
    padding: 20px 15px;
  }

  .uniq-projec-link {
    padding: 5px 15px;
    width: 100%;
  }
  .uniq-projec-link-2 {
    padding: 5px 15px;
    width: 100%;
  }
  .uniq-projec-link p {
    padding-right: 18px;
  }
  .uniq-projec-link-2 p {
    padding-right: 48px;
  }
  .uniq-infrastructure .accordion {
    width: 100%;
  }
  li.slider--trigger {
    padding: 15px 10px;
    font-size: 15px;
  }
  .accordion-body__contents {
    font-size: 15px;
  }
  ul.slider--tabs {
    /* width: 100%;*/
  }
  .uniq-infrastructure-link {
    width: 100%;
    padding-top: 25px;
  }

  .price-card.active {
    /*  min-height: 660px;*/
  }

  .gallery-slider .slick-next-single,
  .gallery-slider .slick-prev-single {
    bottom: calc(50% - 14px);
  }
  #popup__toggle {
    bottom: 23%;
    right: -36px;
    position: fixed;
  }
  .pop-up-form-block {
    max-width: 350px;
  }
  .closex_pop {
    padding-left: 322px;
  }
  /*header*/
  header .header {
    width: 90%;
  }
  .section-item:first-child {
    width: 100%;
  }

  .section-item:last-child {
    width: 100%;
  }
  .section-infrastructure .section-item:first-child {
    width: 100%;
  }
  .section-infrastructure .section-item:last-child {
    width: 100%;
  }

  .uniq-infrastructur-title {
    margin: 0 auto;
    width: 90%;
  }
  .accordion {
    width: 100%;
  }
  .accordion .accordion-header {
    font-size: 15px;
    padding: 10px 15px;
  }
  .house-title {
    width: 90%;
  }
  .house .accordion {
    width: 100%;
  }
  .house-link {
    width: 100%;
    margin-top: 25px;
    margin-left: 15px;
  }
  /*----*/
  /*price-cards*/
  .price-title {
    width: 90%;
  }

  /*---------------------*/

  /*section-location*/
  .location .accordion {
    width: 100%;
  }
}

a.est-navi__button {
  text-decoration: none;
}
.news_block_items_item_img {
  display: inline-block; /* Строчно-блочный элемент */
  overflow: hidden;
  transition: 1s; /* Время эффекта */
  display: block;
}
@media (max-width: 1011px) {
  .button-video {
    padding: 9px 0;
  }
}
@media (max-width: 1214px) {
  .button-video {
    padding: 61px 0;
  }
}
@media (max-width: 1398px) {
  .button-video {
    padding: 23px 0;
  }
}
@media (max-width: 1214px) {
  .button-video {
    padding: 59px 0;
  }
}
@media (max-width: 1708px) {
  .button-video {
    padding: 52px 0;
  }
}
@media (max-width: 1213px) {
  .button-video {
    padding: 35px 0;
  }
}
@media (max-width: 2050px) {
  .button-video {
    padding: 55px 0;
  }
}
@media (max-width: 1707px) {
  .button-video {
    padding: 52px 0;
  }
}
@media (max-width: 1536px) {
  .button-video {
    padding: 9px 0;
  }
}

/* style Vitalii */

.uniq-projec-about {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.uniq-projec-text {
  padding-top: 15px;
}
.button-video {
  padding: 50px 0;
}
@media (max-width: 1880px) {
  .uniq-projec-title {
    font-size: 45px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 23px;
  }
  .uniq-projec-text {
    padding-right: 20%;
  }
}
@media (max-width: 1750px) {
  .uniq-projec-text {
    padding-right: 10%;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 21px;
  }
}
/* @media (max-width: 1774px) {
  .uniq-projec-title {
    font-size: 43px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 0.9em;
  }
  .uniq-projec-text {
    padding-right: 10%;
  }
} */
@media (max-width: 1658px) {
  .uniq-projec-title {
    font-size: 40px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 20px;
  }
}
@media (max-width: 1483px) {
  .uniq-projec-title {
    font-size: 30px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 19px;
  }
  .button-video {
    padding: 35px 0;
  }
}
@media (max-width: 1400px) {
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 17px;
  }
}
@media (max-width: 1265px) {
  .button-video {
    padding: 25px 0;
  }
  .uniq-projec-title {
    font-size: 26px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 16px;
  }
}
@media (max-width: 1165px) {
  .uniq-projec-title {
    font-size: 22px;
  }
  .uniq-projec-text,
  .uniq-projec-text-ps {
    font-size: 14px;
  }
  .button-video {
    padding: 15px 0;
  }
}

.scroll-top {
  display: none;
}

.header-language ul {
  display: flex;
  list-style: none;
  padding-bottom: 5px;
}
.header-language ul a {
  text-decoration: none;
  padding: 8px;
  display: block;
  border: 1px solid transparent;
  font-size: 15px;
}
.header-language ul button.sub-menu-toggle {
  display: none;
}
.header-language ul li {
  display: flex;
}
.header-language ul .sub-menu {
  list-style: none;
  padding: 0;
}

.header-language {
  position: relative;
  right: 35px;
  width: 0;
}
.header-language ul a:hover {
  border: 1px solid #4bacc6;
}
.header-language ul#menu-lang_menu-1 > li > a {
  border: 1px solid #4bacc6;
}

@media (max-width: 959px) {
  .header-language ul a {
    color: #fff;
  }
  .header-language {
    display: none;
  }
  .header-language.header-language-mobile {
    display: block !important;
  }
  .header-language ul#menu-lang_menu > li > a {
    border: 1px solid #fff;
  }
  .header-language ul#menu-lang_menu a {
    font-size: 26px;
  }
  .header-language ul {
    padding: 0;
  }
  .header-language {
    right: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header-language.header-language-mobile {
    margin-top: 25px;
  }
  .header-language ul a {
    color: #000;
  }
  .header-language ul#menu-lang_menu a {
    font-size: 16px;
  }
  .header-language ul#menu-lang_menu > li > a {
    border: 1px solid #4bacc6;
  }
}

/* SignUp block */

.s-news_post-date p {
  margin-bottom: 0;
  padding-top: 0;
}

.s-news_post-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-top: 19px;
  padding-left: 28px;
}
.news_post-signUp {
  position: relative;
  margin-right: 15px;
}
.news_post-signUp img {
  width: 24px;
  cursor: pointer;
  padding: 5px 0;
}
p.news_post-signUp__hint {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  flex-grow: 0;
  width: 275px;
  height: 40px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  border-radius: 6px;
  position: absolute;
  top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -120px;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: all 0.5s ease 0s;
  z-index: -1;
}
/* .s-news_post-date.active p.news_post-signUp__hint {
  opacity: 1;
  transform: translate(0px, 0%);
  transition: all 0.5s ease 0s;
  z-index: 111111111111111;
} */
.news_post-signUp:hover p.news_post-signUp__hint {
  opacity: 1;
  transform: translate(0px, 0%);
  transition: all 0.5s ease 0s;
  z-index: 111111111111111;
}
.news-signUp__list {
  position: absolute;
  width: 301px;
  top: 35px;
  transform: translate(0px, 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}
/* .news_post-signUp:hover .news-signUp__list {
  z-index: 11111111111;
  opacity: 1;
  transform: translate(0px, 0);
  transition: all 0.5s ease 0s;
} */
.s-news_post-date.active .news-signUp__list {
  z-index: 11111111111;
  opacity: 1;
  transform: translate(0px, 0);
  overflow: unset;
  transition: all 0.5s ease 0s;
}
.news-signUp__list-link {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
}
.news-signUp__list-link svg {
  width: 18px;
}
.news-signUp__list > .news-signUp__list-link-wrap {
  background: #fff;
  position: relative;
}
.news-signUp__list > .news-signUp__list-link-wrap:first-child {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0px 0px;
}
.news-signUp__list > .news-signUp__list-link-wrap:last-child {
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 13px 44px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 10px 10px;
  border-top: 0;
}
.news-signUp__list
  > .news-signUp__list-link-wrap:hover
  .news-signUp__list-link
  span {
  color: #fff;
}
.news-signUp__list > .news-signUp__list-link-wrap:hover {
  background-color: #4bacc6;
}
.news-signUp__list
  > .news-signUp__list-link-wrap:hover
  .news-signUp__list-link
  svg
  path {
  fill: #fff;
}
.news-signUp__list-link span {
  font-weight: 400;
  font-size: 18px;
  line-height: 15px;
  text-align: center;
  color: #000000;
}
.news-signUp__list-link svg {
  width: 18px;
  margin: 0 10px 0 20px;
}
.news-signUp__sub-list {
  position: absolute;
  top: 0;
  right: -192px;
  opacity: 0;
  z-index: -1;
  transform: translate(0px, 50px);
  transition: all 0.5s ease 0s;
}
.news-signUp__list-link-wrap:last-child:hover .news-signUp__sub-list {
  opacity: 1;
  z-index: 11111111111;
  transform: translate(0px, 0px);
  transition: all 0.5s ease 0s;
}
.news-signUp__sub-list p {
  cursor: pointer;
  height: 49.99px;
  display: flex;
  align-items: center;
  /* background: #fff; */
  width: 190px;
  padding-left: 15px;
  /* justify-content: center; */
  font-weight: 400;
  font-size: 18px;
  line-height: 15px;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.news-signUp__sub-list p:first-child {
  border-radius: 10px 10px 0 0;
}
.news-signUp__sub-list p:last-child {
  border-radius: 0px 0px 10px 10px;
}
.news-signUp__sub-list p:hover {
  background: #4bacc6;
  color: #fff;
}
.news-signUp__sub-list {
  position: absolute;
  top: 0;
  right: -192px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #fff;
}
.news-signUp__sub-list p:last-child {
  border-bottom: 0;
}
.news-signUp__popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11111111111111;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(image.png);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transform: translate(0px, 100%);
  transition: all 0.2s ease 0s;
}
.news-signUp__popup.news-signUp-active {
  opacity: 1;
  z-index: 11111111111111;
  transform: translate(0px, 0%);
  transition: all 0.2s ease 0s;
}
.news-signUp__popup-body {
  background: #fff;
  padding: 40px 60px 40px;
  max-width: 593px;
  width: 100%;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.inner-body__big-circle {
  position: absolute;
  width: 498px;
  height: 498px;
  left: -117px;
  top: -390px;
  background: rgba(50, 88, 211, 0.1);
  border-radius: 50%;
}
.inner-body__small-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 397px;
  top: 340px;
  border-radius: 50%;
  background: rgba(50, 88, 211, 0.1);
}
h3.news-signUp__popup-title {
  font-weight: 400;
  font-size: 26px;
  line-height: 105%;
  text-align: center;
  color: #000000;
  letter-spacing: -0.03em;
  margin: 0 0 25px 0;
}
.mailpoet_paragraph input.mailpoet_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.4);
  max-width: 420px;
  width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  height: 60px;
  padding: 0 22px !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}
label.mailpoet_text_label {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
input.mailpoet_submit {
  width: 229px;
  height: 51px;
  margin: 25px auto 0 !important;
  display: flex;
  justify-content: center;
  border: 0;
  background: #4bacc6 !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 15px;
  text-align: center;
  color: #ffffff !important;
  cursor: pointer;
  border-radius: 30px;
}
.category-news__item .news-signUp__list {
  left: -150px;
}
.mailpoet_paragraph {
  font-weight: 400;
  font-size: 14px;
  line-height: 110% !important;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.mailpoet_paragraph label {
  text-align: left;
}
#mailpoet_form_1 .mailpoet_validate_success {
  display: none;
}
p.mailpoet_validate_error {
  display: none !important;
}
@media (max-width: 1399px) {
  h3.news-signUp__popup-title {
    font-size: 25px;
  }
  .news-signUp__popup-body {
    background: #fff;
    padding: 40px 70px 30px 70px;
  }
  .mailpoet_paragraph input.mailpoet_text {
    /* width: 380px !important; */
    height: 49px;
  }
  input.mailpoet_submit {
    width: 189px;
    height: 45px;
    font-size: 15px;
  }
}
@media (max-width: 959px) {
  p.news_post-signUp__hint {
    left: 0;
  }
  .s-news_post-date {
    padding: 0;
    margin: 0;
  }
  .s-news_post-date {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .news_post-signUp {
    margin-right: 0;
  }
  .news-signUp__popup-body {
    max-width: 80%;
    padding: 40px 30px 30px 30px;
  }
  .inner-body__big-circle {
    width: 398px;
    height: 398px;
    left: -57px;
    top: -300px;
  }
  .inner-body__small-circle {
    width: 300px;
    height: 300px;
    left: 397px;
    top: 240px;
  }
  h3.news-signUp__popup-title {
    font-size: 18px;
    margin: 0 0 25px 0;
  }
  .mailpoet_paragraph input.mailpoet_text {
    width: 100% !important;
    height: 41px;
    font-size: 12px;
  }
  input.mailpoet_submit {
    width: 129px;
    height: 35px;
    font-weight: 400;
    font-size: 13px;
    padding: 0;
  }
  .mailpoet_paragraph {
    font-size: 10px !important;
  }
  .news-signUp__list {
    width: 250px;
  }
  .news-signUp__list-link {
    height: 40px;
  }
  .news-signUp__list-link span {
    font-size: 13px;
  }
  .news-signUp__sub-list p {
    font-size: 13px;
    width: 130px;
    height: 40px;
  }
  .news-signUp__sub-list {
    right: 0;
    top: 100%;
  }
  p.news_post-signUp__hint {
    font-size: 14px;
    width: 225px;
    height: 35px;
    /* left: -120px;
    top: -45px; */
    font-weight: 400;
  }
}
@media (max-width: 500px) {
  h3.news-signUp__popup-title {
    font-size: 16px;
  }

  .inner-body__big-circle {
    width: 298px;
    height: 298px;
    left: -57px;
    top: -220px;
  }
  .inner-body__small-circle {
    width: 200px;
    height: 200px;
    left: 257px;
    top: 240px;
  }
}
/* /SignUp block */

.grecaptcha-badge {
  display: none !important;
}
.screen_navigations_btn_crmWrap.hideOnDesktop {
  margin-top: 65px;
}
@media (max-width: 767px) {
  .header-item .header-item-new {
    display: none !important;
  }
  .house_information .info .title {
    font-size: 16px !important;
  }
  a#bingc-phone-button {
    bottom: 5px !important;
  }
  .section-projects ul.slick-dots {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
  .news_block_items_item {
    height: auto !important;
  }
  .news_block_items_item .news_block_items_item_name p:first-child {
    position: relative !important;
    top: 0;
    left: 15px;
  }
  .news_block_items_item p.news_block_items_item_word {
    position: relative !important;
    top: 0;
    left: 15px;
    padding-left: 10px;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  .gallery-slider ul.slick-dots {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .section-1-description-btn__wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .mortgage-btn.mortgage-btn__mobile {
    display: flex !important;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    padding-right: 26px;
    justify-content: flex-end;
  }
  p.btn-ipoteka {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    margin-left: 12px;
  }
}

#wepster-main-widget {
  bottom: 30px !important;
  left: 110px !important;
  z-index: 10000 !important;
}
#bingc-phone-button.bingc-phone-button {
  z-index: 4000 !important;
}
.est-modal-header__contact-info > span {
  display: none !important;
}
@media screen and (max-width: 1520px) {
  #wepster-main-widget {
    left: 120px !important;
  }
}
@media screen and (max-width: 767px) {
  #wepster-main-widget {
    left: 15px !important;
    bottom: 30px !important;
  }
}
#bingc-phone-button {
  bottom: 40px !important;
  right: 30px !important;
}

.footerFormWrap {
  padding: 20px;
  background: #4bacc6;
}
.footerForm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Calibri";
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footerForm__group {
  margin: 5px 0;
  width: 100%;
}
.footerForm__group-input {
  width: 100%;
  outline: none !important;
  border: 1px solid white !important;
  background: none;
  text-align: center;
  color: white !important;
}
.footerForm__group-input::placeholder {
  color: white;
}
.footerForm__group-input:-ms-input-placeholder {
  color: white;
}
.footerForm__group-input::-ms-input-placeholder {
  color: white;
}
.footerForm__group-input:focus::placeholder {
  color: transparent;
}
.footerForm__group-input:focus:-ms-input-placeholder {
  color: transparent;
}
.footerForm__group-input:focus::-ms-input-placeholder {
  color: transparent;
}
.footerForm__group-button {
  width: 100%;
  outline: none !important;
  background: #961f5f !important;
  border-radius: 46px !important;
  border: 1px solid #961f5f !important;
  line-height: 1 !important;
  padding: 10px 20px !important;
  color: white !important;
}
.footerForm__group-button:hover {
  background-color: transparent !important;
  color: black !important;
}
.news-signUp__list-link-wrap.news-signUp__list-link-wrap-title-mob {
  display: flex !important;
  height: 48px;
  align-items: center;
  padding-left: 20px;
}
.news-signUp__list-link-wrap.news-signUp__list-link-wrap-title-mob span {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: #000000;
}
.news-signUp__list-link-wrap:nth-child(2) {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
}
.news_post-signUp__hint {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .footerForm {
    flex-direction: row;
  }
  .footerForm__group {
    margin: 0 10px;
    width: 30%;
  }
}
@media screen and (min-width: 991px) {
  .footerFormWrap {
    padding: 35px;
  }
  .footerForm__group {
    margin: 0 30px;
    width: 250px;
  }
}

span.error-phone-number {
  font-size: 13px;
  color: rgba(255, 3, 3, 0.5);
  text-align: right;
  display: flex;
  justify-content: right;
  font-family: "Calibri";
  margin-top: 5px;
}
span.error-name {
  font-size: 13px;
  color: rgba(255, 3, 3, 0.5);
  text-align: right;
  display: flex;
  justify-content: right;
  font-family: "Calibri";
  margin-top: 5px;
}
.wpcf7 .wpcf7-submit:disabled {
  background: #fff;
  border-color: #000;
  color: #000 !important;
}

/* accordion-unik-price */

.accordion.accordion-unik-price {
  width: 100% !important;
}

.accordion.accordion-unik-price .accordion-body__contents ul {
  font-family: "Calibri" !important;
}
.accordion.accordion-unik-price .accordion-body__contents {
  line-height: 1.6;
}
@media (max-width: 1880px) {
  /* .accordion.accordion-unik-price .accordion-body__contents p:first-child {
    font-size: 15px;
  } */
}
@media (max-width: 1599px) {
  .accordion.accordion-unik-price .accordion-body__contents {
    font-size: 16px;
  }
  /* .accordion.accordion-unik-price .accordion-body__contents p:first-child {
    font-size: 13px;
  } */
}
@media (max-width: 1299px) {
  .accordion.accordion-unik-price .accordion-body__contents {
    font-size: 13px;
  }
  /* .accordion.accordion-unik-price .accordion-body__contents p:first-child {
    font-size: 11px;
  } */
}
@media (max-width: 767px) {
  .accordion.accordion-unik-price .accordion-body__contents {
    font-size: 14px;
  }
  /* .accordion.accordion-unik-price .accordion-body__contents p:first-child {
    font-size: 14px;
  } */
}

.header-logo-m7:focus,
.header-logo-m7:focus img {
  outline: none !important;
}
.header-logo-m7:-webkit-any-link:focus-visible {
  outline: none !important;
}

.desktop-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }

  .desktop-hidden {
    display: block;
  }

  .mobile-phone:focus img {
    outline: none !important;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }

  header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1111;
  }

  header .header {
    transition: height 0.3s ease-in;
  }

  header.header-small .header {
    height: 90px;
  }

  .burger-icon {
    transition: transform 0.3s ease-in;
  }

  .site-title {
    margin-bottom: 0;
    transition: transform 0.3s ease-in;
  }

  header.header-small .burger-icon {
    transform: scale(0.9);
  }

  header.header-small .site-title {
    transform: scale(0.9);
  }
}
