/* reset css */

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  /* overflow-wrap: break-word; */
  /* hyphens: auto; */
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* general css */

/*
DESIGN GUIDE

Colors:
    - COLOR NAME: COLOR CODE

Spacing:
    8 16 24 32 40 48 56 64 72 80 88 96 104 ...

Font:
    ...

    
*/


:root {
  --GREEN: #878540;
  --BG: #ededed;
  --BROWN-SOFT: #dddad5;
  --BROWN-MID: #cfc9bd;
  --BROWN-MID-30: rgba(207, 201, 189, 0.3);
  --BROWN-DARK: #7a5024;
  --BLACK: #1f1d1c;
  --YELLOW: #d2b41b;
  --RED: #e21609;

  --BROWN-SOFT-50: rgba(221, 218, 213, 0.5);
  --BLACK-85: rgba(31, 29, 28, 0.85);

  --MAX-CONTENT: 72.75rem;
  --SIDE-MARGIN: auto;
  --Z-BOTTOM: -10000;
  --Z-N20: -30;
  --Z-N20: -20;
  --Z-N10: -10;
  --Z-0: 0;
  --Z-10: 10;
  --Z-20: 20;
  --Z-30: 30;
  --Z-TOP: 10000;

  --NAV-LINKS: 0.875rem;
}



/* MavenPro - Regular */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MavenPro-Regular.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* MavenPro - Medium */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/MavenPro-Medium.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* MavenPro - Semi Bold */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/MavenPro-SemiBold.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "the-seasons";
}

html,
body {
  overflow-x: hidden;
}

body {
  /* color: var(--BLACK); */
  font-family: "Maven Pro", sans-serif;
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-color: var(--BG);
  /* background-color: var(--NUDE); */
}

/**************************************/
/********** NAVIGATION BAR ************/
/**************************************/

#cs-navigation {
  width: 100%;
  height: 7.125rem;
  background-color: var(--BLACK);
  display: flex;
  align-items: center;
  position: fixed;
  z-index: var(--Z-TOP);
}

#cs-navigation.shaded {
  background-color: var(--BLACK-85);
}

#cs-navigation.relative {
  position: relative;
}

#cs-navigation .cs-container {
  width: 100%;
  height: 100%;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

#cs-navigation .cs-toggle {
  display: none;
}

#cs-navigation .cs-logo {
  width: 10.375rem;
  height: 4.875rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: var(--Z-10);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#cs-navigation .cs-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

#cs-navigation .cs-nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cs-navigation .cs-ul-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cs-navigation .cs-ul {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* 20px - 28px */
  gap: clamp(1.25rem, 2.6vw, 1.75rem);
}

#cs-navigation .cs-li {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
}

#cs-navigation .cs-li-link {
  font-size: var(--NAV-LINKS);
  line-height: 1.375rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--BROWN-MID);
  display: flex;
  gap: 0.25rem;
  align-items: center;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

#cs-navigation .cs-li-link:hover {
  color: var(--GREEN);
  transform: translateY(-2px);
}

#cs-navigation .cs-li-link.cs-active {
  color: var(--GREEN);
}

#cs-navigation .nav-icons {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-left: 3.5rem;
}

#cs-navigation .cs-dropdown {
  position: relative;
}
#cs-navigation .cs-dropdown:hover {
  cursor: pointer;
}

#cs-navigation .cs-dropdown:hover .cs-drop-ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
#cs-navigation .cs-dropdown:hover .cs-drop-li {
  opacity: 1;
  transform: translateY(0);
}
#cs-navigation .cs-drop-icon {
  width: 0.5rem;
  height: auto;
  transition: transform 0.3s;
}
#cs-navigation .cs-drop-ul {
  min-width: 13.875rem;
  margin: 0;
  padding: 0.25rem 0 1.125rem 0;
  background-color: var(--BLACK);
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 100%;
  z-index: var(--Z-N10);
  overflow: hidden;
  transform: scaleY(0);
  transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  transform-origin: top;
}

#cs-navigation.shaded .cs-drop-ul {
  background-color: var(--BLACK-85);
}

#cs-navigation .cs-drop-li {
  font-size: 0.875rem;
  text-decoration: none;
  list-style: none;
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
  transform: translateY(-0.625rem);
  transition: opacity 0.6s, transform 0.6s;
}

#cs-navigation .cs-drop-li:nth-of-type(1) {
  transition-delay: 0.05s;
}

#cs-navigation .cs-drop-li:nth-of-type(2) {
  transition-delay: 0.1s;
}

#cs-navigation .cs-drop-li:nth-of-type(3) {
  transition-delay: 0.15s;
}

#cs-navigation .cs-drop-li:nth-of-type(4) {
  transition-delay: 0.2s;
}

#cs-navigation .cs-drop-li:nth-of-type(5) {
  transition-delay: 0.25s;
}

