@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Georgia Regular";
  src: url("../fonts/georgia.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Georgia Italic";
  src: url("../fonts/georgiai.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Georgia Bold";
  src: url("../fonts/georgiab.ttf") format("truetype");
  font-weight: 700;
}
:root {
  --regularGeorgia: "Georgia Regular";
  --italicGeorgia: "Georgia Italic";
  --boldGeorgia: "Georgia Bold";
  --montserrat: "Montserrat", serif;
}

:root {
  --primary-n: #295333;
  --accent-n: #9C1E31;
}

/* General styles
 ===================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	text-align:justify;
}

body.no-scroll {
  overflow: hidden;
}

.heading-3 {
  font-family: var(--regularGeorgia);
  font-size: 40px;
  color: var(--primary-n);
  text-align: center;
}
.heading-3.underline::after {
  content: "";
  display: block;
  background-color: var(--accent-n);
  width: 200px;
  height: 1px;
  margin: 15px auto 37px auto;
}
.heading-3.underline.long::after {
  width: 100%;
  max-width: 474px;
}

.n-img {
  display: block;
  width: 100%;
  height: auto;
}

.n-btn {
  border: none;
  background-color: var(--accent-n);
  color: #fff;
  cursor: pointer;
  min-height: 42px;
  max-width: 208px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-family: var(--montserrat);
  font-size: 15px;
  text-decoration: none;
}
.n-btn:hover {
  color: #fff;
}
.n-btn:focus {
  outline: none;
  color: #fff;
}
.n-btn--alt {
  background-color: var(--primary-n);
  text-transform: uppercase;
  max-width: 234px;
}
.n-btn--outline {
  background-color: #fff;
  border: 1px solid var(--accent-n);
  color: var(--accent-n);
}

.n-container {
  max-width: 1632px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.n-header {
  background-color: var(--primary-n);
  border-bottom: 8px solid var(--accent-n);
  position: relative;
  z-index: 1000;
}

.n-header__nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  max-width: 1030px;
  margin: 0 auto;
}

.n-header__menu {
  display: flex;
  gap: 49px;
}
.n-header__menu .menu-item {
  list-style-type: none;
}
.n-header__menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: var(--regularGeorgia);
  font-size: 16px;
}

.n-footer {
  background-color: var(--primary-n);
  min-height: 175px;
  border-top: 12px solid var(--accent-n);
}

.n-footer__inner {
  display: flex;
  justify-content: space-between;
  padding-left: 70px;
}

.n-footer__left {
  padding: 36px 0 37px;
}

.n-footer__h5 {
  font-family: var(--regularGeorgia);
  font-size: 20px;
  color: #fff;
  margin: 20px 0 12px;
}

.n-footer__social {
  display: flex;
  gap: 28px;
  align-items: center;
}

.n-footer__logos {
  display: flex;
  gap: 58px;
  max-width: 150px;
}

.n-footer__newsletter {
  color: #fff;
  font-family: var(--montserrat);
  font-size: 15px;
  text-decoration: none;
}
.n-footer__newsletter:hover {
  text-decoration: underline;
  color: #fff;
}

.n-footer__top {
  display: flex;
  gap: 58px;
  align-items: center;
}

.n-footer__bottom {
  display: flex;
  margin-top: 46px;
  justify-content: flex-end;
  gap: 58px;
}

.n-footer__copy {
  color: #fff;
  font-family: var(--montserrat);
  font-size: 15px;
}

.n-footer__bottom-menu {
  display: flex;
  gap: 28px;
}
.n-footer__bottom-menu .menu-item {
  list-style-type: none;
  position: relative;
}
.n-footer__bottom-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: var(--montserrat);
  font-size: 15px;
}
.n-footer__bottom-menu .menu-item::before {
  content: "";
  height: 24px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  left: -14px;
  bottom: -2px;
}

.n-footer__menu {
  display: flex;
  gap: 58px;
  align-items: center;
}
.n-footer__menu .menu-item {
  list-style-type: none;
}
.n-footer__menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: var(--regularGeorgia);
  font-size: 20px;
}

.n-footer__icon img {
  width: 21px;
}

.n-footer__center {
  padding: 36px 0 37px;
}

.n-footer__img {
  max-width: 188px;
}

.m-footer {
  background-color: var(--primary-n);
  border-top: 15px solid var(--accent-n);
  padding: 8px 0 18px;
  position: relative;
}

.m-footer__logo img {
  max-width: 155px;
  width: 100%;
  height: auto;
  display: block;
}

.m-footer__menu {
  list-style-type: none;
}
.m-footer__menu .menu-item {
  margin-bottom: 8px;
  list-style-type: none;
}
.m-footer__menu .menu-item a {
  color: #fff;
  font-family: var(--regularGeorgia);
  font-size: 15px;
  text-decoration: none;
}
.m-footer__menu .menu-item .sub-menu {
  list-style-type: none;
  margin-top: 8px;
}
.m-footer__menu .menu-item .sub-menu li {
  margin-bottom: 8px;
}

.m-header {
  width: 100vw;
  background-color: transparent;
  min-height: calc(100vh - 82px);
  position: fixed;
  top: 85px;
  left: -100%;
  z-index: 1000;
  transition: left 0.3s ease;
}
.m-header.active {
  left: 0;
}

.m-header__menu {
  text-align: center;
  list-style-type: none;
}
.m-header__menu li {
  margin-bottom: 23px;
}
.m-header__menu li a {
  color: #fff;
  font-family: var(--regularGeorgia);
  font-size: 25px;
  text-decoration: none;
}

.m-header__inner {
  max-width: 430px;
  width: 100%;
  background-color: var(--primary-n);
  min-height: calc(100vh - 90px);
  padding-top: 50px;
}

.n-header__right {
  display: flex;
}

.n-header__burger {
  display: none;
}

.m-footer__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
}
.m-footer__corner img {
  width: 78px;
}

.m-footer__menu2 {
  list-style: none;
  list-style-type: none;
}
.m-footer__menu2 .menu-item {
  margin-bottom: 8px;
  list-style: none;
  list-style-type: none;
}
.m-footer__menu2 .menu-item .sub-menu {
  list-style-type: none;
  margin-top: 8px;
}
.m-footer__menu2 .menu-item .sub-menu li {
  margin-bottom: 8px;
}
.m-footer__menu2 .menu-item a {
  color: #fff;
  font-family: var(--montserrat);
  font-size: 10px;
  text-decoration: none;
}

.m-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
  margin-top: -67px;
  /*margin-top: -110px;*/
}

.m-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  padding: 0 20px;
  margin-top: 35px;
}

.m-footer__newsletter {
  max-width: 134px;
  font-size: 9px;
  min-height: 23px;
  display: none;
}

.m-footer__social {
  display: flex;
  gap: 17px;
}

.m-footer__icon {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.n-search {
  margin-top: -98px;
  position: relative;
  z-index: 2;
}

.n-search__inner {
  background-color: #6F8D79;
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 26px 22px 26px;
}

.n-search__bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-right: 51px;
}

.n-search__check input[type=checkbox] {
  display: none;
}
.n-search__check label {
  font-family: var(--montserrat);
  font-size: 16px;
  color: #fff;
}
.n-search__check input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.n-search__check input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  background-color: transparent;
  background-size: 24px;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s ease;
}
.n-search__check input[type=checkbox]:checked + label:before {
  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.18);
}

@media (min-width: 768px) {
  .n-search__check input[type=checkbox] + label {
    min-width: 172px;
  }
}
.c-lanc__months input[type=checkbox] {
  display: none;
}
.c-lanc__months span {
  font-family: var(--montserrat);
  font-size: 16px;
  color: var(--primary-n);
}
.c-lanc__months input[type=checkbox] + span {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.c-lanc__months input[type=checkbox] + span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-n);
  background-color: transparent;
  background-size: 24px;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -28px;
  transition: all 0.12s ease;
}
.c-lanc__months input[type=checkbox]:checked + span:before {
  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-color: #6F8D79;
}

.n-search__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.n-search__form .selectric,
.m-search__form .selectric {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid #fff;
  border-radius: 0;
  box-shadow: none;
  min-height: 47px;
}
.n-search__form .selectric .label,
.m-search__form .selectric .label {
  font-family: var(--montserrat);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-shadow: unset;
  min-height: 47px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.n-search__form .selectric .button,
.m-search__form .selectric .button {
  border: none;
  font-size: 0;
  min-height: 47px;
  height: auto;
  bottom: 0;
  width: 46px;
}
.n-search__form .selectric .button::before,
.m-search__form .selectric .button::before {
  border: none !important;
}
.n-search__form .selectric .button::after,
.m-search__form .selectric .button::after {
  opacity: 1 !important;
  content: "";
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  width: 12px;
  height: 13px;
  background-size: contain;
  border: none !important;
  right: 16px;
  top: 22px;
}
.n-search__form .n-btn,
.m-search__form .n-btn {
  max-width: unset;
}
.n-search__form .selectric-items,
.m-search__form .selectric-items {
  background-color: #6F8D79;
  border: none;
  box-shadow: none;
}
.n-search__form .selectric-items ul,
.m-search__form .selectric-items ul {
  padding: 0 15px;
}
.n-search__form .selectric-items li,
.m-search__form .selectric-items li {
  color: #fff;
  font-family: var(--montserrat);
  font-size: 16px;
  border: none;
}
.n-search__form .selectric-items li:hover,
.m-search__form .selectric-items li:hover {
  background: var(--primary-n);
}
.n-search__form .selectric-items li.highlighted,
.m-search__form .selectric-items li.highlighted {
  background: transparent;
  border: none;
}

.m-search__checkboxes {
  margin: 14px 0;
  display: flex;
  gap: 34px;
  justify-content: center;
}

.m-search {
  display: none;
  background-color: #6F8D79;
  margin-top: 12px;
  padding: 18px 0;
}
.m-search .n-search__input {
  min-height: 32px;
  padding: 0 10px;
}
.m-search .n-search__input::-moz-placeholder {
  text-align: center;
}
.m-search .n-search__input::placeholder {
  text-align: center;
}

.m-search__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}

.m-search__form .selectric .label {
  min-height: 31px;
}

.m-search__form .selectric {
  min-height: 31px;
}

.m-search__top {
  max-width: 328px;
  width: 100%;
  margin: 0 auto;
}

