/*
Theme Name: Parco Brentani
Author: Portalworks
Version: 1.0.0
Text Domain: parcobrentani
*/
/***************************************************************
                        FONTS
***************************************************************/
/* libre-baskerville-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/libre-baskerville-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Baskerville';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/libre-baskerville-v14-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/libre-baskerville-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* libre-franklin-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/libre-franklin-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Franklin';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/libre-franklin-v14-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Franklin';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/libre-franklin-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libre Franklin';
    font-style: italic;
    font-weight: 700;
    src: url('fonts/libre-franklin-v14-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/***************************************************************
                        ROOT
***************************************************************/
:root {
    --font-primary: "Libre Baskerville", sans-serif;
    --font-secondary: "Libre Franklin", sans-serif;
    --orange-light: rgb(255,247,237);
    --orange-dark: rgb(154, 52, 18);
    --green: #90a188;
    --nav-link-color: rgb(85, 95, 83);
    --text-color: rgb(55, 65, 81);
    --text-box-background-color: rgb(229, 231, 235);
    --gery-light-hover: rgb(240, 245, 242);
    --tw-gradient-from: #ffedd5;
    --tw-gradient-to: #fed7aa;
    --tw-gradient-stops: var(--tw-gradient-from),var(--tw-gradient-to);
    --standard-link-color: rgb(17, 24, 39);
    --bs-table-striped-bg: rgba(241, 245, 249, 1);
    --cell-size: 5rem;
    --cell-size-lg: 15rem;
}



/***************************************************************
                        BODY
***************************************************************/
body {
    font-family: var(--font-primary);
    background-color: var(--orange-light);
    color: var(--text-color);
}

/***************************************************************
                        PRE-DEFINED CLASSES
***************************************************************/
.section-padding-sm {
    padding-top: 35px;
    padding-bottom: 35px;
}
.section-padding-md {
    padding-top: 35px;
    padding-bottom: 35px;
}
.text-color {
    color: var(--text-color);
}
.bg-white {
    background-color: #fff;
}
.bg-light {
    background-color: var(--text-box-background-color-color);
}
.container-fluid {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 768px) {
	.section-padding-md {
        padding-top: 104px;
        padding-bottom: 65px;
    }
}
@media (min-width: 992px) {
	#svg-container {
	height: 100%;
	position: relative;
}
#svg-container svg {
	position: sticky;
	left: 0;
	top: 20%;
}
    .container-fluid {
        padding-left: 32px;
        padding-right: 32px;
		max-width: 1920px;
    }
	.gallery-grid {
		max-width: 1920px;
		margin: 0 auto;
	}
	.section-padding-md {
        padding-top: 35px;
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 600px) {
	.text-image-section .editor {
		-webkit-line-clamp: 4; /* Limit to 3 lines */
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		max-height: 7.5em; /* Adjust based on line height */
		position: relative;
	}
	.text-image-section .editor:before {
		content: '';
		position: absolute;
		width: 100%;
		height: 40px;
		left: 0;
		bottom: 0;
		z-index: 11;
		 background: rgb(255,247,237);
	background: linear-gradient(0deg, rgba(255,247,237,1) 50%, rgba(255,247,237,0) 90%); 
	}
	.read-more-btn {
		display: block;
		width: 100%;
		color: var(--text-color);
		text-decoration: underline;
		font-size: 16px; 
		line-height: 1.75;
		background: transparent;
		border: 0;
		padding: 0;
	}
}
@media screen and (min-width: 600px) {
	.read-more-btn {
		display: none;
	}
}


.editor h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 28px;
	color: #566054;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn,
.btn:focus-visible,
.btn:active {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: rgba(203, 213, 225, 1) !important;
    font-weight: 700;
    line-height: 1.75;
    color: var(--text-color);
    font-size: 16px;
    border: 0;
}

.btn svg {
    width: 16px;
    height: 16px;
}
.btn:hover,
.btn:focus {
    background-color: rgba(203, 213, 225, 1);
}
.btn-zona {
    border-radius: 0;
}
.btn-zona:hover {
    background-color: rgb(253 186 116) !important;
}