#cs-navigation .cs-drop-li:nth-of-type(6) {
  transition-delay: 0.3s;
}

#cs-navigation .cs-drop-li:nth-of-type(7) {
  transition-delay: 0.35s;
}

#cs-navigation .cs-drop-li:nth-of-type(8) {
  transition-delay: 0.4s;
}

#cs-navigation .cs-drop-li:nth-of-type(9) {
  transition-delay: 0.45s;
}

#cs-navigation .cs-li-link.cs-drop-link {
  text-transform: capitalize;
  white-space: nowrap;
  width: 100%;
  padding: 0.875rem 1.375rem 0 1.375rem;
  transition: color 0.3s, background-color 0.3s;
}

#cs-navigation .cs-li-link.cs-drop-link:hover {
  color: var(--GREEN);
  transform: translateY(0px);
}

#cs-navigation .cs-li-link.cs-drop-link:before {
  display: none;
}

#cs-navigation .cs-dropdown:hover .cs-drop-icon {
  transform-origin: center;
  transform: rotate(180deg);
}

/**************************************/
/*********** REGULAR LINK *************/
/**************************************/

.link-regular:link,
.link-regular:visited {
  color: var(--BROWN-DARK);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  position: relative;
}

.link-regular:link::after,
.link-regular:visited::after,
.link-regular:link::before,
.link-regular:visited::before {
  content: "";
  left: 0;
  top: 100%;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--BROWN-DARK);
  transition: transform 0.3s ease;
}

.link-regular:link::after,
.link-regular:visited::after {
  transform: scale3d(1, 1, 1);
  transform-origin: 100% 50%;
  transition-delay: 200ms;
}

.link-regular:link::before,
.link-regular:visited::before {
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  transition-delay: 0ms;
}

.link-regular:hover::after,
.link-regular:active::after {
  transform: scale3d(0, 1, 1);
  transition-delay: 0ms;
}

.link-regular:hover::before,
.link-regular:active::before {
  transform: scale3d(1, 1, 1);
  transition-delay: 200ms;
}

/**************************************/
/*********** GROUPED LINK *************/
/**************************************/

.link-group {
  display: flex;
  align-items: center;
}