.m-search__inc {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.m-search__form .selectric .button::after {
  top: 13px;
}

.m-search__more {
  max-width: 380px;
  width: 100%;
  margin: 20px auto 18px auto;
  display: none;
}

.m-search__form .selectric .button {
  min-height: 31px;
}

.m-search__adv {
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-family: var(--montserrat);
  font-size: 13px;
  transition: all 0.3s ease;
}
.m-search__adv.active {
  font-weight: 700;
}

.m-search__btn {
  max-width: unset;
  width: 100%;
  min-height: 32px;
}

.n-search__left {
  display: grid;
  grid-template-rows: auto 1fr;
  /* First row auto height, second row fills remaining space */
  grid-template-columns: 1fr 1fr;
  /* Two columns of equal width */
  gap: 20px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.n-search__input {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.18);
  min-height: 47px;
  font-family: var(--montserrat);
  font-size: 16px;
  color: #fff;
  padding-left: 23px;
  width: 100%;
  border-radius: 0;
}
.n-search__input.full {
  grid-column: 1/span 2;
  /* Span across both columns in the first row */
}
.n-search__input:focus {
  outline: none;
}
.n-search__input::-moz-placeholder {
  color: #fff;
}
.n-search__input::placeholder {
  color: #fff;
}

.n-search__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/*===== Effect only Chrome on mac (aslo need add '.mac.chrome' classes to body by js) =====*/
.mac.chrome .yourClass {
  padding: 0;
}

/*===== Effect only Safari =====*/
_::-webkit-full-page-media,
_:future,
:root .yourClass {
  padding: 0;
}

.n-privacy {
  padding: 85px 0 103px;
}

.n-privacy__content {
  max-width: 1364px;
  width: 100%;
  margin: 122px auto 0 auto;
  font-family: var(--montserrat);
}
.n-privacy__content span {
  color: #4577B1;
}
.n-privacy__content h1,
.n-privacy__content h2,
.n-privacy__content h3,
.n-privacy__content h4,
.n-privacy__content h5,
.n-privacy__content h6 {
  color: var(--primary-n);
  margin-bottom: 24px;
}
.n-privacy__content h6 {
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-n);
  margin-bottom: 28px;
}
.n-privacy__content h4 {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-n);
  margin-bottom: 24px;
}
.n-privacy__content ol li {
  color: var(--primary-n);
}
.n-privacy__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
  margin-bottom: 10px;
  font-family: var(--montserrat);
  font-size: 15px;
}
.n-privacy__content ul li::before {
  content: "";
  display: block;
  min-width: 5px;
  min-height: 5px;
  margin-top: 7px;
  border-radius: 100%;
  background-color: #000;
}
.n-privacy__content strong {
  color: var(--primary-n);
  font-weight: 700;
}
.n-privacy__content a {
  color: var(--primary-n);
}
.n-privacy__content p {
  margin-bottom: 28px;
  font-size: 15px;
}

.c-lanc__months {
  display: flex;
  gap: 80px;
  padding-left: 30px;
}
.c-lanc__months .wpcf7-list-item label {
  margin-left: 0;
}
.c-lanc__months .wpcf7-exclusive-checkbox {
  display: flex;
  gap: 80px;
}
.c-lanc__months span {
  color: var(--primary-n);
}

.m-app__consent {
  padding-left: 30px;
  padding-bottom: 30px;
}

.c-lanc__month {
  padding-top: 60px;
}

.m-app__exc {
  padding-top: 10px;
}
.m-app__exc textarea {
  min-height: 107px;
  max-height: 107px;
}

.m-app__excl {
  padding-top: 40px;
}
.m-app__excl textarea {
  min-height: 182px;
}

.c-lanc__best {
  padding: 37px 0;
  border-top: 1px solid var(--primary-n);
  border-bottom: 1px solid var(--primary-n);
}

.short-hero {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 330px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.short-hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.short-hero__h1 {
  font-size: 40px;
  font-family: var(--regularGeorgia);
  font-weight: 400;
  color: #fff;
}

.n-artc {
  max-width: 1364px;
  width: 100%;
  margin: 0 auto;
}

.n-artc__img {
  padding: 37px 0 87px;
}

.n-artc__title {
  font-family: var(--montserrat);
  font-size: 40px;
  color: var(--primary-n);
  margin-bottom: 13px;
}

.n-artc__photo {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.n-artc__name {
  margin: 40px 0 17px;
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: #6F8D79;
}

.n-artc__social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.n-artc__images {
  max-width: 1364px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px 48px;
  margin: 105px auto 0 auto;
}

.n-artc__line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.n-artc__news {
  display: none;
}

.n-artc__mob {
  display: none;
}

.n-artc__more .f-pro__img {
  opacity: 40%;
}
.n-artc__more .swiper-slide-active .f-pro__img {
  opacity: 100%;
}

.n-artc__link {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--accent-n);
  text-decoration: none;
  transition: color 0.3s ease;
}
.n-artc__link:hover {
  color: #438135;
}

.n-artc__published {
  font-family: var(--montserrat);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--accent-n);
}

.n-artc__content {
  margin: 56px 0 70px 0;
}
.n-artc__content p {
  font-family: var(--montserrat);
  font-size: 20px;
  margin-bottom: 38px;
}

.n-journal {
  padding: 87px 0;
}

.n-journal__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 82px;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.res-grid__col {
  box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
}

.n-journal__card {
  box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
}

.n-journal__main {
  padding: 30px 43px 47px 43px;
}

.n-journal__h4 {
  color: #6F8D79;
  font-family: var(--montserrat);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
	text-align:left;
}

.n-journal__helper {
  margin-bottom: 32px;
}

.n-journal__excerpt {
  margin: 20px 0 0;
  font-family: var(--montserrat);
  font-size: 12px;
  color: #6F8D79;
}

.q-slider {
  background-color: #6F8D79;
  padding: 144px 0 122px;
}
.q-slider .n-container {
  position: relative;
}

.q-slider__swiper {
  position: static !important;
}
.q-slider__swiper .swiper-wrapper {
  position: static !important;
}

.q-slider__fake {
  max-width: 1360px;
  margin: 0 auto;
}

.q-slider__open {
  display: block;
  position: absolute;
  top: -132px;
  left: 24px;
  font-family: var(--regularGeorgia);
  font-size: 400px;
  color: var(--primary-n);
  z-index: 2;
}

.q-slider__close {
  display: block;
  position: absolute;
  bottom: -341px;
  right: 23px;
  font-family: var(--regularGeorgia);
  font-size: 400px;
  color: var(--primary-n);
  z-index: 2;
}

.q-slider__box {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
}

.q-slider__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.q-slider__prev {
  opacity: 1 !important;
  position: static !important;
}
.q-slider__prev::after {
  color: #fff;
}

.q-slider__next {
  opacity: 1 !important;
  position: static !important;
}
.q-slider__next::after {
  color: #fff;
}

.q-slider__mobac {
  display: none;
}

.q-slider__img {
  max-width: 362px;
}

.q-slider__content {
  padding: 20px 46px 10px 62px;
  background-color: #fff;
}

.q-slider__h5 {
  font-family: var(--regularGeorgia);
  font-weight: 400;
  font-size: 40px;
  color: var(--primary-n);
	
}

.q-slider__text {
  margin: 57px 0;
}
.q-slider__text p {
  font-family: var(--montserrat);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.4;
}
.q-slider__text p:last-child {
  margin-bottom: 0;
}

.q-slider__name {
  font-family: var(--montserrat);
  font-size: 30px;
  color: #6F8D79;
}

.q-slider__pos {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--accent-n);
  margin-top: 10px;
  text-transform: uppercase;
}

.w-us {
  padding: 88px 0;
}

.w-us__h3.underline::after {
  width: 100%;
  max-width: 318px;
}

.w-us__item {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto 40px auto;
  padding: 54px 52px;
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.w-us-top__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.w-us-top__left {
  flex-basis: 80%;
}

.w-us-top__h4 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 30px;
  color: var(--primary-n);
  margin-bottom: 12px;
}

.w-us-top__area {
  display: flex;
  gap: 3px;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  color: var(--primary-n);
}

.w-us-top__font {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 28px;
  color: var(--primary-n);
}
.w-us-top__font:last-child {
  margin-bottom: 0;
}

.w-us-top__apply {
  max-width: 207px;
}

.w-us-top__right {
  flex-basis: 18%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.w-us-bottom {
  padding-top: 117px;
  display: none;
}
.w-us-bottom.active {
  display: block;
}

.n-search__form .n-btn,
.m-search__form .n-btn {
  border-radius: 0;
}

.w-us-bottom__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 12px;
}

.w-us-bottom__content p {
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.5;
}
.w-us-bottom__content p a {
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.w-us-bottom__content strong {
  font-weight: 600;
}
.w-us-bottom__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
  margin-bottom: 18px;
  font-family: var(--montserrat);
  font-size: 15px;
}
.w-us-bottom__content ul li::before {
  content: "";
  display: block;
  min-width: 5px;
  min-height: 5px;
  margin-top: 7px;
  border-radius: 100%;
  background-color: #000;
}

.s-profile {
  display: none;
  /* margin-top: 80px;
  position: relative; */
  position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #fff;
}

body.popup-open {
    overflow: hidden;
    height: 100%;
     position: fixed; /* Prevents content shifting */
        width: 100%; /* Prevents content shifting */
}
.s-profile__bottom {
  padding: 72px 0 85px;
}

.s-profile__qual {
  max-width: 1360px;
  width: 100%;
  margin: 50px auto 0 auto;
}

.s-profile__video {
  width: 100%;
  max-width: 1360px;
  width: 100%;
  margin: 53px auto 0 auto;
  position: relative;
}
.s-profile__video video {
  width: 100%;
  height: auto;
}
.s-profile__video.active .s-profile__play {
  opacity: 1;
}

.prop-plan img {
  width: 100%;
  height: auto;
  display: block;
}

.s-profile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.s-profile__play img {
  pointer-events: none;
}

.s-profile__quali {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.s-profile__year {
  font-family: var(--montserrat);
  font-size: 16px;
  color: var(--primary-n);
  font-weight: 500;
  min-width: 40px;
}

.s-profile__h5 {
  font-family: var(--regularGeorgia);
  font-weight: 400;
  font-size: 30px;
  color: var(--primary-n);
  margin-bottom: 20px;
}

.s-profile__achiev {
  font-family: var(--montserrat);
  font-size: 15px;
}

.s-profile__article {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
.s-profile__article h3 {
  margin-bottom: 20px;
  font-family: var(--regularGeorgia);
  font-weight: 400;
  font-size: 30px;
  color: var(--primary-n);
}
.s-profile__article ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin-bottom: 18px;
  font-family: var(--montserrat);
  font-size: 15px;
}
.s-profile__article ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
}

.s-profile__top {
  background-color: #6f8d79;
  padding: 144px 0 98px;
  position: relative;
}