.privacy-wrap a {
	color: var(--nav-link-color);
}
/***************************************************************
                        HOME PAGE
***************************************************************/
/*************  NAVBAR  *****************/
body.home {
    position: relative;
}
.home .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 111;
}
.navbar {
    padding-top: 16px;
    padding-bottom: 16px;
}
.navbar-brand {
    max-width: 164px;
    width: 100%;
    height: auto;
}
.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-nav {
    gap: 8px;
}
.navbar-nav .nav-link {
    color: var(--nav-link-color);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}
.navbar-nav .nav-item:first-child .nav-link {
    padding-top: 0;
}
.navbar-nav .nav-item:last-child .nav-link {
    padding-bottom: 0;
}
.navbar-nav {
    text-align: right;
}
.navbar-nav .nav-link.active {
    color: var(--orange-dark);
}
#zona-panorama {
     width: 100%;/* 64.4% */
    height: 100svh;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}
canvas {
    display: block;
}
.panorama-section {
	min-height: 100svh;
}
.panorama-section canvas {
    cursor: move;
}
.panorama-section .editor {
    padding-top: 48px;
}
/*************  HERO  *****************/
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-wrapper {
    align-items: center;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img, .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-box {
    padding: 32px;
}
.editor {
    text-align: left;
}
.editor a {
    color: var(--standard-link-color);
}
.editor h1 {
    color: var(--nav-link-color);
    font-size: 36px;
    line-height: 1.1;
	padding-bottom: 11px;
    margin-bottom: 0;
}
.text-image-section .editor h1 {
	padding-bottom: 32px;
}
.editor h2 {
    color: var(--nav-link-color);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
}
.editor ul, 
.editor ol {
    padding-left: 26px;
}
.editor ul li,
.editor ol li {
    padding-left: 7px;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 12px;
    margin-top: 12px;

}
.editor p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 21px;
    margin-top: 21px;
}
.mfp-bottom-bar,
.mfp-arrow {
    display: none !important;
}

.fancy-rot svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slider-wrapper {

    width: 150vw;
    /* min-height: 90vh; */
}
.shrink-0 {
    flex-shrink: 0;
}
.slider {
    gap: 4rem;
}
.shrink-0 img {
    width: auto;
    max-height: 25rem;
    height: 100%;
    max-width: 100%;
}
.shrink-0 .text-box {
    max-width: min(calc(100vw - 2rem), 30rem);
    margin-bottom: 2rem;
}
/*************  TABS  *****************/
.nav-tabs {
    border: 0;
}
.nav-tabs .nav-link {
    background-color: #fff;
    border-radius: 0;
    border: 8px solid #fff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 128px;
}
.nav-tabs .nav-link .nav-tab-title {
    font-size: 16px;
    color: var(--nav-link-color);
    line-height: 1.5;
    font-family: var(--font-secondary);
    margin-top: 10px;
}
.nav-tabs .nav-link .icon-box {
    width: 64px;
    height: 64px;
}
.nav-tabs .nav-link .icon-box svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    background-color: #f0f5f2;
    border-color: #f0f5f2;
}
.tab-content {
	max-width: 834px;
}
.tab-pane {
    transition: opacity .15s linear;
}
.tab-pane .editor p,
.tab-pane ul li,
.tab-pane ol li {
	font-weight: 700;
}
.nav-tabs .nav-link.active {
    border-color: var(--green);
    background-color: #f0f5f2;
}
.icon-list use {
    --fa-primary: #555f53;
    --fa-secondary: #90a188;
    fill: var(--fa-primary);
}
.tab-section {
    background-image: linear-gradient(to bottom,var(--tw-gradient-stops));
}