.link-styled:link,
.link-styled:visited {
  color: var(--BLACK);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1rem;
  text-transform: uppercase;
  height: 2.875rem;
  border: 1px solid var(--BLACK);
  border-radius: 2.875rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

/** For buttons **/

.link-styled {
  color: var(--BLACK);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  height: 2.875rem;
  border: 1px solid var(--BLACK);
  border-radius: 2.875rem;
  background: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

/** For buttons **/

.link-group .link-styled:first-child {
  width: 2.875rem;
}

.link-group .link-styled:nth-child(2) {
  width: fit-content;
  padding: 1.125rem 1.875rem;
}

.link-span-clip {
  position: relative;
  overflow: hidden;
  height: 1rem;
  /* width: 5.5625rem; */
}

.link-span-clip span {
  transition: transform 0.3s ease;
}

.link-span-clip span:nth-child(2) {
  position: absolute;
  left: 0;
  top: 105%;
}

.link-span-clip span:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0;
}

.link-span-clip span:nth-child(3) {
  opacity: 0;
}

.link-styled {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}

.link-styled:hover span,
.link-styled:active span {
  transform: translateY(-100%);
}

.link-arrows {
  /* width: 0.5rem;
  height: 0.5rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.link-icon {
  transition: transform 0.3s;
}

.link-arrows .link-icon:first-child {
  position: absolute;
  left: 0;
  top: 0;
}

.link-arrows:first-child .link-icon:nth-child(2) {
  position: absolute;
  left: -115%;
  top: -115%;
}

.link-arrows:nth-child(2) .link-icon:nth-child(2) {
  position: absolute;
  left: -115%;
  top: 115%;
}

.link-styled:hover .link-arrows:first-child .link-icon {
  transform: translate(115%, 115%);
}

.link-styled:hover .link-arrows:nth-child(2) .link-icon {
  transform: translate(115%, -115%);
}

/**************************************/
/************** FOOTER ****************/
/**************************************/

.footer {
  position: relative;
  background-color: var(--BLACK);
}

.footer-container {
  padding: 3.75rem 0;
  margin: 0 var(--SIDE-MARGIN);
  max-width: var(--MAX-CONTENT);
  display: flex;
  column-gap: 4.375rem;
  flex-wrap: wrap;
  row-gap: 4rem;
}

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.375rem;
  width: 24.625rem;
  margin-right: auto;
}

.footer-text {
  color: var(--BROWN-MID);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.socials-container {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}

.social-link {
  transition: transform 0.3s;
}

.social-link:hover {
  transform: translateY(-2px);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}

.footer-nav-double {
  gap: 3.75rem;
}

.footer-nav-li {
  list-style: none;
  display: flex;
}

.footer-nav-link {
  color: var(--BROWN-MID);
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
  line-height: 100%;
}

.footer-nav-link:hover {
  color: var(--GREEN);
}

.footer-nav-head {
  color: var(--BROWN-DARK);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.sub-footer {
  border-top: 1px solid var(--BROWN-MID-30);
  padding: 1.5rem 0;
}

.sub-footer-container {
  margin: 0 var(--SIDE-MARGIN);
  max-width: var(--MAX-CONTENT);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.sub-footer-text {
  font-size: 0.75rem;
  color: var(--BROWN-MID);
  font-weight: 400;
  text-align: center;
}

.sub-footer-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.sub-footer-text a:hover {
  color: var(--GREEN);
}

/**************************************/
/************** POPUP *****************/
/**************************************/

.popup {
  position: fixed;
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background-color: var(--BLACK-85);
  height: clamp(5rem, 10vw, 6.25rem);
  width: 24.375rem;
  border-radius: 1rem;
  bottom: 1rem;
  right: 1rem;
  z-index: var(--Z-TOP);
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}

.popup.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.popup-text {
  color: var(--BROWN-SOFT);
  font-size: 1.25rem;
  font-weight: 400;
}

/**************************************/
/********** CIRCLE BUTTON *************/
/**************************************/

.circle-button {
  background-color: var(--BROWN-SOFT-50);
  border: none;
  width: clamp(4rem, 12vw, 5.625rem);
  height: clamp(4rem, 12vw, 5.625rem);
  border-radius: 5.625rem;
  transition: background-color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-button:hover {
  background-color: var(--BROWN-SOFT);
}

/**************************************/
/*************** FORM *****************/
/**************************************/

.form {
  max-width: 36.125rem;
}

.form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  width: 100%;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 2.375rem;
}

.form-row:nth-child(6) {
  margin-top: -1.5rem;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  flex: 1;
  position: relative;
}

.input-container .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-container .form-input {
  border: none;
  border-bottom: 1px solid var(--BLACK);
  background: none;
  min-height: 2.625rem;
  flex: 1;
  color: var(--BLACK);
  font-size: 1rem;
  line-height: 1.6875rem;
  transition: border-bottom 0.2s;
  width: 100%;
  border-radius: 0;
}

.input-container .form-input:focus,
.input-container textarea:focus {
  border-bottom: 2px solid var(--BLACK-85);
  outline: none;
}

.input-container .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 0.5rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--RED);
}

.input-container textarea {
  flex: 1;
  min-height: 8.125rem;
  max-height: 8.125rem;
  max-width: 100%;
  min-width: 100%;
  border: 1px solid var(--BLACK);
  background: none;
}

.input-header,
.form-input::placeholder {
  font-size: 1rem;
  line-height: 1.6875rem;
  font-weight: 500;
  color: var(--BLACK);
}

.radio-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.375rem;
  min-width: 1.375rem;
  background: none;
  border: 1px solid black;
  border-radius: 3px;
  position: relative;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ebebeb;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--GREEN);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.wpcf7-response-output {
  display: none;
}

.container.accept-policy {
  align-items: flex-start;
}

.accept-policy p {
  font-size: 0.75rem;
  line-height: 1.2;
}

.accept-policy p a {
  color: var(--BLACK);
}

/**************************************/
/************* PICTURE ****************/
/**************************************/

.picture-element {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.picture-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-element.bg-image {
  position: absolute;
  inset: 0;
  z-index: var(--Z-BOTTOM);
}

.landingBg {
  width: 200px;
  height: 200px;
}

/***************************************/
/************ OBJECT CARD **************/
/***************************************/

.object-card.reserved::after {
  content: "Rezervuotas";
  position: absolute;
  left: 0;
  top: 2rem;
  color: var(--BROWN-SOFT);
  background: var(--BROWN-DARK);
  padding: 1rem 1rem 1rem 2rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.object-card {
  position: relative;
  width: 58.25rem;
  height: 14.625rem;
  border: 1px solid var(--BLACK);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--BLACK);
  display: flex;
  /* background-color: var(--BROWN-SOFT); */
}

.object-card-image {
  height: 100%;
  width: 24.75rem;
}

.object-content-box {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 3rem;
  gap: 1.125rem;
  flex: 1;
}

.object-header {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2rem;
  text-transform: uppercase;
  height: 2rem;
  overflow: hidden;
}

.object-info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  row-gap: 1.125rem;
}

.object-info {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.object-divider {
  height: 1px;
  width: 100%;
  background-color: var(--BROWN-MID);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-total {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2rem;
  color: var(--BROWN-DARK);
}

.price-divider {
  font-size: 3rem;
  font-weight: 400;
  color: var(--BROWN-MID);
}

.price-per {
  font-size: 0.875rem;
  color: var(--BROWN-DARK);
  font-weight: 400;
}

/***************************************/
/************** SECTION ****************/
/***************************************/

section {
  position: relative;
}

.section-u-30 {
  padding-top: clamp(1.5rem, 20vw, 1.875rem);
  /* Pasidaryti taip visur ir pasiziureti ar tinkamos yra 20vh value */
}

.section-u-45 {
  padding-top: 2.8125rem;
}

.section-u-60 {
  padding-top: 3.75rem;
}

.section-u-90 {
  padding-top: 5.625rem;
}

.section-d-30 {
  padding-bottom: 1.875rem;
}

.section-d-45 {
  padding-bottom: 2.8125rem;
}

.section-d-60 {
  padding-bottom: 3.75rem;
}

.section-d-90 {
  padding-bottom: 5.625rem;
}

/***************************************/
/************* NEWS CARD ***************/
/***************************************/

.news-card {
  max-width: 34.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.news-content-box {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  font-size: 0.875rem;
  color: var(--BROWN-DARK);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1rem;
}

.breadcrumbs a {
  color: var(--BROWN-DARK);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--GREEN);
}

.date-time {
  color: var(--BROWN-MID);
  font-weight: 400;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  line-height: 1rem;
}

.news-title {
  font-size: clamp(1.25rem, 6vw, 1.75rem);
  line-height: 2.5625rem;
  text-decoration: none;
  color: var(--BLACK);
}

.news-excerpt {
  font-size: 1rem;
  line-height: 1.5rem;
  max-height: 3rem;
  overflow: hidden;
}

.image-link {
  width: 100%;
  height: 22rem;
}

/***************************************/
/********** CATEGORY BUTTON ************/
/***************************************/

.category-button {
  /*Create suck a button that in a flex container it would take as much space as it needs*/
  background: var(--BROWN-MID);
  border: none;
  padding: 0;
  margin: 0;
  height: 4.875rem;
  flex: 1;
  min-width: 17.125rem;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--BLACK);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.category-button:hover {
  background-color: var(--GREEN);
  color: var(--BROWN-SOFT);
}

.category-button.active {
  background-color: var(--GREEN);
  color: var(--BROWN-SOFT);
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.375rem;
  justify-content: space-between;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

/***************************************/
/************** ACCORDION **************/
/***************************************/

.accordion-container {
  display: flex;
  flex-direction: column;
  max-width: 63.375rem;
  margin: 0 auto;
}

.accordion-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: var(--BLACK);
  text-transform: uppercase;
  padding: 2.375rem 0;
  text-align: left;
}

.accordion-button:not(:first-child) {
  border-top: 1px solid var(--BROWN-SOFT);
}

.accordion-button .button {
  background-color: var(--BROWN-SOFT);
  min-height: 5.5rem;
  min-width: 5.5rem;
  border-radius: 5.5rem;
  position: relative;
}

.accordion-button .button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-button .button img:nth-child(1) {
  opacity: 1;
  transition: opacity 0.3s;
}

.accordion-button .button img:nth-child(2) {
  opacity: 0;
  transition: opacity 0.3s;
}

.accordion-button.active .button img:nth-child(1) {
  opacity: 0;
}

.accordion-button.active .button img:nth-child(2) {
  opacity: 1;
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  max-width: calc(63.375rem - 1.5rem - 5.5rem);
}

.accordion-panel p {
  padding-bottom: 2.375rem;
}

/***************************************/
/*************** INTRO *****************/
/***************************************/

.section-intro {
  height: 20.375rem;
  background-color: var(--BROWN-MID);
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 0.5rem;
  margin: 0 var(--SIDE-MARGIN);
}

.intro-header {
  font-size: 2.25rem;
  line-height: 3.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: "the-seasons", sans-serif;
  text-transform: uppercase;
  color: var(--BROWN-DARK);
  text-align: center;
}

.intro-subheader {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  max-width: 51rem;
  text-align: center;
}

/***************************************/
/********* SHORT CONTACT INFO **********/
/***************************************/

.section-short-contact-info {
  background-color: var(--BROWN-SOFT);
  height: 19.375rem;
}

.short-info-container {
  max-width: var(--MAX-CONTENT);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: clamp(1.5rem, 20vw, 10rem); */
  gap: 1.5rem;
  margin: 0 var(--SIDE-MARGIN);
  flex-wrap: wrap;
}

.short-info-container .text-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.875rem;
  width: 47%;
}

.short-info-container .text-container h2 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  color: var(--BROWN-DARK);
  font-family: "the-seasons";
  text-transform: uppercase;
}

.short-info-container .text-container p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--BROWN-DARK);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.info-phone,
.info-email,
.info-address {
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-family: "the-seasons";
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.825rem;
  text-decoration: none;
  color: var(--BLACK);
}