.s-profile__box {
  display: flex;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.s-profile__img {
  max-width: 360px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.s-profile__content {
  background-color: #fff;
  padding-left: 60px;
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.c-lanc__selects {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-lanc__selects .wpcf7-form-control-wrap {
  width: 48%;
}
.c-lanc__selects .selectric {
  border: 1px solid var(--primary-n);
  border-radius: 0;
  min-height: 40px;
}
.c-lanc__selects ul li {
  list-style: none;
}
.c-lanc__selects ul li::before {
  display: none;
}
.c-lanc__selects ul li:hover {
  background: #6F8D79;
}
.c-lanc__selects ul li.highlighted {
  background: #6F8D79;
}
.c-lanc__selects .label {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--primary-n);
  padding: 6px 12px;
}
.c-lanc__selects .button {
  height: 40px;
  border-left: 1px solid var(--primary-n);
  width: 40px;
}
.c-lanc__selects .button::after {
  content: "";
  display: block;
  top: 13px;
  right: 10px;
  width: 18px;
  height: 18px;
  background-image: url("../img/icons/chevron-down-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}

.c-lanc__three-selects {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-lanc__three-selects .wpcf7-form-control-wrap {
  width: 31%;
}
.c-lanc__three-selects .selectric {
  border: 1px solid var(--primary-n);
  border-radius: 0;
  min-height: 40px;
}
.c-lanc__three-selects ul li {
  list-style: none;
}
.c-lanc__three-selects ul li::before {
  display: none;
}
.c-lanc__three-selects ul li:hover {
  background: #6F8D79;
}
.c-lanc__three-selects ul li.highlighted {
  background: #6F8D79;
}
.c-lanc__three-selects .label {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--primary-n);
  padding: 6px 12px;
}
.c-lanc__three-selects .button {
  height: 40px;
  border-left: 1px solid var(--primary-n);
  width: 40px;
}
.c-lanc__three-selects .button::after {
  content: "";
  display: block;
  top: 13px;
  right: 10px;
  width: 18px;
  height: 18px;
  background-image: url("../img/icons/chevron-down-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}

.c-lanc__single-select {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-lanc__single-select .wpcf7-form-control-wrap {
  width: 100%;
}
.c-lanc__single-select .selectric {
  border: 1px solid var(--primary-n);
  border-radius: 0;
  min-height: 40px;
}
.c-lanc__single-select ul li {
  list-style: none;
}
.c-lanc__single-select ul li::before {
  display: none;
}
.c-lanc__single-select ul li:hover {
  background: #6F8D79;
}
.c-lanc__single-select ul li.highlighted {
  background: #6F8D79;
}
.c-lanc__single-select .label {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--primary-n);
  padding: 6px 12px;
}
.c-lanc__single-select .button {
  height: 40px;
  border-left: 1px solid var(--primary-n);
  width: 40px;
}
.c-lanc__single-select .button::after {
  content: "";
  display: block;
  top: 13px;
  right: 10px;
  width: 18px;
  height: 18px;
  background-image: url("../img/icons/chevron-down-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}

.lanc-team__photo {
  max-height: 303px;
  overflow: hidden;
}
.lanc-team__photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.s-profile__short {
  display: none;
}

.s-profile__schedule {
  display: none;
  margin: 18px auto 0 auto;
  max-width: unset !important;
}
.s-profile__schedule .n-areas__line {
  max-width: unset;
}

.s-profile__left {
  flex-basis: 63%;
}

.s-profile__name {
  font-family: var(--regularGeorgia);
  font-size: 40px;
  color: var(--primary-n);
}

.s-profile__pos {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 30px;
  color: var(--primary-n);
}

.s-profile__h4 {
  /*margin-top: 80px;*/
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  color: var(--accent-n);
  text-transform: uppercase;
}

.s-profile__text {
  margin-top: 10px;
  max-width: 555px;
  width: 100%;
}
.s-profile__text p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  color: #262626;
  margin-bottom: 24px;
}
.s-profile__text p:last-child {
  margin-bottom: 0;
}

.s-profile__right {
  flex-basis: 35%;
}

.s-profile__line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 17px;
}

.s-profile__link {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-n);
  text-decoration: none;
  transition: color 0.3s ease;
}
.s-profile__link:hover {
  color: #438135;
}

.meet-team {
  padding: 76px 0 20px;
}

.meet-team__nav {
  max-width: 1070px;
  width: 100%;
  margin: 68px auto 50px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.meet-team__btn {
  min-height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6f8d79;
  color: #fff;
  font-family: var(--montserrat);
  font-size: 16px;
  padding: 0 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.meet-team__btn.active {
  color: #fff;
  border: 1px solid #fff;
  background-color: var(--primary-n);
}

.meet-team__wrapper {
  /*margin: 150px auto 0 auto;*/
  display: flex;
  gap: 46px 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.meet-team__card {
  max-width: 303px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
}

.meet-team__name {
  margin-top: 44px;
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
  text-decoration: none;
}

.meet-team__pos {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--accent-n);
  margin-top: 5px;
  text-transform: uppercase;
  text-decoration: none;
	text-align:left;
}

.page-id-26029 .n-privacy__h3 {
  display: none;
}

.c-lanc {
  padding: 97px 0;
}

.c-lanc__form {
  max-width: 806px;
  width: 100%;
  margin: 110px auto 0 auto;
}
.c-lanc__form span {
  color: var(--primary-n);
}

.n-artc__content h1,
.n-artc__content h2,
.n-artc__content h3,
.n-artc__content h4,
.n-artc__content h5,
.n-artc__content h6 {
  color: var(--primary-n);
  margin-bottom: 24px;
}
.n-artc__content h6 {
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-n);
  margin-bottom: 28px;
}
.n-artc__content h4 {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-n);
  margin-bottom: 24px;
}
.n-artc__content ol li {
  color: var(--primary-n);
}
.n-artc__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
  margin-bottom: 10px;
  font-family: var(--montserrat);
  font-size: 15px;
}
.n-artc__content ul li::before {
  content: "";
  display: block;
  min-width: 5px;
  min-height: 5px;
  margin-top: 7px;
  border-radius: 100%;
  background-color: #000;
}
.n-artc__content strong {
  color: var(--primary-n);
  font-weight: 700;
}
.n-artc__content a {
  color: var(--primary-n);
}
.n-artc__content p {
  margin-bottom: 28px;
  font-size: 15px;
}

.lanc-team__textcontent {
  max-width: 1123px;
  width: 100%;
  margin: 0 auto 66px auto;
}
.lanc-team__textcontent p {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-n);
  text-align: center;
  margin-bottom: 40px;
}
.lanc-team__textcontent p:last-child {
  margin-bottom: 0;
}

.s-profile__text {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--primary-n);
}
.s-profile__text h1,
.s-profile__text h2,
.s-profile__text h3,
.s-profile__text h4,
.s-profile__text h5,
.s-profile__text h6 {
  color: var(--primary-n);
  margin-bottom: 24px;
}
.s-profile__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
  margin-bottom: 10px;
  font-family: var(--montserrat);
  font-size: 15px;
}
.s-profile__text ul li::before {
  content: "";
  display: block;
  min-width: 5px;
  min-height: 5px;
  margin-top: 7px;
  border-radius: 100%;
  background-color: #000;
}

.c-lanc__input,
.c-lanc__textarea {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--primary-n);
  min-height: 34px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  font-family: var(--montserrat);
  font-weight: 600;
  color: var(--primary-n);
  font-size: 18px;
  padding: 17px 0 17px 30px;
  margin-bottom: 20px;
  border-radius: 0;
}
.c-lanc__input::-moz-placeholder, .c-lanc__textarea::-moz-placeholder {
  color: var(--primary-n);
}
.c-lanc__input::placeholder,
.c-lanc__textarea::placeholder {
  color: var(--primary-n);
}
.c-lanc__input:focus,
.c-lanc__textarea:focus {
  outline: none;
}

.c-lanc__helper {
  display: flex;
  align-items: center;
  gap: 36px;
}

.c-lanc__chev {
  margin-top: 12px;
  display: none;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none !important;
}

  .close-profile {
      position: sticky;
    top: 15px;
    right: 100px;
      text-align: right;
        z-index: 9999999999;
        max-width: 1360px;
        margin: 0 auto -70px; 
        cursor: pointer;
        
	}	
   .close-profile img {
    background: #000;
    border-radius: 100%; 
   }
.n-journal .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.n-journal .wp-pagenavi .pages {
  display: none;
}
.n-journal .wp-pagenavi a:hover, .n-journal .wp-pagenavi span.current {
  border-color: #6F8D79;
}
.n-journal .wp-pagenavi .current {
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.n-journal .wp-pagenavi .extend {
  border-color: #6F8D79;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.n-journal .wp-pagenavi .extend::after {
  content: "...";
  display: block;
  font-family: var(--montserrat);
  text-decoration: none;
  font-size: 15px;
  color: #262626;
}
.n-journal .wp-pagenavi span {
  font-family: var(--montserrat);
  text-decoration: none;
  font-size: 15px;
  color: var(--primary-n);
}
.n-journal .wp-pagenavi a {
  font-family: var(--montserrat);
  text-decoration: none;
  font-size: 15px;
  color: var(--primary-n);
  border-color: #6F8D79;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.n-journal .wp-pagenavi .nextpostslink {
  width: 72px;
}
.n-journal .wp-pagenavi .previouspostslink {
  width: 92px;
}

.n-artc__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(#9C182F 0deg 180deg, #295135 180deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.n-artc__person {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
  display: block;
}

.n-cont__form {
  max-width: 806px;
  width: 100%;
  margin: 0 auto;
}

.n-journal__img {
  max-height: 243px;
  max-width: 397px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-id-26093 span[data-name=textarea-522] .c-lanc__textarea {
  border-bottom: none;
}

.page-id-26093 .m-app__excl {
  border-top: 1px solid var(--primary-n);
}

.page-id-26029 .n-privacy {
  padding: 0;
}

.page-id-26093 .n-privacy {
  padding: 0;
}

.page-id-26093 .n-privacy__h3 {
  display: none;
}

.c-lanc__textarea {
  min-height: 124px;
  max-height: 124px;
  resize: none;
}

.c-lanc__h5 {
  margin: 40px 0 16px 0;
  font-family: var(--montserrat);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-n);
}

.c-lanc__agree {
  margin-bottom: 16px;
}
/*.c-lanc__agree span {
  color: var(--primary-n);
}*/
.c-lanc__agree .wpcf7-exclusive-checkbox {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.c-lanc__agree input[type=checkbox] {
  display: none;
}
.c-lanc__agree label {
  font-family: var(--montserrat);
  font-size: 16px;
  color: var(--primary-n);
}
.c-lanc__agree input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 44px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.c-lanc__agree input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-n);
  background-color: transparent;
  background-size: 24px;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s ease;
}
.c-lanc__agree input[type=checkbox]:checked + label:before {
  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-color: var(--primary-n);
}

.c-lanc__agree input[type=checkbox] {
  display: none;
}
.c-lanc__agree label {
  font-family: var(--montserrat);
  font-size: 16px;
  color: var(--primary-n);
}
.c-lanc__agree input[type=checkbox] + span {
  display: block;
  position: relative;
  padding-left: 44px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.c-lanc__agree input[type=checkbox] + span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-n);
  background-color: transparent;
  background-size: 24px;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s ease;
}
.c-lanc__agree input[type=checkbox]:checked + span:before {
  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-color: var(--primary-n);
}

@media (min-width: 700px) {
  .c-lanc__agree input[type=checkbox] + span {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.n-lanc__team {
  display: none;
}

.c-lanc__exclusive {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--primary-n);
  padding-left: 30px;
}

.c-lanc__submit {
  max-width: 256px;
  margin: 42px auto 0 auto;
  font-size: 28px;
	text-align:center;
}

.c-lanc__h4 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-n);
}

.lanc-team__title {
  margin-bottom: 101px;
}

.n-lanc__featured {
  padding: 30px 0;
}

.c-lanc__texta2 {
  resize: none;
  border: 1px solid var(--primary-n);
  margin: 10px auto 0 auto;
  max-width: 732px;
  width: 100%;
  min-height: 193px;
  font-family: var(--montserrat);
  font-weight: 400;
  color: var(--primary-n);
  font-size: 16px;
  padding: 20px;
}
.c-lanc__texta2:focus {
  outline: none;
}

.n-areas {
  background-color: #6f8d79;
  padding: 57px 0 98px;
}

.n-hero__slide {
  min-height: 645px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.n-areas__box {
  margin: 72px auto 0 auto;
  display: flex;
  width: 100%;
}
.n-areas__box.active {
  display: flex;
}

.n-areas__map {
  flex-basis: 30%;
  display: flex;
}
.n-areas__map .acf-map {
  width: 100%;
}

.n-areas__content {
  flex-basis: 70%;
  background-color: #fff;
  padding: 20px 0 44px;
}

.n-areas__inner {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.n-areas__h3 {
  font-family: var(--regularGeorgia);
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-n);
  margin-top: 50px;
}

.n-areas__h4 {
  font-family: var(--montserrat);
  font-size: 30px;
  color: #6f8d79;
  font-weight: 400;
  margin-top: 10px;
}

.n-areas__wrapper {
  margin-top: 34px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}

.n-areas__left {
  flex-basis: 58%;
}

.n-areas__schedule {
  max-width: 320px;
  width: 100%;
}

.n-areas__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
  width: 100%;
  gap: 12px;
  margin-bottom: 16px;
}

.n-areas__day {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.n-areas__time {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 15px;
  color: #000;
}

.n-areas__right {
  flex-basis: 40%;
}

.n-areas__line2 {
  /*display: flex;*/
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.n-areas__line2 img {
	float:left;
	margin-right:10px;
}

.n-areas__link {
  font-family: var(--montserrat);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-n);
  text-decoration: none;
}

.n-areas__address {
  font-family: var(--montserrat);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-n);
  font-style: normal;
  max-width: 220px;
	text-align:left;
}