.tab-section .tab-content {
	margin-top: 45px;
}
.tab-pane .editor p,
.tab-pane .editor ul li,
.tab-pane .editor ol li{
	font-size: 18px;
}
.tab-pane .editor > *:last-child {
    border-bottom: 8px solid var(--green);
  padding-bottom: 1rem;
}
.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    background-color: var(--bs-table-striped-bg);
}
.table-striped > tbody > tr:nth-of-type(2n) > * {
    background-color: rgba(255, 255, 255, 1)
}
.fancy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.navs-container {
	padding: 0;
}
.tab-section .container,
.tab-section nav{
    position: relative;
    z-index: 1;
}

.hero-section {
    overflow: hidden;
    max-width: 100%;
	padding-top: 175px;
	min-height: 90vh;
	  display: flex;
	  align-items: center;

}
/***************************************************************
                        POSTEGGI PAGE
***************************************************************/
/*************  TEXT-IMAGE SECTION *****************/
.big-image-box {
    min-height: 890px;
    height: 90%;
    width: 90%;
	max-width: 750px;
}

/***************************************************************
                       FLATS PAGE
***************************************************************/
.flats-table {
    min-width: 982px;
}
table th, table td {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(55, 65, 81, 1);
    font-family: var(--font-secondary);
    padding: 12.5px 5px;
    text-align: center;
}
table thead th {
    position: sticky;
    top: 0;
	z-index: 111;
}
table tr th:first-child, 
table tr td:first-child {
    padding-left: 14.5px;
}
table tr th:last-child, 
table tr td:last-child {
    padding-right: 14.5px;
}
table th {
    font-weight: 700;
}
.table-section thead th {
    background-color: rgba(178, 198, 168, 1);
}
.table-section .scroll-container {
    overflow: scroll;
    border: 1px solid rgba(178, 198, 168, 1);
}
.table-section g path {
	transition: all 0.2s ease-in-out;
}
.table-section g.hover path {
	fill: #f9b14b;
}
.table-section g.hover path.cls-2 {
	fill: #7c4e1e;
}
.table-section g {
	transition: 0.3s ease-in-out transform;
}
.table-section g.move-up {
	transform: translateY(-170px);
}
.table-section #Text path {
	transition: 0.3s ease-in-out all;
}
.table-section #Text path.move-up {
	transform: translateY(-170px);
}
.table-section tr td, .table-section  g {
	transition: all 0.3s ease-in-out;
}
 
.table-section g.deki, path.deki {
	opacity: 0.2;
}
.table-section tr:hover td {
	background-color: #f9b14b !important;
}
.pdf-link {
	display: inline-block;
	height: 24px;
	width: 24px;
}
.pdf-link img {
	width: 100%;
	height: 100%;
	object-fit: contain !important;
}
.table-section td a {
	color: var(--text-color);
}
/***************************************************************
                       GALLERY PAGE
***************************************************************/
.mfp-with-zoom.mfp-ready .mfp-container,
img.mfp-img{
	cursor: auto;
}
@keyframes flipUp {
    0% {
      opacity: 0;
      transform: perspective(80rem) scale(0.5) rotate3d(1, 1, 0, 90deg);
    }
    to {
      opacity: 1;
      transform: perspective(80rem) scale(1) rotate3d(1, 1, 0, 0deg);
    }
  }

.gallery-grid a {
    display: block;
    height: 100%;
    width: 100%;
}
.gallery-grid {
    display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-auto-rows: var(--cell-size);
  grid-template-columns: repeat(auto-fill,var(--cell-size));
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}
.gallery-grid > div {
    position: relative;
}
.gallery-grid .r1-1 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-grid .r1-2 {
    grid-column: span 1;
    grid-row: span 2;
  }
  .gallery-grid .r2-1 {
    grid-column: span 2;
    grid-row: span 1;
  }
.gallery-grid img {
    --tw-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);
    animation: flipUp .3s ease-in-out forwards;
	animation-delay: 1s;
    animation-delay: .5s;
    border-radius: .5rem;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
    cursor: pointer;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    transform: perspective(80rem) rotateX(90deg);
    width: 100%;
    will-change: transform;
  }