.info-email,
.info-address {
  font-size: clamp(1.25rem, 6vw, 1.75rem);
}
/***************************************/
/************* REVIEW CARD *************/
/***************************************/

.review-card {
  background-color: var(--BROWN-MID);
  border-radius: 1rem;
  padding: 2.125rem 3.125rem;
  max-width: 23.5rem;
  height: 34.275rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.review-starter {
  padding: 8.375rem 3.125rem 2.125rem 3.125rem;
}

.review-starter-name {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  font-family: "the-seasons";
  text-transform: uppercase;
  color: var(--BROWN-DARK);
}

.review-starter .stars img {
  width: 1.5rem;
  height: 1.5rem;
}

.review-starter .review-content {
  font-size: 1rem;
  line-height: 1.5rem;
}

.swiper-slide .review-text {
  height: 10.5rem;
  overflow-y: scroll;
}

.swiper-slide .review-text::-webkit-scrollbar {
  width: 2px !important;
}

.swiper-slide .review-text::-webkit-scrollbar-thumb {
  background-color: var(--BROWN-DARK);
}

.review-starter .review-text a {
  color: var(--BLACK);
}

.review-count {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.review-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.rating {
  font-size: 0.875rem;
  font-weight: 400;
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.review-author {
  font-weight: 500;
  text-transform: uppercase;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  align-items: center;
  overflow: hidden;
}

.reviews-container > h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  font-family: "the-seasons";
  text-transform: uppercase;
  color: var(--BROWN-DARK);
}

.reviews-swiper .swiper-slide::after {
  display: none;
}

.reviews-swiper {
  width: 100%;
}
/***************************************/
/************** PAGINATION *************/
/***************************************/

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.page {
  height: 2.625rem;
  width: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: "the-seasons";
  text-decoration: none;
  color: var(--BLACK);
}

.page.current {
  border-radius: 2.625rem;
  border: 1px solid var(--GREEN);
  color: var(--GREEN);
}

.next {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--GREEN);
  gap: 0.5rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}

/***************************************/
/************** LANGUAGE  **************/
/***************************************/

#trp-floater-ls.trp-bottom-right {
  right: 0;
}