.n-areas__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.n-areas__btn {
  max-width: 223px;
  width: 100%;
  min-height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--primary-n);
  font-family: var(--montserrat);
  font-size: 16px;
  padding: 0 10px;
  cursor: pointer;
  text-decoration: none;
}
.n-areas__btn:hover {
	color:#6f8d79 !important;	
}

.n-areas__btn.active {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}

.lanc-team {
  padding: 40px 0;
}

.lanc-team__h3 {
  margin-bottom: 87px;
}

.lanc-team__wrapper {
  display: flex;
  gap: 44px;
  justify-content: center;
  flex-wrap: wrap;
}

.lanc-team__item {
  max-width: 304px;
}

.lanc-team__main {
  padding: 48px 10px 0 0;
}

.lanc-team__name {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
}

.lanc-team__pos {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--accent-n);
  margin-top: 5px;
  text-transform: uppercase;
}

.n-header__menu .menu-item {
  position: relative;
  margin-bottom: -40px;
  padding-bottom: 40px;
}
.n-header__menu .menu-item:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.n-header__menu .menu-item .sub-menu {
  background-color: #fff;
  position: absolute;
  min-width: 220px;
  left: -5px;
  margin-top: 40px;
  padding: 22px 0 24px 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.n-header__menu .menu-item .sub-menu li {
  list-style-type: none;
  transition: background-color 0.2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin: 0;
}
.n-header__menu .menu-item .sub-menu li:first-child a {
  border: none;
}
.n-header__menu .menu-item .sub-menu li:hover {
  background-color: #6f8d79;
}
.n-header__menu .menu-item .sub-menu li:hover a {
  color: #fff;
  border-color: transparent;
}
.n-header__menu .menu-item .sub-menu li a {
  padding: 7px 0;
  display: flex;
  max-width: 170px;
  border-top: 1px solid #6f8d79;
  width: 100%;
  color: var(--primary-n);
  font-family: var(--regularGeorgia);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.prop-mob {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 17px;
}

.prop-mob__item {
  padding: 0 16px;
}
.prop-mob__item.link {
  text-decoration: none;
}
.prop-mob__item.link .prop-mob__content {
  display: none !important;
}

.prop-plan {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
  display: none;
}
.prop-plan.active {
  display: block;
}

.fancybox__thumbs {
  display: none;
}

.fancybox__content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.fancybox__image {
  max-width: 1258px;
  width: 100%;
}

.prop-gallery {
  display: none;
}
.prop-gallery.active {
  display: block;
}

.prop-gallery__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}

.n-desc {
  max-width: 1088px;
  width: 100%;
  margin: 0 auto 80px auto;
  text-align: center;
  font-family: var(--montserrat);
  font-size: 20px;
  color: var(--primary-n);
}
.n-desc p {
  margin-bottom: 36px;
}
.n-desc p:last-child {
  margin-bottom: 0;
}

.prop-map {
  display: none;
  /*margin: 47px 0;*/
}
.prop-map.active {
  display: block;
}

.prop-mat {
  display: none;
}
.prop-mat.active {
  display: block;
}

.prop-team__btn {
  margin-top: 10px;
  display: none;
}

.prop-mob__btn {
  background-color: #6f8d79;
  min-height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.prop-mob__btn.active {
  background-color: #285333;
}

.prop-mob__content {
  display: none;
  padding: 16px 0 0;
}

.prop-mob__list {
  padding: 0 12px;
}

.prop-mob__li {
  list-style-type: none;
  margin-bottom: 20px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.prop-mob__li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--primary-n);
}
.prop-mob__li a {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-n);
  text-decoration: none;
}

.prop-desc {
  padding: 34px 0 0 0;
}

.prop-desc__wrapper {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}

.prop-desc__h3 {
  font-weight: 400;
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
  margin-bottom: 27px;
}

.prop-desc__text {
  padding-bottom: 14px;
}
.prop-desc__text p {
  color: #262626;
  font-family: var(--montserrat);
  font-size: 16px;
  margin-bottom: 27px;
}

.prop-team {
  margin-bottom: 55px;
}
.prop-team.white {
  background-color: #fff;
}

.prop-team .prop-team__box {
  background-color: transparent;
}

.prop-gallery__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prop-team__box {
  align-items: center;
}

.prop-team .prop-team__content {
  padding: 0;
  justify-content: flex-start;
}

.prop-team__prop {
  background-color: #fff;
  padding: 30px 10px 30px 27px;
}

.prop-filter__two {
  display: flex;
}

.con-team {
  margin-top: 54px;
}

.prop-team .con-team__info {
  margin: 28px 0 0;
}

.prop-desc__more {
  display: none;
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}
.prop-desc__more.active {
  display: block;
}
.prop-desc__more p {
  color: #262626;
  font-family: var(--montserrat);
  font-size: 16px;
  margin-bottom: 27px;
}

.prop-desc__read {
  cursor: pointer;
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary-n);
}
.prop-desc__read.hide {
  display: none;
}

.prop-filter {
  padding: 28px 0 52px;
}

.prop-filter__wrapper {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}

.prop-mat__wrapper {
  max-width: 1268px;
  width: 100%;
  margin: 0 auto;
}
.prop-mat__wrapper ul li {
  list-style-type: none;
  margin-bottom: 20px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.prop-mat__wrapper ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--primary-n);
}
.prop-mat__wrapper ul li a {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-n);
  text-decoration: none;
}

.prop-filter__top {
  display: flex;
  align-items: center;
}

.prop-filter__tel {
  margin-right: 44px;
  margin-left: 28px;
}

.prop-filter__bottom {
  display: flex;
  gap: 35px;
  align-items: center;
  margin-top: 43px;
}

.prop-filter__btn {
  min-height: 40px;
  background-color: #6f8d79;
  padding: 0 15px;
  color: #fff;
  font-family: var(--montserrat);
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.prop-filter__btn:focus,
.prop-filter__btn:hover {
  background-color: var(--primary-n);
  color: #fff;
  outline: none;
}
.prop-filter__btn.active {
  background-color: #285333;
}

.prop-filter__book {
  max-width: 225px;
  font-size: 20px;
  font-weight: 500;
  min-height: 60px;
}

.prop-filter__link {
  font-family: var(--montserrat);
  font-size: 20px;
  color: var(--primary-n);
  text-decoration: none;
}
.prop-filter__link:hover {
  color: #438135;
}

.prop-info {
  background-color: #6f8d79;
  padding: 18px 0 24px;
}

.prop-info__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1268px;
  width: 100%;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
}

.prop-info__h4 {
  font-family: var(--regularGeorgia);
  font-size: 38px;
  color: #fff;
  font-weight: 400;
}

.page-id-20 .wpcf7-list-item-label {
  color: #fff;
}
.page-id-20 .request-property-appraisal form input[type=text],
.page-id-20 .request-property-appraisal form input[type=email],
.page-id-20 .request-property-appraisal form input[type=tel] {
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: center;
}
.page-id-20 .wpcf7-list-item {
  display: flex;
  justify-content: center;
}
.page-id-20 .request-property-appraisal form input.red-button {
  margin: 20px auto 0 auto;
  display: flex;
}

.prop-vtour {
  display: none;
}
.prop-vtour.active {
  display: block;
}

.prop-info__address {
  font-family: var(--montserrat);
  font-size: 28px;
  color: #fff;
  font-style: normal;
  max-width: 480px;
  margin-top: 5px;
  line-height: 1.2;
	text-align:left;
}

.prop-info__center {
  display: flex;
  gap: 40px;
}