/***************************************************************
                      WINCASA ALARM
***************************************************************/
.warteliste-section {
	background-color: #FAEFE2;

}
.warteliste-section .editor {
	text-align: center;
	max-width: 586px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.subscribe-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.subscribe-form .um {
	margin-bottom: 0 !important;
}
.warteliste-section .lista-icon {
	width: 30px;
	height: 32px;
	margin-bottom: 15px;
}
.warteliste-section .lista-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#um-submit-btn {
	background: var(--orange-dark) !important;
	padding: 8px 16px !important;
    border-radius: 0px !important;
    font-weight: 700 !important;
    line-height: 1.75 !important;
    font-size: 16px !important;
    border: 0 !important;
	height: 80px !important;
}
.um .um-cover-add:hover, .um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i, .um .um-field-radio.active:not(.um-field-radio-state-disabled) i, .um .um-item-meta a, .um .um-member-less a:hover, .um .um-member-more a:hover, .um .um-member-name a:hover, .um .um-members-pagi a:hover, .um .um-profile-subnav a.active, .um .um-tip:hover, .um-account-name a:hover, .um-account-nav a.current, .um-account-side li a.current span.um-account-icon, .um-account-side li a.current:hover span.um-account-icon, .um-dropdown li a:hover, i.um-active-color, span.um-active-color {
	color: var(--orange-dark) !important;
}
.subscribe-form a {
	color: var(--orange-dark) !important;
	margin-left: 5px;
}
#user_email-120 {
	font-size: 18px !important;
	padding-top: 23px !important;
	padding-bottom: 23px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
	line-height: 1.8px !important;
	height: 80px !important;
}
._um_row_1 {
	margin: 0 0 15px 0 !important;
}
.um-field-area {
display: flex;
	justify-content: center;
	align-items: center;
}
.um-notice {
	position: absolute !important;
	width: 300px !important;
	left: 0 !important;
	top: 40px !important;
	display: none;
}
/***************************************************************
                        RESPONSIVE
***************************************************************/
@media (min-width: 576px) {  }
@media (min-width: 768px) {
    /***************************************************************
                        HOME PAGE
    ***************************************************************/
    /*************  NAVBAR  *****************/
    .navbar-nav {
        gap: 16px;
    }
    /*************  HERO  *****************/
	#user_email-120 {
		padding-left: 30px !important;

	}
}
@media (min-width: 992px) {
	.warteliste-section.section-padding-md {
		padding-top: 100px;
	}
    /***************************************************************
                        HOME PAGE
    ***************************************************************/
    /*************  NAVBAR  *****************/
    .navbar {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .navbar-brand {
        max-width: 256px;
    }
    .navbar-nav .nav-link {
        font-size: 18px;
        line-height: 1.5;
    }
	.tab-section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.tab-section .tab-content {
		margin-top: 95px;
	}
    #zona-panorama {
        position: absolute;
        width: 64.4%;/* 64.4% */
        right: unset;
    }
	.navs-container {
		padding: 0 12px;
	}
    /***************************************************************
                       GALLERY PAGE
    ***************************************************************/
    .gallery-grid {
      grid-auto-rows: var(--cell-size-lg);
      grid-template-columns: repeat(auto-fill,var(--cell-size-lg));
    }
	.um form {
		position: relative;
	}
	.um form #um-submit-btn {
		position: absolute;
		right: 0;
		top: 15px;
	}
	#user_email-120 {
		padding-right: 260px !important;
		
	}
	.um-120.um {
		max-width: 610px !important;
	}
	.image-wrap {
		padding-top: 100px;
	}
	
}
@media (min-width: 1200px) {
    /***************************************************************
                        HOME PAGE
    ***************************************************************/
    /*************  TABS  *****************/
    .tab-section .col-lg-2 {
        width: 14.2% !important;
    }
}
@media (min-width: 1400px) {  }
@media (min-width: 1550px) {
    .scroll-container {
        overflow-x: auto;
        overflow-y: scroll;
        max-height: 738px;
    }
	.free-flats-wrap .scroll-container {
		max-height: 509px;
	}
}
@media (min-width: 1920px) {
	#zona-panorama {
		width: 60vw;
	}
}