#trp-floater-ls.trp-color-dark {
  border-radius: 0.5rem 0 0 0;
}


/* styles css */

.section-hero {
  height: 100vh;
}

/* ABOUT CONTAINER */

.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

.about-title {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about-name {
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: clamp(2.75rem, 10vw, 4.375rem);
  margin-bottom: clamp(0.5rem, 2vw, 1.35rem);
}

.about-paragraph {
  margin-bottom: 1.75rem;
}

.services-container:not(:last-child) {
  margin-bottom: 2.75rem;
}

.services-element {
  display: flex;
  gap: 1.25rem;
}

.my-services {
  display: flex;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.services-elements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.25rem;
  column-gap: 0.75rem;
}

.person-picture {
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 0.9375rem;
}

.person-picture img {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    lightgray -180.517px -208.855px / 174.396% 227.521% no-repeat;
}

.person-picture-container {
  align-self: start;
  max-width: 25.875rem;
  max-height: 29.75rem;
  position: relative;
}

.person-picture-container::before {
  content: "";
  position: absolute;
  top: 13.9375rem;
  right: -4.5rem;
  width: 300%;
  height: 23.0625rem;
  background-color: var(--BROWN-MID);
}

.person-picture-container::after {
  content: "";
  position: absolute;
  top: 5.5rem;
  left: -3.75rem;
  width: 3.75rem;
  height: 19.625rem;
  border-radius: 0.9375rem 0rem 0rem 0.9375rem;
  background-color: var(--BROWN-DARK);
}

.selling-objects-container-outer {
  background-color: var(--BROWN-SOFT);
  padding: 3.75rem 0;
}

.selling-objects-container-inner {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.selling-objects-container-inner .price-divider {
  color: var(--BROWN-MID);
}

.selling-objects-container-inner > h2:first-child {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--BROWN-DARK);
  text-transform: uppercase;
  text-align: center;
}

.selling-objects-container-inner .link-group {
  margin-top: 2rem;
}

/* GLOBAL STYLES */

.page-renting::after {
  display: none;
}

.rent-content .bold-p,
.consultation-container .bold-p,
.element-floor .bold-p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

/* PUBLIC USE */

.mid-heading {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.link-route {
  color: var(--BLACK);
}

.span-stamp {
  color: var(--BROWN-DARK);
  line-height: 1.5rem;
}

.spacer {
  display: flex;
  border-top: 1px solid var(--BROWN-SOFT);
  margin-bottom: 2.125rem;
}

.spacer-vertical {
  display: flex;
  border-left: 1px solid var(--BROWN-SOFT);
  margin-bottom: 2.125rem;
  height: 21rem;
  width: 1px;
}

.bold-p {
  font-weight: 500;
}

.point-section li {
  list-style-type: disc;
  list-style-position: inside;
}

/* SECTION DUK */

.duk-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

/* SECTION POSTS */

.posts-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}

.section-header {
  font-size: clamp(1.75rem, 10vw, 2.25rem);
  font-weight: 400;
  color: var(--BROWN-DARK);
  line-height: 2.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.posts-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.75rem;
  column-gap: 0.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.625rem;
}

/* SECTION NEWEST POSTS */

.new-posts-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}