.prop-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.prop-info__number {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.prop-info__offer {
  color: #fff;
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 30px;
}
.prop-info__offer span {
  display: block;
  font-family: var(--regularGeorgia);
  font-size: 40px;
}

.prop {
  border-bottom: 12px solid #fff;
}

.res-map {
  display: none;
}
.res-map.active {
  display: block;
}

.prop__prev {
  width: 25px;
  height: 50px;
  left: 60px;
}
.prop__prev::after {
  display: none;
}

.prop__img {
  max-height: 780px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prop__next {
  right: 60px;
  width: 25px;
  height: 50px;
}
.prop__next img {
  transform: rotate(180deg);
}
.prop__next::after {
  display: none;
}

.res-list__image {
  position: relative;
}

.res-map__map {
  margin-bottom: 106px;
}

.sold-pro__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 87px;
  background-color: #fff;
}
.sold-pro__item.sold .sold-pro__sold {
  display: block;
}

.sold-pro__sold {
  display: none;
  position: absolute;
  left: -24px;
  top: -24px;
}

.res-grid {
  display: none;
}
.res-grid.active {
  display: block;
}

.res-grid__wrapper {
  max-width: 1364px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
}

.res-grid__col.sold .res-grid__sold {
  display: flex;
}

.res-grid__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-grid__sold {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(111, 141, 121, 0.68);
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  display: none;
}

.res-grid__so {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.res-grid__main {
  padding: 53px 58px 45px 58px;
}

.res-grid__h4 {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
	text-align:left;
}

.res-grid__offer {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 18px;
  color: var(--accent-n);
  margin-top: 24px;
}
.res-grid__offer span {
  font-family: var(--regularGeorgia);
  font-size: 18px;
  color: var(--accent-n);
}

.res-grid__text {
  margin: 53px 0 56px 0;
  font-family: var(--montserrat);
  font-size: 15px;
}

.res-list {
  display: none;
}
.res-list.active {
  display: flex;
}

.n-resid__h3 {
  margin-top: 70px;
}
.n-resid__h3.heading-3.underline::after {
  width: 305px;
}

.n-resid__pag {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 86px;
}

.n-resid__prev img {
  transform: rotate(95deg);
}

.res-list__sold {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(111, 141, 121, 0.68);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  display: none;
}

.res-list__so {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.n-resid__numbers {
  display: flex;
  gap: 12px;
}

.n-resid__num {
  text-decoration: none;
  color: var(--accent-n);
  font-family: var(--montserrat);
  font-size: 15px;
}

.n-resid__next img {
  transform: rotate(-95deg);
}

.res-list__wrapper {
  max-width: 1364px;
  width: 100%;
  margin: 0 auto;
}

.res-list__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 87px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
}
.res-list__item.sold .res-list__sold {
  display: flex;
}
.res-list__item:nth-child(even) .res-list__image {
  order: 2;
}
.res-list__item:nth-child(even) .res-list__h4 {
  text-align: right;
}
.res-list__item:nth-child(even) .res-list__offer {
  text-align: right;
}
.res-list__item:nth-child(even) .res-list__text {
  text-align: right;
}
.res-list__item:nth-child(even) .res-list__bottom {
  justify-content: flex-end;
}
.res-list__item:nth-child(even) .res-list__content {
  order: 1;
}

.res-list__image {
  flex-basis: 45%;
  position: relative;
}

.res-list__content {
  flex-basis: 55%;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.res-list__inner {
  max-width: 585px;
  width: 100%;
  margin: 0 auto;
}

.res-list__h4 {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
	text-align:left;
}

.res-list__offer {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 18px;
  /*color: var(--accent-n);*/
	color:var(--primary-n) !important;
  margin-top: 14px;
}
.res-list__offer span {
  font-family: var(--regularGeorgia);
  font-size: 18px;
  /*color: var(--accent-n);*/
	color:dark-green;
}

.res-list__text {
  margin: 53px 0 56px 0;
  font-family: var(--montserrat);
  font-size: 15px;
}

.res-list__bottom {
  display: flex;
  gap: 34px;
}

.res-list__line {
  display: flex;
  gap: 8px;
  align-items: center;
}

.res-list__rooms {
  font-family: var(--montserrat);
  font-size: 15px;
  color: var(--accent-n);
	width:100px;
}

.n-resid__nav {
  display: flex;
  justify-content: space-between;
  max-width: 1002px;
  width: 100%;
  margin: 0 auto 65px auto;
}

.n-resid__left {
  display: flex;
  align-items: center;
}

.n-resid__search {
  color: var(--accent-n);
  font-family: var(--montserrat);
  font-size: 15px;
  text-transform: uppercase;
}
.n-resid__search span {
  margin-right: 5px;
}

.n-resid__right {
  display: flex;
  gap: 57px;
}
.n-resid__right .selectric {
  box-shadow: none;
  border: none;
  background: transparent;
}
.n-resid__right .selectric .button {
  border: none;
}
.n-resid__right .selectric .button::after {
  background-image: url("../img/icons/chevron-down-red.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  border: none;
}
.n-resid__right .selectric .label {
  min-height: 20px;
  text-shadow: none;
  color: var(--accent-n);
  font-family: var(--montserrat);
  font-size: 15px;
  font-weight: 400;
}

.n-resid__line {
  display: flex;
  gap: 25px;
  align-items: center;
}
.n-resid__line span {
  color: var(--accent-n);
  font-family: var(--montserrat);
  font-size: 15px;
}

.n-resid__icons {
  display: flex;
  gap: 25px;
}

.n-resid__icon {
  cursor: pointer;
}

.n-dev {
  padding: 100px 0 173px;
}

.n-dev__text {
  margin: 100px auto 0 auto;
  max-width: 1377px;
}
.n-dev__text p {
  margin-bottom: 32px;
  font-family: var(--montserrat);
  font-size: 16px;
  color: #285333;
}
.n-dev__text p:last-child {
  margin-bottom: 0;
}

.n-dev__dev {
   display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}
@media(max-width:768px){
.n-dev__col {
    padding-left: 15px;
    padding-right: 15px;
}

}
.n-dev__col {
    flex-basis: 50%;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 50px;
}

.n-dev__top {
  margin-bottom: 24px;
  position: relative;
  min-height: 243px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.n-dev__img {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.n-dev__carousel {
  display: none;
}

.n-dev__in {
  display: flex;
  gap: 9px;
}

.n-dev__prev {
  margin-top: 108px;
}

.n-dev__next {
  margin-top: 108px;
}
.n-dev__next img {
  transform: rotate(180deg);
}

.con-team__btns {
  display: flex;
  gap: 38px;
}

.n-dev__h4 {
  position: relative;
  z-index: 2;
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: #fff;
  text-align: center;
}

.n-dev__bottom {
  font-family: var(--montserrat);
  font-size: 14px;
  color: #285333;
  padding: 0 20px;
  text-align: center;
}

.con-team {
  background-color: #6f8d79;
  padding: 68px 0;
}

.con-team__box {
  max-width: 1137px;
  width: 100%;
  background-color: #fff;
  display: flex;
  margin: 0 auto;
}

.con-team__image {
  flex-basis: 40%;
}

.con-team__content {
  flex-basis: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
}

.con-team__inner {
  max-width: 542px;
  width: 100%;
  margin: 0 auto;
}

.con-team__h4 {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
}

.con-team__text {
  margin: 20px 0 28px;
  font-family: var(--montserrat);
  font-size: 12px;
  color: #285333;
}

.con-team__info {
  margin: 28px 0;
  display: flex;
  gap: 40px;
}

.con-team__line {
  font-family: var(--montserrat);
  font-size: 12px;
  color: #285333;
  font-weight: 500;
}

.con-team__link {
  font-family: var(--montserrat);
  font-size: 12px;
  color: #285333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.con-team__link:hover {
  color: #438135;
}

.con-team__get {
  transition: color 0.3s ease;
}
/*.con-team__get:hover {
  color: #438135;
}*/

.n-estate {
  padding: 70px 0 130px 0;
}

.n-estate__wrapper {
  margin-top: 70px;
}

.n-estate__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}
.n-estate__item:nth-child(even) .n-estate__image {
  order: 2;
}
.n-estate__item:nth-child(even) .n-estate__content {
  order: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
  padding-left: 0;
}
.n-estate__item:nth-child(even) .n-estate__text {
  text-align: right;
}

.n-estate__image {
  flex-basis: 48%;
  min-height: 294px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.n-estate__img {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.n-estate__h4 {
  font-family: var(--regularGeorgia);
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.n-estate__content {
  flex-basis: 48%;
  padding-left: 20px;
  padding-right: 0;
}

.n-estate__text {
  font-family: var(--montserrat);
  font-size: 14px;
  color: var(--primary-n);
  max-width: 562px;
}
.n-estate__text p {
  margin-bottom: 24px;
}
.n-estate__text p:last-child {
  margin: 0;
}

.n-hero__h2 {
  display: none;
  position: absolute;
  bottom: 44px;
  z-index: 2;
  text-align: center;
  font-family: var(--regularGeorgia);
  font-size: 35px;
  color: #fff;
  width: 100%;
}

.f-pro {
  /*padding-top: 60px;*/
}

.f-pro__img {
  max-height: 356px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-pro__slider {
  position: relative;
  height: auto;
  padding: 50px 0 100px;
}

.f-pro__mob {
  display: none;
}

.m-footer {
  display: none;
}

.f-pro__bottom {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.f-pro__addi {
  display: none;
  margin-top: 100px;
}

.f-pro__slide {
  text-align: center;
  font-size: 18px;
  margin: 0px;
}
.f-pro__slide.swiper-slide-active {
  color: #fff;
  z-index: 2;
}
.f-pro__slide.swiper-slide-active .f-pro__addi {
  display: block;
}

@media (min-width: 1040px) {
  .f-pro__slide img {
    transition: all 0.3s ease;
    opacity: 0.4;
  }
  .f-pro__slide.swiper-slide-active img {
    transform: scale(1.4);
    opacity: 1;
  }
  .f-pro__slide.swiper-slide-active .f-pro__addi {
    min-width: 200px;
    /* margin-left: -80px; */
  }
}
@media (min-width: 1170px) {
  .f-pro__slide.swiper-slide-active .f-pro__addi {
    margin-left: 0;
  }
}
.f-pro__next::after {
  display: none;
}

.f-pro__prev {
  left: 380px;
  transform: translateY(-50%);
  top: 35%;
}

.f-pro__next {
  right: 380px;
  transform: translateY(-50%);
  top: 35%;
}
.f-pro__next img {
  transform: rotate(180deg);
}

.f-pro__prev::after {
  display: none;
}

.f-pro__h4 {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  color: var(--primary-n);
  text-align: center;
  margin: 26px 0 14px;
}

.f-pro__line {
  max-width: 1472px;
  width: 100%;
  height: 1px;
  background-color: var(--accent-n);
  margin: 70px auto 0 auto;
}

.f-pro__rooms {
  display: flex;
  gap: 70px;
  justify-content: center;
  margin-bottom: 26px;
}

.f-pro__room {
  color: var(--accent-n);
  font-family: var(--montserrat);
  font-size: 15px;
  text-transform: uppercase;
}

.c-lanc__title {
  margin-left: 30px;
}

.c-lanc__best .c-lanc__title {
  margin-left: 30px;
  margin-bottom: 60px;
}

.rural__ecxl {
  border-top: 1px solid var(--primary-n);
}

.rural__best {
  border-top: none;
}

.f-pro__btn {
  margin: 0 auto;
}

.m-app__contact {
  padding: 0 0 80px 0;
}

.n-news {
  padding: 70px 0 163px 0;
}
.n-news .n-container {
  position: relative;
}

.n-news__wrapper {
  max-width: 1420px;
  margin: 0 auto;
}

.n-news__next {
  margin-top: -130px;
  opacity: 1 !important;
  position: static !important;
  margin-left: 12px;
}
.n-news__next img {
  transform: rotate(180deg);
}

.n-news__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n-news__prev {
  margin-top: -130px;
  opacity: 1 !important;
  position: static !important;
  margin-right: 12px;
}

.n-news__next::after {
  display: none;
}

.n-news__prev::after {
  display: none;
}

.n-news__slider {
  position: static !important;
}
.n-news__slider .swiper-wrapper {
  position: static !important;
}

.n-news__h4, .n-news__h4 a {
  font-family: var(--regularGeorgia);
  font-size: 30px;
  text-align: center;
  color: var(--primary-n);
  margin-top: 18px;
	min-height: 66px;
}

.n-news__text {
  margin: 20px auto 15px auto;
  font-family: var(--montserrat);
  font-size: 12px;
  max-width: 340px;
  width: 100%;
  /*text-align: center;*/
  color: var(--primary-n);
}

.n-news__btn {
  margin: 0 auto;
}

.n-two-links {
  padding: 40px 0;
}

.n-two-links__h3 {
  margin: 64px 0;
  text-align: center;
}

.n-two-links__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.n-two-links__title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-family: var(--regularGeorgia);
  font-size: 40px;
  color: #fff;
  max-width: 332px;
  text-align: center;
  width: 100%;
}

.n-two-links__item {
  display: flex;
  position: relative;
}

.single-offices .n-hero__img {
  max-height: 645px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.n-hero__carousel {
  height: 645px;
  /*max-height: 827px;*/
  width: 100%;
  position: relative;
  z-index: 1;
}

.n-hero__video {
  position: relative;
  width: 100%;
  min-height: 664px;
  overflow: hidden;
}
.n-hero__video,
.short-hero{
    overflow: hidden;
}
@media only screen and (max-width : 992px) {
	.n-hero__video{
    	min-height: 300px;
    }
}
.short-hero iframe,
.n-hero__video iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 56.25vw; 
min-height: 100vh;
min-width: 177.77vh; 
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
pointer-events: none; 
}

/* Styling the video */
.n-hero__video video {
  width: 100%;
  height: auto;
  max-height: 664px;
  -o-object-fit: cover;
     object-fit: cover;
}
.n-hero__carousel img{
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1800px) {
  .n-footer__logos {
    gap: 16px;
  }
  .n-footer__menu {
    gap: 30px;
  }
}
@media (max-width: 1680px) {
  .n-footer__top {
    flex-direction: column;
  }
  .n-footer__inner {
    flex-wrap: wrap;
  }
  .n-footer__left {
    flex-basis: 100%;
  }
  .n-hero__carousel {
    max-height: unset;
    margin-top: 0;
  }
/*  .n-hero__carousel img {
    min-height: 380px;
    max-height: 652px;
  }*/
  .n-footer__inner {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
  }
}
@media (max-width: 1600px) {
  .f-pro__prev {
    left: 340px;
  }
  .f-pro__next {
    right: 340px;
  }
}
@media (max-width: 1560px) {
  .n-footer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .n-footer__center {
    flex-basis: 100%;
  }
  .n-footer__right {
    width: 100%;
    justify-content: flex-end;
  }
  .n-footer__bottom {
    justify-self: center;
  }
}
@media (max-width: 1500px) {
  .n-news__wrapper {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .res-grid__wrapper {
    gap: 38px;
  }
  .n-journal__wrapper {
    gap: 20px 32px;
  }
  .q-slider__text {
    margin: 40px 0;
  }
  .res-grid__main {
    padding: 32px 24px;
  }
  .n-estate__h4 {
    font-size: 32px;
  }
  .n-dev__dev {
    gap: 50px;
  }
  .n-footer__right {
    display: flex;
    align-items: flex-end;
  }
  .f-pro__prev {
    left: 300px;
  }
  .f-pro__next {
    right: 300px;
  }
  .n-news__wrapper {
    max-width: 1152px;
  }
}
@media (max-width: 1270px) {
  .n-footer__bottom {
    flex-direction: column;
  }
  .n-footer__bottom-menu .menu-item:first-child:before {
    display: none;
  }
  .n-footer__copy {
    order: 2;
    text-align: center;
  }
  .n-footer__bottom-menu {
    order: 1;
  }
}
@media (max-width: 1250px) {
  .f-pro__prev {
    left: 248px;
  }
  .f-pro__next {
    right: 248px;
  }
  .n-news__wrapper {
    max-width: 1010px;
  }
  .n-news__h4 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .s-profile__content {
    padding: 30px 20px;
    flex-wrap: wrap;
  }
  .n-journal__main {
    margin-bottom: 20px;
  }
  .n-journal__h4 {
    font-size: 24px;
  }
  .n-journal__main {
    padding: 30px;
  }
  .q-slider__text {
    margin: 20px 0;
  }
  .q-slider__h5 {
    font-size: 32px;
  }
  .q-slider__content {
    padding: 20px 20px 10px 30px;
  }
  .s-profile__h4 {
    margin-top: 30px;
  }
  .s-profile__text {
    max-width: unset;
  }
  .s-profile__left {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .s-profile__pos {
    font-size: 24px;
  }
  .s-profile__name {
    font-size: 32px;
  }
  .n-areas__left {
    flex-basis: 60%;
  }
  .n-areas__map {
    flex-basis: 34%;
  }
  .n-areas__content {
    flex-basis: 66%;
    padding: 30px 20px;
  }
  .res-grid__h4 {
    font-size: 24px;
  }
  .prop-info__h4 {
    font-size: 32px;
  }
  .prop-info__offer {
    font-size: 24px;
  }
  .prop-info__offer span {
    font-size: 30px;
  }
  .prop-info__address {
    font-size: 24px;
  }
  .n-dev__dev {
    gap: 20px;
  }
  .n-dev__bottom {
    padding: 0;
  }
  .n-dev__h4 {
    font-size: 24px;
  }
  .n-footer__inner {
    padding: 0;
  }
  .res-list__text {
    margin: 24px 0;
  }
  .n-footer__left {
    padding: 36px 15px;
  }
  .n-footer__center {
    padding: 0 15px;
  }
  .res-list__h4 {
    font-size: 24px;
  }
}
@media (max-width: 1110px) {
  .n-news__wrapper {
    max-width: 920px;
  }
  .f-pro__next {
    right: 224px;
  }
  .n-search__form .n-btn {
    order: 2;
  }
  .n-search__top {
    grid-template-columns: 1fr;
  }
  .f-pro__prev {
    left: 224px;
  }
}
@media (min-width: 1041px) {
  .hide_in_big{
    display: none;
  }
}
@media (max-width: 1040px) {
  .show_on_big{
    display: none;
  }
  .f-pro__slide.swiper-slide-active {
    transform: scale(1);
  }
  .f-pro__img {
    max-height: unset;
    height: auto;
  }
  .n-footer {
    display: none;
  }
  .m-footer {
    display: block;
  }
  .f-pro__wrapper {
    position: relative;
    padding: 0 40px;
  }
  .f-pro__prev {
    left: -3px;
  }
  .f-pro__next {
    right: -3px;
  }
  .f-pro__mob {
    display: block;
  }
  .f-pro__des {
    display: none;
  }
  .f-pro__slider {
    position: static;
  }
  .f-pro__slider .swiper-wrapper {
    position: static;
  }
}
@media (max-width: 1020px) {
  .n-news__wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 50px;
  }
  .n-news__prev {
    margin-top: 0;
    position: absolute !important;
    top: 184px;
  }
  .n-news__next {
    margin-top: 0;
    position: absolute !important;
    top: 184px;
  }
}
@media (max-width: 992px) {
  .n-areas__box {
    flex-wrap: wrap;
  }
  .prop-info {
    margin-top: -200px;
  }
  .meet-team__nav {
    gap: 10px;
  }
  .meet-team__btn {
    font-size: 14px;
    text-align: center;
  }
  .prop-team__content {
    background-color: #fff;
  }
  .prop-team__prop {
    padding: 30px 10px;
  }
  .s-profile__photo {
    width: 100%;
  }
  .f-pro__slider {
    padding: 50px 0 0;
  }
  .n-journal__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .q-slider__name {
    font-size: 20px;
  }
  .q-slider__pos {
    font-size: 10px;
  }
  .q-slider__text p {
    font-size: 12px;
  }
  .q-slider__h5 {
    font-size: 20px;
  }
  .q-slider__content {
    padding: 20px 28px 10px 28px;
  }
  .q-slider__box {
    flex-wrap: wrap;
    max-width: 358px;
    margin: 0 auto;
  }
  .q-slider__h5 {
    max-width: 300px;
  }
  .q-slider__open {
    font-size: 200px;
    top: -57px;
    left: 299px;
  }
  .q-slider__close {
    font-size: 200px;
    bottom: 0;
    top: 303px;
    right: 288px;
  }
  .q-slider {
    padding: 36px 0 43px;
  }
  .q-slider__img {
    max-width: 358px;
    max-height: 358px;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
    -o-object-position: top;
       object-position: top;
  }
  .q-slider__content {
    width: 100%;
  }
  .s-profile__text {
    display: block;
  }
  .s-profile__schedule {
    display: none;
  }
  .s-profile__content {
    padding: 30px 40px 30px 20px;
  }
  .s-profile__h4 {
    display: none;
  }
  .s-profile__box {
    flex-wrap: wrap;
    max-width: 520px;
  }
  .s-profile__top {
    padding: 66px 0 36px;
  }
  .s-profile__img {
    display: none;
  }
  .s-profile__short {
    display: block;
  }
  .n-areas__h3 {
    margin-top: 30px;
  }
  .n-areas__map {
    flex-basis: 100%;
  }
  .n-areas__content {
    flex-basis: 100%;
  }
  .prop-filter__bottom {
    gap: 10px;
  }
  .prop-info__wrapper {
    flex-wrap: wrap;
  }
  .prop-info__left {
    flex-basis: 100%;
  }
  .prop-info__center {
    flex-basis: 100%;
    order: 3;
  }
  .prop-info__address {
    margin-top: 12px;
  }
  .prop-info__right {
    flex-basis: 100%;
    order: 2;
    margin: 19px 0 15px;
  }
  .res-grid__wrapper {
    gap: 20px;
  }
  .res-grid__main {
    padding: 24px 12px;
  }
  .res-list__h4 {
    font-size: 20px;
  }
  .res-list__offer span {
    font-size: 16px;
  }
  .res-list__text {
    margin: 14px 0;
  }
  .res-list__offer {
    font-size: 16px;
  }
  .n-dev__h4 {
    font-size: 20px;
  }
  .n-dev__text {
    display: none;
  }
  .n-dev__carousel {
    display: flex;
    max-width: 702px;
    margin: 0 auto;
  }
  .n-dev__dev {
    display: none;
    gap: 16px;
  }
  .con-team__box {
    flex-wrap: wrap;
    background-color: #6f8d79;
  }
  .con-team__image {
    flex-basis: 100%;
  }
  .con-team__content {
    flex-basis: 100%;
  }
  .con-team__inner {
    max-width: 384px;
    background-color: #fff;
    margin-top: -16px;
    padding: 24px 13px;
  }
  .con-team__h4 {
    text-align: center;
  }
  .con-team__info {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .con-team__get {
    margin: 0 auto;
  }
  .con-team__text {
    text-align: center;
  }
  .con-team__box {
    max-width: 430px;
  }
  .n-header__burger {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
        padding-top: 6px;
  }
  .con-team__h4 {
    font-size: 24px;
  }
  .n-header {
    border-color: #fff;
  }
  .n-header .n-container {
    padding: 0 15px;
  }
  .n-header__menu {
    display: none;
  }
  .n-two-links__title {
    font-size: 32px;
  }
  .f-pro__wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
  .heading-3 {
    font-size: 32px;
  }
  .w-us__item {
    padding: 30px 24px;
  }
}
@media (max-width: 860px) {
  .q-slider__open {
    left: 210px;
  }
  .q-slider__close {
    right: 210px;
  }
}
@media (max-width: 768px) {
  .n-artc__images {
    gap: 20px;
    margin: 55px auto 0 auto;
  }
  .m-footer__social {
    justify-content: flex-end;
  }
  .n-footer__newsletter {
    font-size: 10px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  .n-footer__h5 {
    text-align: right;
    font-size: 15px;
  }
  .n-footer__logos {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;

  }
  .n-journal__card {
    max-width: 394px;
    margin: 0 auto;
  }
  .n-journal__main {
    margin-bottom: 62px;
  }
  .prop__next,
.prop__prev {
    top: 27%;
  }
  .prop-info {
    margin-top: -250px;
  }
  .meet-team__nav {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .c-lanc__months .wpcf7-exclusive-checkbox {
    gap: 10px;
  }
  .c-lanc__exclusive {
    padding-right: 20px;
  }
  .short-hero__h1 {
    font-size: 35px;
  }
  .m-app__excl textarea {
    min-height: 107px;
  }
  .c-lanc__months {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }
  .c-lanc__month {
    flex-basis: 48%;
    display: flex;
    justify-content: center;
  }
  .n-journal__h3 {
    display: none;
  }
  .w-us-top__h4 {
    font-size: 20px;
  }
  /* .n-artc__more {
    display: none;
  } */
  .n-artc__news {
    display: block;
  }
  .q-slider__open {
    top: -61px;
    left: 61px;
  }
  .q-slider__close {
    top: 235px;
    right: 118px;
  }
  .w-us {
    padding: 32px 0;
  }
  .w-us__h3 {
    display: none;
  }
  .w-us-bottom {
    padding-top: 47px;
  }
  .w-us-top__apply {
    text-transform: capitalize;
  }
  .w-us-top__left {
    flex-basis: 100%;
  }
  .w-us-top__right {
    flex-basis: 100%;
  }
  .w-us-top__area {
    font-size: 10px;
  }
  .w-us-top__font {
    font-size: 10px;
  }
  .s-profile__article h3 {
    font-size: 20px;
  }
  .s-profile__h5 {
    font-size: 20px;
  }
  .s-profile__year {
    font-size: 15px;
  }
  .s-profile__achiev {
    font-size: 10px;
  }
  .s-profile__article ul li {
    font-size: 10px;
  }
  .s-profile__article ul li::before {
    height: 4px;
    width: 4px;
  }
  .s-profile__schedule {
    margin: 18px auto 0 auto !important;
  }
  .s-profile__link {
    font-size: 15px;
  }
  .meet-team__wrapper {
    justify-content: space-between;
    gap: 22px 0;
  }
  .meet-team__card {
    max-width: unset;
    flex-basis: 47%;
  }
  .n-areas__wrapper {
    flex-wrap: wrap;
  }
  .lanc-team__title {
    margin-bottom: 52px;
  }
  .lanc-team__h3 {
    display: none;
  }
  .lanc-team__textcontent p {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
  }
  .lanc-team__textcontent p:last-child {
    margin-bottom: 0;
  }
  .lanc-team__textcontent {
    margin: 0px auto 30px;
  }
  .con-team__h4 {
    font-size: 20px;
  }
  .n-lanc__team {
    display: block;
  }
  .f-pro__prev img {
    width: 20px;
  }
  .f-pro__next img {
    width: 20px;
  }
  .lanc-team__name {
    font-size: 15px;
    text-align: center;
  }
  .lanc-team__h3 {
    font-size: 20px;
  }
  .n-areas__btn {
    min-height: 36px;
    font-size: 11px;
  }
  .n-lanc__featured {
    padding: 30px 0;
  }
  .n-areas {
    padding: 20px 0 40px;
  }
  .n-areas__link {
    font-size: 15px;
  }
  .lanc-team__main {
    padding: 24px 10px 0 0;
  }
  .lanc-team__pos {
    font-size: 10px;
    text-align: center;
  }
  .lanc-team__wrapper {
    gap: 22px 0;
    justify-content: space-between;
  }
  .lanc-team__item {
    max-width: unset;
    flex-basis: 48%;
  }
  .n-areas__nav {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    row-gap: 20px;
  }
  .n-areas__box {
    margin: 20px auto 0 auto;
  }
  .n-areas__btn {
    max-width: unset;
    flex-basis: 48%;
  }
  .c-lanc {
    display: none;
  }
  .m-app__contact {
    display: block;
  }
  .n-areas__h4 {
    font-size: 15px;
    max-width: 320px;
    margin: 10px auto 0 auto;
  }
  .n-areas__h3 {
    max-width: 320px;
    font-size: 20px;
    margin: 26px auto 0 auto;
  }
  .n-areas__content {
    padding: 30px 25px;
  }
  .n-areas__address {
    font-size: 15px;
    max-width: unset;
  }
  .n-areas__schedule {
    margin: 0 auto;
  }
  .n-areas__left {
    flex-basis: 100%;
  }
  .n-areas__right {
    flex-basis: 100%;
    margin: 34px auto 0 auto;
    max-width: 320px;
  }
  .prop-mob {
    display: flex;
  }
  .prop-team__btn {
    display: flex;
    margin: 10px auto 0 auto;
  }
  .prop-team .prop-team__content {
    padding: 0 10px;
  }
  .prop-team__prop {
    margin: -28px auto 0 auto;
  }
  .prop-team {
    padding: 0 0 32px 0;
  }
  .prop-team .n-container {
    padding: 0;
  }
  .prop-team__box {
    max-width: unset;
  }
  .prop-filter__bottom {
    display: none;
  }
  .prop-filter__two {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 13px;
  }
  .prop-filter__tel {
    margin: 0;
    font-size: 16px;
  }
  .prop-filter__link {
    font-size: 15px;
  }
  .prop-filter__book {
    max-width: 176px;
    font-size: 16px;
    min-height: 45px;
  }
  .prop-desc {
    padding: 10px 0;
  }
  .prop-filter {
    padding: 10px 0 20px;
  }
  .prop-desc__h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .prop-info__h4 {
    font-size: 20px;
  }
  .prop-info__offer {
    font-size: 16px;
    display: flex;
    gap: 5px;
    align-items: flex-end;
  }
  .prop-info__offer span {
    font-size: 20px;
  }
  .prop-info__address {
    font-size: 16px;
  }
  .prop__prev img {
    width: 12px;
  }
  .prop__next img {
    width: 12px;
  }
  .res-grid__wrapper {
    grid-template-columns: 1fr;
  }
  .res-grid__text {
    margin: 24px 0;
  }
  .res-grid__h4 {
    font-size: 20px;
  }
  .res-grid__col {
    max-width: 460px;
    margin: 0 auto;
  }
  .res-list__image {
    flex-basis: 100%;
  }
  .n-resid__left {
    display: none;
  }
  .n-resid__nav {
    justify-content: center;
  }
  .res-list__item {
    max-width: 460px;
    margin: 0 auto 35px auto;
  }
  .res-list__item:nth-child(even) .res-list__content {
    order: 2;
  }
  .res-list__item:nth-child(even) .res-list__h4 {
    text-align: left;
  }
  .res-list__item:nth-child(even) .res-list__text {
    text-align: left;
  }
  .res-list__item:nth-child(even) .res-list__bottom {
    justify-content: flex-start;
  }
  .res-list__item:nth-child(even) .res-list__offer {
    text-align: left;
  }
  .res-list__bottom {
    margin-top: 14px;
  }
  .res-list__item:nth-child(even) .res-list__image {
    order: 1;
  }
  .res-list__inner {
    max-width: unset;
  }
  .res-list__content {
    flex-basis: 100%;
    padding: 30px 32px;
  }
  .n-estate__image {
    flex-basis: 100%;
    order: 1;
  }
  .n-estate__content {
    flex-basis: 100%;
    padding-left: 0;
    order: 2;
  }
  .n-dev__top {
    min-height: 225px;
  }
  .n-dev__carousel {
    max-width: unset;
  }
  .n-estate__item:nth-child(even) .n-estate__text {
    text-align: center;
  }
  .n-estate__text {
    max-width: unset;
    margin-top: 18px;
  }
  .n-estate__item:nth-child(even) .n-estate__image {
    order: 1;
  }
  .n-estate__item:nth-child(even) .n-estate__content {
    padding-right: 0;
    order: 2;
  }
  .n-search {
    display: none;
  }
  .m-search {
    display: block;
  }
  .f-pro__h4 {
    font-size: 24px;
  }
  .heading-3 {
    font-size: 24px;
  }
  .n-news__prev {
    top: 234px;
  }
  .n-news__next {
    top: 234px;
  }
  .n-two-links__wrapper {
    grid-template-columns: 1fr;
  }
  .n-areas__map iframe {
    height: 150px;
  }
  .n-news__h4 {
    font-size: 20px;
  }
  .meet-team__btn {
    min-height: 36px;
    font-size: 11px;
  }
  .meet-team__nav {
    gap: 14px;
  }
  .q-slider__h5 {
    max-width: 300px;
	  text-align:left;
  }
  .n-estate__h3 {
    font-size: 20px;
  }
  .n-journal {
    padding: 42px 0;
  }
  .n-artc__title {
    font-size: 20px;
  }
  .n-artc__mob {
    display: flex;
  }
  .n-artc__social {
    flex-direction: column;
    align-items: flex-start;
  }
  .n-artc__name {
    margin: 14px 0 17px;
    font-size: 20px;
  }
  .n-artc__content p {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .n-artc__img {
    padding: 37px 0 28px;
  }
  .n-artc__content {
    margin: 18px 0 30px 0;
  }
}
@media (max-width: 576px) {
  .meet-team__wrapper {
    margin: 26px auto 0 auto;
  }
  .n-journal__main {
    margin-bottom: 0;
  }
  .c-lanc__drop .c-lanc__agree {
    display: none;
  }
  .c-lanc__drop .c-lanc__agree .wpcf7-form-control-wrap .wpcf7-list-item {
    margin-left: 8px;
  }
  .c-lanc__drop .c-lanc__agree input[type=checkbox] + span {
    /* padding-left: 0; */
  }
  .c-lanc__drop .c-lanc__agree input[type=checkbox] + span:before {
    /* border: none;
    width: 22px;
    height: 22px;
    left: unset;
    right: -37px;
    top: -5px; */
  }
  .c-lanc__drop .c-lanc__agree input[type=checkbox]:checked + span:before {
    background-image: url("../img/icons/green-tick.svg");
    background-color: #fff;
  }
  .c-lanc__drop .c-lanc__months {
    display: none;
  }
  .c-lanc__drop .c-lanc__months .wpcf7-form-control-wrap .wpcf7-list-item {
    margin-left: 8px;
  }
  .c-lanc__drop .c-lanc__months input[type=checkbox] + span {
    /* padding-left: 15px; */
    padding-top: 30px;
  }
  .c-lanc__drop .c-lanc__months .wpcf7-exclusive-checkbox {
    gap: 12px;
    margin-top: 10px;
  }
  .c-lanc__drop .c-lanc__months .wpcf7-exclusive-checkbox .wpcf7-list-item {
    flex-basis: 100%;
  }
  .c-lanc__drop .c-lanc__months input[type=checkbox] + span:before {
    /* left: 0; */
    top: 0;
    /* border: none;
    width: 22px;
    height: 22px;
    left: unset;
    right: -59px;
    top: -2px; */
  }
  .c-lanc__drop .c-lanc__months input[type=checkbox]:checked + span:before {
    background-image: url("../img/icons/green-tick.svg");
    background-color: #fff;
  }
  .c-lanc__best .c-lanc__title {
    margin-bottom: 0;
  }
  .c-lanc__chev {
    display: flex;
  }
  .prop-info {
    margin-top: -188px;
  }
  .c-lanc__three-selects {
    gap: 20px;
  }
  .c-lanc__three-selects .wpcf7-form-control-wrap {
    width: 100%;
  }
  .close-profile {
      position: sticky;
    top: 15px;
    right: 15px;
      text-align: right;
      
        z-index: 9999999999;
        margin: 0 auto;
	}	
   .close-profile img {
    background: #000;
    border-radius: 100%; 
   }
  .c-lanc__selects {
    gap: 30px;
  }
  .c-lanc__selects .wpcf7-form-control-wrap {
    width: 100%;
  }
  .c-lanc__months .wpcf7-exclusive-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;
  }
  .c-lanc__months .wpcf7-exclusive-checkbox .wpcf7-list-item {
    flex-basis: 40%;
  }
  .c-lanc__months label span {
    text-align: center;
  }
  .n-journal__excerpt {
    font-size: 10px;
  }
  .n-journal__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .q-slider__prev {
    position: absolute !important;
    top: 172px;
    left: 60px;
  }
  .q-slider__prev::after {
    display: none;
  }
  .q-slider__open {
    left: 40px;
  }
  .q-slider__close {
    top: 301px;
    right: 40px;
    bottom: 0;
  }
  .q-slider__mobac {
    display: block;
  }
  .q-slider__next {
    position: absolute !important;
    top: 172px;
    right: 60px;
  }
  .q-slider__next img {
    transform: rotate(180deg);
  }
  .q-slider__next::after {
    display: none;
  }
  .con-team__box {
    max-width: unset;
  }
  .meet-team {
    padding: 45px 0 55px;
  }
  .meet-team__h3 {
    display: none;
  }
  .meet-team__nav {
    margin: 27px auto 0 auto;
    grid-template-columns: 1fr 1fr;
  }
  .n-about__h3 {
    display: none;
  }
  .meet-team__pos {
    font-size: 10px;
  }
  .meet-team__name {
    margin-top: 24px;
    font-size: 15px;
  }
  .n-desc {
    font-size: 16px;
    color: #000;
    margin-bottom: 26px;
    padding: 0 36px;
  }
  .n-hero__carousel{
    height: 400px;
  }
/*  .n-hero__carousel img {
    max-height: 382px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }*/
  .con-team {
    padding: 0 0 32px 0;
  }
  .con-team .n-container {
    padding: 0;
  }
  .n-estate__image {
    min-height: 116px;
  }
  .n-about__image {
    min-height: 286px;
  }
  .n-estate {
    padding: 25px 0 30px 0;
  }
  .n-estate .n-container {
    padding: 0;
  }
  .n-estate__text {
    padding: 0 30px;
  }
  .n-about__content {
    background-color: #6f8d79;
    padding: 0 20px 30px 20px;
  }
  .n-about__text {
    margin: -28px auto 0 auto;
    background-color: #fff;
    max-width: 384px;
    width: 100%;
    padding: 26px 26px 34px 30px;
    position: relative;
    z-index: 2;
  }
  .n-estate__h3 {
    padding: 0 15px;
  }
  .n-estate__h3.heading-3.underline::after {
    content: "";
    display: block;
    background-color: var(--accent-n);
    width: 200px;
    height: 1px;
    margin: 15px auto 14px auto;
  }
  .n-estate__wrapper {
    margin-top: 0;
  }
  .n-estate__h4 {
    font-size: 20px;
  }
  .n-hero__h2 {
    display: block;
  }
  .n-hero__h2 {
    font-size: 26px;
  }
  .n-search {
    margin-top: 0;
  }
  .m-header__inner {
    max-width: unset;
  }
  .n-news__h4 {
    font-size: 18px;
  }
  .n-news {
    padding: 25px 0;
  }
  .f-pro__rooms {
    gap: 30px;
  }
  .f-pro__line {
    margin: 23px auto 0 auto;
  }
  .n-search__left {
    grid-template-columns: 1fr;
  }
  .n-two-links__title {
    font-size: 20px;
  }
  .n-two-links {
    padding: 20px 0;
  }
  .n-two-links__wrapper {
    gap: 13px;
  }
  .n-two-links__h3 {
    display: none;
  }
  .n-two-links__item img {
    max-height: 118px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .n-search__input.full {
    grid-column: 1;
  }
  .n-search__right {
    grid-template-columns: 1fr;
  }
  .f-pro__prev {
    top: 177px;
  }
  .f-pro__next {
    top: 177px;
  }
  .f-pro__slider {
    padding: 0;
  }
  .f-pro__h4 {
    font-size: 16px;
  }
  .n-news__prev {
    top: 164px;
  }
  .n-news__next {
    top: 164px;
  }
  .n-news__next img {
    width: 20px;
  }
  .n-news__prev img {
    width: 20px;
  }
  .n-estate__item:nth-child(even) .n-estate__content.n-about__content {
    padding: 0 20px 36px 20px;
    align-items: flex-start;
  }
  .n-about__content {
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .q-slider__prev {
    left: 54px;
  }
  .q-slider__next {
    right: 54px;
  }
}
@media (max-width: 490px) {
  .q-slider__prev {
    left: 50px;
  }
  .q-slider__next {
    right: 50px;
  }
}
@media (max-width: 480px) {
  .q-slider__prev {
    left: 45px;
  }
  .q-slider__next {
    right: 45px;
  }
}
@media (max-width: 470px) {
  .q-slider__prev {
    left: 40px;
  }
  .q-slider__next {
    right: 40px;
  }
}
@media (max-width: 450px) {
  .q-slider__prev {
    left: 35px;
  }
  .q-slider__next {
    right: 35px;
  }
}
@media (max-width: 430px) {
  .q-slider__prev {
    left: 25px;
  }
  .q-slider__next {
    right: 25px;
  }
}
@media (max-width: 420px) {
  .n-about__text {
    padding: 20px 16px 20px 20px;
  }
  .c-lanc__helper {
    gap: 14px;
  }
  .prop-info {
    margin-top: -128px;
  }
  .n-artc__images {
    grid-template-columns: 1fr;
  }
  .q-slider__prev {
    left: 20px;
  }
  .q-slider__next {
    right: 20px;
  }
  .w-us__item {
    padding: 20px 0;
  }
  .f-pro__prev {
    top: 112px;
  }
  .f-pro__next {
    top: 112px;
  }
  .n-resid__right {
    gap: 10px;
  }
  .m-header__menu li a {
    font-size: 20px;
  }
  .m-search__group {
    grid-template-columns: 1fr;
  }
  .n-news__wrapper {
    padding: 0 30px;
  }
  .q-slider__open {
    left: -3px;
  }
  .q-slider__close {
    right: -3px;
  }
}
@media (max-width: 380px) {
  .q-slider__prev {
    left: 0;
  }
  .q-slider__next {
    right: 0;
  }
}

.m-header__menu .sub-menu li a{
  font-size: 14px;
}
.m-header__menu .sub-menu li{
  margin-bottom: 12px;
  list-style: none;
}
.m-header__menu .sub-menu{
    padding: 30px 0 3px;
    display: none;
}

/* .m-search__group select option:nth-child(1),
.n-search__inner .selectric-scroll ul li:nth-child(1){
  display: none;
} */

.res-grid__image{
  height: 400px;
  display: block;
}
.res-grid__image img{
      height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.page-template-single-property .prop-team.white{
      background-color: #6f8d79;
}
.n-journal .wp-pagenavi{
   -ms-flex-wrap: wrap;
     flex-wrap: wrap;
}
.w-us-top__font{
      margin-bottom: 16px;
}
.w-us-top__h4{
      margin-bottom: 20px;
}
.w-us-top__btns{
   padding-top: 10px;
}

@media only screen and (max-width : 992px) {
  .s-profile__play img{
    max-width: 70px;
  }
}
@media only screen and (max-width : 767px) {
  .res-grid__image{
    height: 200px;align-content
  }
  .w-us__item {
        padding: 30px 23px;
    }
  .w-us-top__btns{
    -webkit-box-orient: horizontal;
 -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
  }
  .n-journal__main .n-btn{
       margin: 0 auto;
  }
}

.headec{
  max-width: 100px;    
  margin-bottom: -1px;
}
@media only screen and (max-width : 992px) {
  .headec{
    max-width: 93px;    
    margin-bottom: 0;
    height: 82px;
    width: 66px;
  }
}
.n-hero__carousel .swiper-slide .container{
  position: relative;
  z-index: 2;
}
.banner_square h3{
  font-size: 30px;
  line-height: 35px;
  font-family: var(--regularGeorgia);
  margin-bottom: 15px;
  margin-top: 0;
}
.banner_square .button{
  font-size: 15px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 6px 30px;
  text-transform: uppercase;
  background: #4F7359;
  margin-left: auto;
  margin-right: auto;
}
.banner_square{
  background: rgba(40, 82, 50, 0.5);
  border: 2px solid #fff;
  padding: 23px 40px;
  position: absolute;
  right: 20px;
  top: 80px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width : 992px) {
  .banner_square{
    right: 15px;
    left: 15px;
  }
}


.newfooter {
  border-top: 8px solid #9c1e31;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background-color: #295333;
  /*font-family: Georgia, "Times New Roman", Times, serif;*/
  font-size: 15px;
}

@media (max-width: 1550px) {
  .newfooter {
    padding-right: 50px;
  }
}

@media (max-width: 575px) {
  .newfooter {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.newfooter ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newfooter ul img {
  max-width: 100%;
  width: 20px;
}

.newfooter ul a {
  font-size: 15px;
}

.newfooter h4 {
  margin: 0;
  font-size: 24px;
}

.newfooter a {
  color: #fff;
  text-decoration: none;
}

.newfooter .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 170px;
}

@media (max-width: 1200px) {
  .newfooter .wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .newfooter .wrapper {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .newfooter .wrapper {
    padding-top: 90px;
  }
}

.newfooter .social {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  .newfooter .social {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .newfooter .social {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.newfooter .social ul {
  padding-bottom: 25px;
  padding-top: 10px;
}

.newfooter .social ul li {
  margin-right: 40px;
}

@media (max-width: 1800px) {
  .newfooter .social ul li {
    margin-right: 20px;
  }
}

.newfooter .social ul li:last-child {
  margin-right: 0;
}

.newfooter .social a {
  font-size: 16px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .newfooter .social a {
    font-size: 18px;
  }
}

.newfooter .centre {
  padding-bottom: 30px;
  padding-left: 30px;
}

@media (max-width: 1200px) {
  .newfooter .centre {
    padding-left: 0;
  }
}

.newfooter .topdiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  .newfooter .topdiv {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 20px;
  }
}

.newfooter .topdiv ul {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

@media (max-width: 1200px) {
  .newfooter .topdiv ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.newfooter .topdiv ul li {
  margin-left: 75px;
}

@media (max-width: 1800px) {
  .newfooter .topdiv ul li {
    margin-left: 40px;
  }
}

@media (max-width: 1200px) {
  .newfooter .topdiv ul li {
    margin-left: 15px;
  }
}

@media (max-width: 1200px) {
  .newfooter .topdiv ul li:first-child {
    margin-left: 0px;
  }
}

.newfooter .topdiv ul li a {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .newfooter .topdiv .market {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 575px) {
  .newfooter .topdiv .market {
    width: 75px;
    right: auto;
    left: auto;
    top: 10px;
  }
}

.newfooter .bottomdiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1550px) {
  .newfooter .bottomdiv {
    padding-left: 20px;
  }
}

@media (max-width: 1200px) {
  .newfooter .bottomdiv {
    padding-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.newfooter .bottomdiv ul li {
  margin-left: 26px;
  position: relative;
}

.newfooter .bottomdiv ul li:after {
  content: "";
  height: 60%;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.newfooter .bottomdiv ul li:last-child:after {
  content: none;
}

.newfooter .bottomdiv ul li:first-child {
  margin-left: 0px;
}

.con-team__subtitle {
  font-size: 15px;
  color: #9C1D31;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .newfooter .bottomdiv ul li a {
    white-space: nowrap;
  }
  .con-team__subtitle {
    text-align: center;
  }
  .m-no_padding {
    padding: 0 !important;
  }
}

@media (max-width: 575px) {
  .newfooter .bottomdiv ul li {
    width: 100%;
    margin: 0;
    margin-bottom: 3px;
  }
  .newfooter .bottomdiv ul li:after {
    content: none;
  }
  .page-template-template-homes .n-two-links__item img {
    min-height: 242px;
  }
  body .homes__con-team .n-container {
    padding: 33px 35px;
  }
  body .homes__con-team .con-team__content {
    padding: 0;
  }
  body .homes__con-team .con-team__inner {
    margin-top: 0;
  }
  .con-team__subtitle {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .newfooter .bottomdiv ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1550px) {
  .newfooter .bottomlogo {
    display: none;
  }
}
@media (max-width: 575px) {
  .newfooter .topdiv ul li {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 3px;
  }
}

.newfooter .social h4{
  font-size: 20px;
  margin-bottom: 11px;
}

.newfooter .market img{
   width:50%
}
.newfooter .market img:nth-child(1){
   float: left;
}
@media (max-width: 1400px) {
  .newfooter .bottomdiv ul a{
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .newfooter .market img:nth-child(1),
  .newfooter .market img{
    float: none;
    width: 100%;
    max-width: 150px;
    margin-left: 15px;
  }
  .newfooter .topdiv .market{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 40px;
  }
}

.n-estate--items .n-estate--items__image h3,
.n-dev__h4,
.services-items .services-item h4,
.n-two-links__title,
.short-hero__h1,
.n-two-links__title{
	text-shadow: 0 2px 2px black;
}

@media (max-width: 767px) {
	.n-estate__item .n-about__image{
       min-height: 159px;
    }
    .hide767{
    	display: none;
    }
    .n-two-links + .con-team {
        margin-top: 0;
    }
    .services-items .services-item h4,
    .n-two-links .n-two-links__title{
    	margin: 0;
    }
    body .homes__con-team .con-team__inner .con-team__h4,
    body .homes__con-team .con-team__inner .con-team__subtitle,
    body .homes__con-team .con-team__inner .con-team__text{
    	text-align: left;
    }
    body .homes__con-team .con-team__inner .con-team__btns .con-team__get{
    	margin-left: 0;
    }
}
@media (min-width: 768px) {
	.show767{
    	display: none;
    }
}
@media (max-width: 992px) {
    body.single-property .prop .prop__slide img{
        max-height: 100%;
        height: 350px;
    }
    body.single-property .single-property .prop-info .n-container{
    	padding-left: 20px;
    	padding-right: 20px;
    }
    body.single-property .single-property .prop-info{
    	margin-top: 0;    
    }
    body.single-property .prop .prop__next, 
    body.single-property .prop .prop__prev{
    	top: 50%;
    }
     body.single-property .prop .prop__prev{
     	left: 20px;
     }
     body.single-property .prop .prop__next{
     	right: 20px;
     }
}

.m-search__form .n-btn,
.n-search__form .n-btn{
	text-align: center;
}