.new-posts-heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.new-posts-heading-container .section-header {
  font-weight: 700;
}

/* SECTION CONTACT */

.container-upper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

.huge-text {
  font-size: clamp(4rem, 12vw, 9.375rem);
  font-family: "the-seasons", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--BROWN-SOFT);
  text-transform: uppercase;
  margin-bottom: -1.75rem;
}

.container-lower {
  background-color: var(--BROWN-SOFT);
  width: 100%;
}

.container-lower > div {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.left-container {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  /* position: relative; */
  /* justify-content: center; */
}

.left-container h2 {
  font-family: "the-seasons", serif;
  font-weight: 700;
  color: var(--BROWN-DARK);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: clamp(2.75rem, 6vw, 3.75rem);
  width: calc((5 / 6) * 100%);
  transform: translateY(-78%);
  /* top: calc(0 - 3.75rem -; */
  /* position: absolute; */
  text-transform: uppercase;
}

.contact-image {
  width: 14.625rem;
  height: 14.625rem;
  border-radius: 1rem;
  margin-left: 3rem;
  margin-top: -2rem;
  z-index: var(--Z-10);
}

.contact-block {
  position: relative;
}

.contact-info-box {
  position: absolute;
  padding: 6.25rem 3rem 3.5rem 3rem;
  background-color: var(--BROWN-MID);
  top: 72%;
  left: 0;
}

/* LANDING PAGE */
.landing-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 12rem;
}

h2.landing-subtitle {
	font-size: 1.375rem;
    font-weight: 500;
    color: var(--BG);
    margin-bottom: 1em;
}
.landing-title {
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--BROWN-SOFT);
  line-height: clamp(3rem, 6vw, 3.75rem);
}

.landing-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.landing-content.right-container span,
.landing-content.right-container .link-group,
.landing-content.right-container .landing-subtitle,
.landing-content.right-container .landing-title {
  align-self: end;
  text-align: end; 
}

.landing-content .link-styled:link,
.landing-content .link-styled:visited {
  border: 1px solid var(--BROWN-SOFT);
  color: var(--BROWN-SOFT);
}

.landing-content .link-styled:link img {
  filter: invert(96%) sepia(9%) saturate(108%) hue-rotate(358deg)
    brightness(92%) contrast(88%);
}

.landing-container .spacer-vertical {
  margin: 0 2rem;
}
.landing-container .spacer {
  display: none;
}

/* RENT PAGE */

.rent-content .point-section li {
  margin-bottom: 0.5rem;
}

.rent-content .about-paragraph {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.content-container.padding-rent-section {
  padding-bottom: 10.5rem;
}

/* BUY PAGE */

.welcome-container {
  position: relative;
  padding-top: 21.35rem;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

.welcome-image {
  width: 100%;
  height: 33.75rem;
}

.consultation-container {
  background: var(--BROWN-SOFT);
  padding: 2.75rem 5.625rem 3.75rem 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
}

.consultation-container .upper-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.consultation-container .downer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  width: 60%;
}

.consultation-container .floor-price {
  margin-top: 0;
}

.welcoming-title {
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: clamp(2.5rem, 10vw, 3.75rem);
}

.consultation-elements {
  display: grid;
  gap: 3.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.consultation-elements.about-container {
  gap: 3.75rem;
}

.price-card-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  background: var(--BROWN-SOFT);
  padding: 3.75rem 3.375rem;
}

.buy-pricing-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.125rem;
}

.floor-price {
  margin-top: 3.75rem;
  text-align: center;
}

.floor-description {
  line-height: 1.5rem;
  font-weight: 450;
  font-size: 1rem;
}

.duk-container .intro-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

/* BUY PAGE */

.welcome-container {
  position: relative;
  padding-top: 21.35rem;
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

.welcome-image {
  width: 100%;
  height: 33.75rem;
}

.consultation-container {
  background: var(--BROWN-SOFT);
  padding: 2.75rem 5.625rem 3.75rem 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
}

.consultation-container .upper-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.welcoming-title {
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: clamp(2.5rem, 10vw, 3.75rem);
}

.consultation-elements {
  display: grid;
  gap: 3.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.price-card-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  background: var(--BROWN-SOFT);
  padding: 3.75rem 3.375rem;
}

.buy-pricing-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.125rem;
}

.floor-price {
  margin-top: 3.75rem;
  text-align: center;
}

.floor-description {
  line-height: 1.5rem;
  font-weight: 450;
  font-size: 1rem;
}

.duk-container .intro-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

/* SELL PAGE */

.mid-heading.span-stamp {
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}

.welcome-container .spacer {
  border-top: 1px solid var(--BROWN-MID);
  margin-bottom: 1rem;
}

.welcome-container .consultation-elements {
  column-gap: 5.25rem;
  row-gap: 2.75rem;
}

.consultation-elements .bold-p {
  margin-bottom: 0.5rem;
}

.video-container {
  display: flex;
  flex-direction: column;
  gap: 2.15rem;
  align-items: center;
}

.video-container .intro-header {
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  line-height: clamp(2rem, 6vw, 3.75rem);
}

.consultation-container .intro-header {
  margin-top: 2.5rem;
}

.reverse-container .person-picture-container::before {
  left: -4.5rem;
}

.reverse-container .person-picture-container {
  justify-self: end;
}

.reverse-container .rent-content {
  order: -1;
}

.estate-video-background {
  background: var(--BROWN-SOFT);
  margin: 0 var(--SIDE-MARGIN);
  max-width: var(--MAX-CONTENT);
  padding: 2.75rem 0 3.75rem 0;
}

/* APIE MANE */

.services-information {
  gap: 3.75rem;
  background: linear-gradient(to bottom, var(--BG) 35%, var(--BROWN-SOFT) 35%);
}

.services-information .consultation-elements {
  padding-bottom: 5.25rem;
}

.video-element {
  display: flex;
  max-width: var(--MAX-CONTENT);
  width: 100%;
  padding: 0 var(--SIDE-MARGIN);
  align-items: center;
  justify-content: center;
}

/* OBJECT PAGE */

.objects-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  align-items: center;
}

.objects-dynamic {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.objects-flex {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.filters-container {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  width: 58.25rem;
  border-bottom: 1px solid var(--BROWN-SOFT);
  align-items: center;
}

.post-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.post-filter p {
  text-transform: uppercase;
}

.select-menu {
  position: relative;
}

.select-menu .select-btn {
  display: flex;
  height: 2.75rem;
  z-index: 10;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  width: 10.5rem;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.select-menu .options {
  position: absolute;
  width: 150%;
  right: 0;
  display: none;
  overflow-y: auto;
  padding: 1rem 1.375rem;
  background-color: var(--BROWN-SOFT);
  border-top: 1px solid var(--BLACK);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

.select-menu .options::-webkit-scrollbar {
  display: none;
}

.select-menu .options .option {
  display: flex;
  height: 2.25rem;
  cursor: pointer;
  align-items: center;
}

.select-menu .options .option:hover .option-text {
  color: var(--GREEN);
}

.select-menu .options .option .option-text {
  font-size: 0.875rem;
  color: var(--BLACK);
  font-weight: 500;
  transition: color 0.3s;
}

.select-btn img {
  transition: 0.3s;
}

.select-menu.active .select-btn i,
.select-menu-advanced.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu.active .select-btn img,
.select-menu-advanced.active .select-btn img {
  transform: scaleY(-1);
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 9;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

.select-menu .options .option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.select-menu .options .option input[type="radio"] + span {
  position: relative;
}

.select-menu .options .option input[type="radio"]:checked + .option-text {
  color: var(--GREEN);
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 25px, 0);
    opacity: 0;
  }
}

/* PATARIMAI */

.post-container {
  display: flex;
  flex-direction: column;
  background: var(--BROWN-SOFT);
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  padding: clamp(1rem, 6vw, 3.75rem) clamp(1rem, 6vw, 7.95rem);
  gap: 5.75rem;
}

.navigation-container a,
.navigation-container {
  display: flex;
  gap: 0.25rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.09375rem;
  color: var(--BROWN-DARK);
  transition: color 0.3s;
  flex-wrap: wrap;
}

.navigation-container a:hover {
  color: var(--GREEN);
}

.post-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-heading .intro-header {
  font-weight: 400;
  line-height: 2.5rem;
  text-align: unset;
}

.post-date {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.news-big-picture {
  height: 23.125rem;
}
.single-post .post-description a{
	color: var(--BROWN-DARK);
}
.single-post .post-description b,
.single-post .post-description strong{
	font-weight: bold;
}
.single-post .post-description .wp-block-list .wp-block-list{
	padding-left: 1em;
}
.single-post .post-description .wp-block-list{
	padding-left: 1em;
}
.single-post .post-description{
	gap: 1.5em;
}
.post-description {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.post-description h2 {
  font-family: "Maven Pro";
  font-size: clamp(1.375rem, 6vw, 1.875rem);
  font-weight: 400;
  color: var(--BLACK);
  line-height: clamp(1.75rem, 6vw, 2.25rem);
}

.options-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.recommended-news-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 10rem;
  /* margin: 0 var(--SIDE-MARGIN); */
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  overflow: hidden;
}

.section-recommended-news {
  display: flex;
  justify-content: center;
}

.swiper-news .swiper-slide::after {
  display: none;
}

.swiper-news .swiper-wrapper {
}

/* PAGE KONTAKTAI */

.section-contact-first::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 75%;
  height: 24.5rem;
  background-color: var(--BROWN-MID);
  z-index: var(--Z-N10);
}

.contact-first-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  gap: 8.125rem;
}

.contact-page-image {
  max-width: 25.125rem;
  max-height: 36rem;
  border-radius: 1rem;
}

.contact-page-information {
  display: flex;
  flex-direction: column;
  gap: 5.875rem;
  align-items: flex-start;
}

.basic-contact-info {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}

.basic-contact-info h1 {
  font-family: "the-seasons", serif;
  font-weight: 700;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  color: var(--BROWN-DARK);
  text-transform: uppercase;
}

.social-flex {
  /* display: flex; */
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 5.625rem;
  row-gap: 1.625rem;
  position: relative;
  padding-right: 2rem;
}

.social-flex:after {
  content: "";
  display: block;
  width: 195%;
  z-index: var(--Z-N20);
  height: 14.625rem;
  bottom: -1.875rem;
  right: 0;
  position: absolute;
  background-color: var(--BROWN-SOFT);
}

.social-line {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--BLACK);
  transition: transform 0.3s;
}

.social-line:hover {
  transform: translateY(-2px);
}

.section-contact-second {
  background: linear-gradient(to bottom, var(--BG) 4%, var(--BROWN-SOFT) 4%);
}

.contact-second-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.contact-second-container h2 {
  text-align: center;
  font-family: "the-seasons", serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--BROWN-DARK);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 80%;
}

/* object inner */

.object-head-container {
  max-width: var(--MAX-CONTENT);
  margin: var(--SIDE-MARGIN);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.375rem;
  flex-wrap: wrap;
}

.object-head-container h1 {
  font-size: clamp(1.5rem, 10vw, 1.875rem);
  line-height: clamp(1.5rem, 10vw, 1.875rem);
  color: var(--BROWN-DARK);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.swiper-gallery {
  height: 37.5rem;
}

.swiper-slide {
  height: 100%;
  width: auto;
  position: relative;
}

.swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}

.swiper-slide-active::after {
  display: none;
}

.object-gallery-image {
  height: 100%;
  width: auto;
  object-fit: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: auto;
}

.about-object-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
}

.object-heading-container {
  margin-bottom: -1rem;
}

.object-heading-container h2 {
  font-family: "the-seasons", serif;
  font-weight: 700;
  font-size: clamp(2rem, 12vw, 9.375rem);
  line-height: 0.75;
  color: var(--BROWN-SOFT);
  text-transform: uppercase;
}

.object-heading-container h2:nth-child(2) {
  text-align: right;
}

.object-info-container {
  background-color: var(--BROWN-SOFT);
  padding-bottom: 3.75rem;
}

.object-info-inside {
  max-width: 49rem;
  background-color: var(--BROWN-MID);
  margin: 0 auto;
  padding: clamp(1rem, 6vw, 3.75rem) clamp(2rem, 6vw, 6.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.object-info-inside h2 {
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 3rem);
  line-height: 1;
  color: var(--BROWN-DARK);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.75rem;
}

.object-description-inside {
  max-width: 49rem;
  margin: 0 auto;
  padding-top: 2.125rem;
  padding-bottom: 3.75rem;
}

.subinfo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}

.subinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.subinfo img {
  width: auto;
  height: clamp(2rem, 6vw, 3.25rem);
}

.subinfo p {
  font-size: clamp(0.875rem, 6vw, 1rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--BROWN-SOFT);
}

.section-about-object .price-row {
  margin-top: 0.625rem;
}

.section-about-object .price-divider {
  color: var(--BROWN-SOFT);
}

.copy-container {
  max-width: 49rem;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.suggest-objects-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.suggest-objects-container > div:first-child > h2:first-child {
  align-self: flex-start;
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  line-height: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--BROWN-DARK);
  text-transform: uppercase;
}

.suggest-objects-container > div:first-child {
  width: 58.25rem;
}

/* random */

.personal-consultation-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 4rem;
}

.personal-consultation-container p.header {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Privatumo politika */

.privacy-container {
  max-width: var(--MAX-CONTENT);
  margin: 0 var(--SIDE-MARGIN);
}

.privacy-container h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.privacy-container h3 {
  font-size: clamp(1.25rem, 6vw, 2rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.privacy-container p {
  font-size: clamp(0.875rem, 6vw, 1rem);
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
