/*
Theme Name: Riva Richterswil
Theme URI: 
Author: Webovita
Author URI: https://www.webovita.ch/
Version: 1.0

* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
/******** FONTS *******/
/* yeseva - latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Yeseva One';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/yeseva-one-v22-latin_latin-ext-regular.woff2') format('woff2'); 
}
/* karla - latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/karla-v31-latin_latin-ext-300.woff2') format('woff2'); 
  }

  @font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/karla-v31-latin_latin-ext-regular.woff2') format('woff2'); 
  }

  @font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/karla-v31-latin_latin-ext-italic.woff2') format('woff2'); 
  }

  @font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/karla-v31-latin_latin-ext-500.woff2') format('woff2'); 
  }

  @font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/karla-v31-latin_latin-ext-600.woff2') format('woff2'); 
  }

  @font-face {
    font-display: swap; 
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/karla-v31-latin_latin-ext-700.woff2') format('woff2'); 
  }


/* karla-300italic - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Karla';
    font-style: italic;
    font-weight: 300;
    src: url('fonts/karla-v31-latin_latin-ext-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
/*************** ROOT ***************/
:root {
    --primary-font: 'Karla', sans-serif;
    --secondary-font: 'Yeseva One', sans-serif;
    --primary-color: #192D3C;
    --secondary-color: #D6C4A8;
    --primary-filter: brightness(0) saturate(100%) invert(14%) sepia(51%) saturate(531%) hue-rotate(163deg) brightness(91%) contrast(93%);
}
/*************** PREDEFINED ***************/
body {
    font-family: var(--primary-font);
    line-height: 1.25;
    color: var(--primary-color );
}
.btn {
    font-size: 15px;
    line-height: 1;
    padding: 14px;
    border-radius: 8px;  
    font-weight: 500; 
    transition: all .3s;
    position: relative;
    text-decoration: none;
}
.btn.btn-arrow {
    padding-right: 40px;
}
.btn-arrow::after {
    height: 15px;
    width: 15px;
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: right .2s;
}
.btn-primary:disabled,
.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
}
.btn-primary.btn-arrow::after {
    background-image: url('img/arrow-right-white.svg');
}
.btn-primary.btn-arrow:hover::after {
    background-image: url('img/arrow-right-dark.svg');
    right: 18px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background: #FFFFFF !important;
    color: var(--primary-color) !important;
    border: none !important;
}
.contact-form-container .btn-primary:hover,
.contact-form-container .btn-primary:focus,
.contact-form-container .btn-primary:active,
.contact-form-container .btn-primary.active {
    background: #FFFFFF !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.contact-form-container .btn-primary {
    border: 1px solid var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}
.wpcf7-spinner {
    position: absolute;
    bottom: -27px;
    right: 0;
}
/******** HEADER ***********/
.navbar-brand img { 
    width: 45px;
    height: auto;
    max-height: 50px;
}
.offcanvas-header {
    padding: 8px 12px;
}
.offcanvas {
    border-left: none !important;  
    background-color: var(--secondary-color);
}
.menu-btn {
    background-color: transparent;
    border: none;
}
.menu-btn:focus-visible {
    outline: none;
}
.menu-btn img {
    width: 25px;
    border: none;
    filter: var(--primary-filter);
}
.navbar .nav-link {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 400;
    padding: 6px 0 !important;
    line-height: 1;
    position: relative;
}
.navbar .nav-link::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 0;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: all .2s;
}
.navbar .nav-link.active::after {
    width: 100%;
}
.light-navbar {
    background-color: #FFFFFF;
}
.navbar-btn {
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    padding: 7px 30px;
    line-height: 1;
}
.navbar {
    background: transparent;
    transition: all .3s;
}
.navbar-light {
    background-color: #FFFFFF;
}
.offcanvas-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(348deg) brightness(110%) contrast(101%);
}
.navbar-light .offcanvas-btn img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(7%) saturate(4689%) hue-rotate(164deg) brightness(92%) contrast(86%);
}
.page-body .navbar {
    background-color: #FFFFFF;
}
.page-body .navbar .offcanvas-btn img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(7%) saturate(4689%) hue-rotate(164deg) brightness(92%) contrast(86%);
}
.page-body .logo-light {
    display: none !important;
}
.page-body .logo-dark {
    display: block !important;
}
.page-body {
    padding-top: 66px;
}

/******** HERO ***********/

.hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.hero-section {
    min-height: 100svh;

    width: 100%;
}
.admin-bar .hero-section {
	min-height: calc(100svh - 46px);
}
.hero-scroll {
    color: #FFFFFF;
    text-decoration: none;
    transform: rotate(90deg);
    bottom: 65px;
    z-index: 5;
    font-size: 14px;
    margin-right: 120px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    opacity: 1;
    font-weight: 300;
}
.hero-scroll::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    left: 45px;
}
.hero-scroll::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    top: 50%;
    border-radius: 50%;
    background-color: #FFFFFF;
    left: 100%;
    transform: translateY(-50%);
    animation-name: scroll-animation;
    animation-duration: 1.5s;
    animation-iteration-count: infinite; 
}
@keyframes scroll-animation {
  0% {left: 100%;opacity: .2;}
  50% { opacity: .9;}
  100% {left: 200%;opacity: .2;}
}

.spacer-section {
    padding: 25px 0;
}
.spacer-section::after {
    position: absolute;
    content: "";
    height: calc(100% - 50px);
    width: 1px;
    background-color: var(--secondary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ti-section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ti-section-inner {
    padding: 40px 0;
}

.default-text p:last-child {
    margin-bottom: 0;
}
.default-text p {
    font-weight: 300;
    text-align: start;
    letter-spacing: 0;
}
.default-text h1,
.default-text h2,
.default-text h3,
.default-text h4,
.default-text h5,
.default-text h6 {
    font-family: var(--secondary-font);
    margin-bottom: 16px;
    letter-spacing: 0;
}
.default-text h1 { font-size: 38px; }
.default-text h2 { font-size: 30px; }
.default-text h3 { font-size: 22px; }
.default-text h4 { font-size: 18px; }
.default-text h5 { font-size: 16px; }
.default-text h6 { font-size: 14px; }

.text-page-block .default-text h1 { font-size: 38px; }
.text-page-block .default-text h2 { font-size: 30px; }
.text-page-block .default-text h3 { font-size: 22px; }
.text-page-block .default-text h4 { font-size: 18px; }
.text-page-block .default-text h5 { font-size: 15px; }
.text-page-block .default-text h6 { font-size: 13px; }

.text-page-block  .default-text li,
.text-page-block  .default-text a,
.text-page-block  .default-text p {
    font-size: 14px;
	font-weight: 300;
	color: var(--primary-color);
}

.text-image-section .default-text p {
    text-align: start;
}
.title-badge {
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    padding: 6px 18px 5px 18px;
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 12px;
}
.custom-padding {
    padding: 40px 0;
}
.image-1 img,
.image-2 img {
    width: 100%;
    height: auto;
}
.two-images-inner {
    gap: 16px;
}
.swiper-slide img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    transition: all .2s;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    background-size: 35%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .2s;
}
.swiper-button-disabled {
    opacity: 0 !important;
}
.swiper-button-next::after {
    background-image: url('img/arrow-right-white.svg');
}
.swiper-button-prev::after {
    background-image: url('img/arrow-left-white.svg');
}
.lage-table-icon {
    width: 16px;
    height: 16px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lage-table-icon img{
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    filter: var(--primary-filter);
}

.lage-table-container td:first-child {
    text-align: start;
    white-space: wrap;
    padding-left: 0;
}
.lage-table-container th:first-child {
    padding-left: 0;
}
.lage-table-container td:last-child,
.lage-table-container th:last-child {
    padding-right: 0;
}
.lage-table-container table {
    --bs-table-bg: transparent;
}
.lage-table-container {
    background-color: #ECD8B9;
    border-radius: 20px;
}
.lage-table-container td {
    text-align: center;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12px;
    color: var(--primary-color);
    vertical-align: middle;
    padding: 9px 7px;
    border-top: 1px solid #9B8D7726;
}
.lage-table-container tr:last-child td {
    border-bottom: 1px solid #9B8D7726;
}
.lage-table-container th {
    color: var(--primary-color);
    font-weight: 700;
    padding: 4px;
}
.lage-table-container {
    padding: 8px 8px 12px 8px;
}
.lage-table-desc {
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    padding-top: 12px;
}
.lage-features {
    list-style-type: none;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 40px;
}
.lage-features p {
    font-weight: 300;
    font-size: 20px;
    padding: 8px 0;
    margin: 0;;
}
.lage-links {
    gap: 20px;
    padding-top: 15px;
}
.lage-links a {
    color: var(--primary-color);
    font-weight: 300;
    display: inline-block;
}
.lage-links a:hover {
    text-decoration: none;
}
.footer-block {
    border-top: 1px solid #192D3C59;
    border-bottom: 1px solid #192D3C59;
}
.footer-bottom  {
    padding-top: 20px;
}
.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}
.footer-bottom-left {
    column-gap: 20px;
    row-gap: 10px;
}

footer {
    padding: 70px 0 25px 0;
}
.footer-block {
    padding: 30px 0;
}
.footer-logo {
    width: 220px;
}
.footer-logo img {
    width: auto;
    max-width: 100%;
}
.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-links ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-links ul a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 300;
}
.footer-links ul li {
    margin-bottom: 6px;
}
.footer-links ul li:last-child {
    margin-bottom: 0;
}
.infos-logo img {
    max-width: 160px;
}
.infos-box p,
.infos-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 300;
}
.infos-box p {
    margin-bottom: 10px;
}
.infos-box p:last-child {
    margin-bottom: 0;
}
.flats-table-container thead {
    padding: 5px 0;
}
.flats-table-container table {
    --bs-table-border-color: var(--secondary-color);
}
.flats-table-container th,
.flats-table-container td {
    color: var(--primary-color);
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    padding: 10px 6px;
    position: relative;
    white-space: nowrap;
}
.flats-table-container td {
    white-space: nowrap;
}
.flats-table-container  th {
    background-color: var(--secondary-color);
}
.flats-table-container  td::after,
.flats-table-container  th::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    height: 80%;
    transform: translateY(-50%);
    width: 1px;
    background-color: #FFFFFF4D;
}
.flats-table-container  th:first-child {
    border-top-left-radius: 10px;
}
.flats-table-container  th:last-child {
    border-top-right-radius: 10px;
}
.flats-table-container  th:last-child::after {
    display: none;
}
.flats-image-box {
    height: 350px;
    width: 100%;
}
.flats-image-box svg {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.flats-table-container a {
    display: flex;
    justify-content: center;
}
.flats-table-container a img {
    width: 16px;
}
/* .flats-table-container tr:hover td {
    background-color: #FFFBF0;
} */
.flats-table-container tr.hovered td {
    background-color: #FFFBF0;
}
.flats-table-container.active::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #FFFFFF00 100%);
    transition: all .2s;
}
.flats-table-container.active::after {
    position: absolute;
    content: "";
    height:100%;
    z-index: 1;
    width: 0;
    pointer-events: none;
    opacity: 1;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, var(--secondary-color) 0%, #FFFFFF00 100%);
    transition: all .2s;
}
.flats-table-container.active.scrolled-left::after {
    width: 22px;
}
.flats-table-container.active.scrolled-right::before {
    width: 22px;
}
.flats-table-container .table-responsive {
    scrollbar-width: none;
}

.flats-table-container .table-responsive::-webkit-scrollbar {
    display: none; 
}
.flats-table-desc {
    font-size: 15px;
    padding-top: 12px;
    font-weight: 300;
}
.flats-downloads-links {
    list-style-type: none;
}
.flats-downloads-links li {
    border-top: 1px solid var(--secondary-color);
    padding: 8px;
}
.flats-downloads-links li:last-child {
    border-bottom: 1px solid var(--secondary-color);
}
.flats-downloads-links li a {
    color: var(--primary-color);
    font-weight: 300;
    text-decoration: none;
}
.flats-downloads-links li a img {
    width: 18px;
}
.flats-downloads {
    padding-top: 40px;
}
.flats-downloads .title-badge {
    margin-bottom: 20px;
}
.contact-img {
    border: 2px solid #FAEFD4;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}
.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-box {
    padding: 40px 0;
}
.contact-box h3 {
    font-size: 24px;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}
.contact-name {
    font-size: 22px;
    margin-bottom: 12px
}
.contact-person-links a {
    color: var(--primary-color);
    margin-bottom: 8px
}
.contact-person-links a:hover {
    text-decoration: none;
}
body.admin-bar .offcanvas,
body.admin-bar .navbar.fixed-top {
    top: 46px;
}
#wpadminbar {
    position: fixed;
}
:root :where(.editor-styles-wrapper)::after {
    display: none !important;
}
html :where(.wp-block) {
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
html {
    scroll-padding-top: 100px;
}
/******** BLOCK PADDING ***********/
.padding-top-nopadding {
    padding-top: 0;
}
.padding-top-medium {
    padding-top: 25px;
}
.padding-top-big {
    padding-top: 40px;
}

@media (min-width: 992px) {
    .padding-top-medium {
        padding-top: 60px;
    }
    .padding-top-big {
        padding-top: 80px;
    }
}

.padding-bottom-nopadding {
    padding-bottom: 0;
}
.padding-bottom-medium {
    padding-bottom: 25px;
}
.padding-bottom-big {
    padding-bottom: 40px;
}


.custom-checkboxes {
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    align-items: start;
}
.custom-checkboxes input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #F6F4F4;
    margin: 0;
    width: 29px;
    height: 29px;
    display: inline-block;
    border: 1px solid transparent;
    flex-shrink: 0;
	position: relative;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
}
.custom-checkboxes .wpcf7-list-item {
    margin: 0;
}
.custom-checkboxes label {
    display: flex;
    align-items: center;
}
.custom-checkboxes input[type="checkbox"]::before {
    content: "";
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    display: inline-block;
    top: 0;
    left: 0;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    -webkit-border-radius:4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
    background-image: url('img/check.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}
.custom-checkboxes input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.checkboxes-label,
.form-label,
.custom-checkboxes .wpcf7-list-item-label{
    font-size: 16px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 0;
}
.checkboxes-label {
    margin-bottom: 20px;
}
.custom-checkboxes .wpcf7-list-item-label {
    margin-left: 10px;
}
.form-select,
.form-control {
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 15px;
    padding: 8px 13px;
}
.form-control::placeholder {
    color: var(--primary-color);
    font-size: 16px;
}
.contact-form-container .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}
.contact-form-container p {
    margin: 0;
}
.form-info {
    font-size: 14px;
    margin-bottom: 12px;
    display:inline-block;
}
.form-select:focus,
.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--primary-color);
}
.accept-check.custom-checkboxes input[type="checkbox"]::before {
    width: 16px;
    height: 16px;
    background-size: 10px;
}
.accept-check.custom-checkboxes input[type="checkbox"]  {
    width: 15px;
    height: 15px;
}
.accept-check .wpcf7-list-item-label a,
.accept-check .wpcf7-list-item-label {
    font-size: 14px;
    color: var(--primary-color);
}
.grecaptcha-badge { 
    visibility: hidden !important;
}
.offcanvas-header .menu-btn {
	position: absolute;
	right: 20px;
	top: 20px;
}
.offcanvas .navbar-brand img {
	width: 75px;
	max-height: 85px;
}
.flats-image-box svg path {
	stroke: #192D3C !important;
}
.flats-image-box svg path {
	transition: all .7s;
}
.garage-hovered path {
    fill: var(--secondary-color) !important;
	stroke: #FFFFFF !important;
}

.floor {
    -o-transition: all .6s ease;
    transition:
        all .6s ease;
    -webkit-transition:
        all .6s ease;
    -ms-transition: all .6s ease;
}
.floor.moveup:not(.garage-floor) {
    -ms-transform: translate(0, -350px);
    transform: translate(0, -350px);
    -webkit-transform: translate(0, -120px);
}
.floor > g > polygon,  .floor > g > polyline, .floor > g *, .flat-row td {
    -o-transition: all .3s ease;
    transition:
        all .3s ease;
    -webkit-transition:
        all .3s ease;
    -ms-transition: all .3s ease;
}
.floor > g.active-flat > polygon, .floor > g.de:hover > polygon, .floor > g.de:hover > polyline, .floor > g.active-flat > polyline, .floor > g.de:hover *, .floor > g.active-flat *,
.floor > g.de:hover > polygon, .floor > g.de:hover > polyline, .floor > g.de:hover *
{
  fill: var(--secondary-color) !important;
  stroke: #fff !important;
}


#Garage.moveup path {
	fill: var(--secondary-color) !important;
}
.slide-badge {
	background: #FFFFFF;
    padding: 4px 6px;
    line-height: 1;
    border-radius: 24px;
    bottom: 8px;
    left: 8px;
    font-size: 14px;
	color: var(--secondary-color);
}
@media (min-width: 992px) {
    .padding-bottom-medium {
        padding-bottom: 60px;
    }
    .padding-bottom-big {
        padding-bottom: 80px;
    }
}


.lage-icon-first {
	transform: rotate(45deg);
}
.flats-checkboxes {
	flex-wrap: wrap;
	row-gap: 15px;
}

.floor.moveup .terrain {
	display: none !important;
}

@media (max-width: 576px) {
    .gallery-section .container {
        padding: 0 !important;
    }
}
/******** RESPONSIVE SM ***********/
@media (min-width: 576px) {
    .lage-table-container {
        padding: 15px;
    }

    .lage-table-desc {
        padding-top: 15px;
    }
    .lage-table-container td,
    .lage-table-container th {
        padding: 8px;
    }
}
/******** RESPONSIVE MD ***********/
@media (min-width: 768px) {
    .custom-checkboxes {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
}
@media (min-width: 783px) {
    body.admin-bar .navbar.fixed-top {
        top: 32px;
    }
	.admin-bar .hero-section {
		min-height: calc(100svh - 32px);
	}
}
/******** RESPONSIVE LG ***********/
@media (min-width: 992px) {
    .navbar {
        padding: 12px 0 !important;
    }
    .navbar .nav-link {
        font-size: 14px;
        color: #FFFFFF;
        padding: 10px 6px !important;
    }
    .navbar .nav-link::after {
        background-color: #FFFFFF;
        transition: all .2s;
    }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: calc(100% - 12px);
    }
    .navbar .nav-item {
        padding: 0 10px;
    }
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
       color: #FFFFFF;
    }
    .navbar-btn {
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
		font-size: 14px;
    }
    .navbar-btn:hover {
        color: var(--primary-color);
        border: 1px solid #FFFFFF;
        background-color: #FFFFFF;
    }
    .navbar-light.navbar .nav-link {
        color: var(--primary-color);
    }
    .navbar-light.navbar .nav-link::after {
        background-color: var(--primary-color);
    }
    .navbar-light .navbar-btn {
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
		
    }
    .navbar-light .navbar-btn:hover {
        color: #FFFFFF;
        border: 1px solid var(--primary-color);
        background-color: var(--primary-color);
    }

    .page-body .navbar .nav-link {
        color: var(--primary-color);
    }
    .page-body .navbar .nav-link::after {
        background-color: var(--primary-color);
    }
    .page-body .navbar-btn {
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }
    .page-body .navbar-btn:hover {
        color: #FFFFFF;
        border: 1px solid var(--primary-color);
        background-color: var(--primary-color);
    }



    .hero-scroll {
        font-size: 16px;
        margin-right: 150px;

    }
    @keyframes scroll-animation {
        0% {left: 100%;opacity: .2;}
        50% { opacity: .9;}
        100% {left: calc(100% + 108px); opacity: .2;}
      }
    .spacer-section::after {
        height: calc(100% - 60px);
    }
    .ti-section-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
    }
    .lage-section .ti-section-image {
        right: auto;
        left: 0;
    }
    .ti-section-inner {
        padding: 60px 0;
    }
    .default-text p {
        font-size: 18px;
        margin-bottom: 18px;
		text-align: justify;
    }
    .two-images-inner {
        height: 500px;
        width: 100%;
    }
    .image-1,
    .image-2 {
        height: 100%;
        flex-shrink: 0;
    }
    .image-1 img,
    .image-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .image-1 {
        width: calc(59% - 8px);
    }
    .image-2 {
        width:  calc(41% - 8px);
    }
    .swiper-button-next:hover::after,
    .swiper-button-prev:hover::after {
        background-color: var(--primary-color);
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px; 
    }
    .lage-table-container {
        padding: 15px 20px;
    }
    .lage-table-container td,
    .lage-table-container th {
        padding: 8px;
    }
    .ti-section-inner-left {
        padding-left: 30px;
    }
    .ti-section-inner-right {
        padding-right: 30px;
    }
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    .footer-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .footer-infos a:hover,
    .footer-links ul a:hover {
        text-decoration: underline;
    }
    .flats-table-desc {
        font-size: 16px;
    }
    .flats-downloads {
        padding-top: 70px;
    }
    .flats-downloads .title-badge {
        margin-bottom: 30px;
    }
    .flats-downloads-links li a:hover img {
        filter: brightness(0) saturate(100%) invert(88%) sepia(24%) saturate(273%) hue-rotate(355deg) brightness(88%) contrast(88%);
    }
    .contact-section-inner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 33.33333333%;
        background-color: var(--secondary-color);
        height: 100%;

    }
    .spacer-section {
        padding: 40px 0;
    }
    .form-select,
    .form-control {
        font-size: 16px;
        padding: 10px 15px;
    }
    .form-control::placeholder {
        font-size: 16px;
    }
    .contact-form-container .btn  {
        min-width: 234px
    }
    .page-body {
        padding-top: 74px;
    }
	.flats-image-box {
		height: 410px;
	}
	.lage-features {
		margin-bottom: 60px;
	}
	.slide-badge {
		padding: 8px 12px;
		left: 32px;
		font-size: 17px;
	}
	.contact-box h3 {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
	.contact-box {
		width: 41%;
	}
}
/******** RESPONSIVE XL ***********/
@media (min-width: 1200px) {
    .navbar .nav-link {
        padding: 10px 16px !important;
        font-size: 16px;
    }
    .navbar-btn {
        font-size: 16px;
    }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: calc(100% - 32px);
    }
    .navbar .nav-item {
        padding: 0 20px;
    }
    .hero-scroll::after {
        width: 105px;
        left: 50px;
    }
    .hero-scroll {
        bottom: 180px;
    }

    .spacer-section::after {
        height: calc(100% - 80px);
    }
    .ti-section-inner {
        padding: 80px 0;
    }
    .default-text p {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .default-text h1 { font-size: 70px; }
    .default-text h2 { font-size: 50px; }
    .default-text h3 { font-size: 30px; }
    .default-text h4 { font-size: 20px; }
    .default-text h5 { font-size: 18px; }
    .default-text h6 { font-size: 16px; }
    .custom-padding {
        padding: 80px 0;
    }
    .two-images-inner {
        gap: 20px;
    }
    .image-1 {
        width: calc(59% - 10px);
    }
    .image-2 {
        width:  calc(41% - 10px);
    }
    .two-images-inner {
        height: 600px;
    }
    .lage-table-container {
        padding: 5px 20px 15px 20px;
    }
    .lage-table-desc {
        padding-top: 20px;
        font-size: 15px;
    }
    .lage-table-container td,
    .lage-table-container th {
        padding: 15px 8px;
        font-size: 16px;
    }
    .ti-section-inner-left {
        padding-left: 60px;
    }
    .ti-section-inner-right {
        padding-right: 60px;
    }
    .lage-table-icon {
        width: 20px;
        height: 20px;
    }
    .lage-features p {
        font-size: 25px;
    }
    .lage-links a{
        color: var(--primary-color);
        font-weight: 300;
        font-size: 20px;
    }
    .lage-links {
        gap: 30px;
        padding-top: 20px;
    }
    footer {
        padding: 90px 0 55px 0;
    }
    .footer-bottom  {
        padding-top: 25px;
    }
    .footer-bottom-left {
        column-gap: 40px;
    }
    .footer-bottom a {
        font-size: 16px;
    }
    .footer-block {
        padding: 60px 0;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .footer-links-outer {
        gap: 40px !important;
    }
    .title-badge {
        padding: 7px 23px 5.5px 23px;

        font-size: 14px;
        margin-bottom: 22px;
    }
    .btn {
        font-size: 15px; 
        padding: 20px;
        border-radius: 12px;  
    }
    .footer-links ul li {
        margin-bottom: 20px;
    }
    .flats-table-container th,
    .flats-table-container td {
        font-size: 16px;
        padding: 14px;
    }
    .flats-table-container th {
        padding: 15px 14px;
    }
    .flats-table-container a img {
        width: 17px;
    }
    .flats-table-desc {
        font-size: 18px;
        padding-top: 18px;
    }
    .flats-downloads {
        padding-top: 100px;
    }
    .flats-downloads .title-badge {
        margin-bottom: 45px;
    }
    .flats-downloads-links li {
        padding: 16px;
    }
    .flats-downloads-links li a {
        font-size: 18px;
    }
    .flats-downloads-links li a img {
        width: 21px;
    }
    .contact-form-container .row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }
    .form-info {
        margin-bottom: 24px;
    }
	.admin-bar .hero-section {
		min-height: unset;
	}
	.hero-section {
		min-height: unset;
		max-height: 100svh;
		aspect-ratio: 16/9;
	}
	.lage-features {
		margin-bottom: 80px;
	}
	.slide-badge {
		padding: 10px 16px;
		left: 32px;
		font-size: 20px;
		bottom: 20px;
	}
}

/******** RESPONSIVE XXL ***********/
@media (min-width: 1400px) {
    .container {
        max-width: 1224px;
    }
    .navbar .nav-link {
        padding: 10px 20px !important;
    }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: calc(100% - 40px);
    }
    .navbar .nav-item {
        padding: 0 30px;
    }
    .default-text p {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .default-text h1 { font-size: 80px; }
    .default-text h2 { font-size: 60px; }
    .default-text h3 { font-size: 40px; }
    .default-text h4 { font-size: 30px; }
    .default-text h5 { font-size: 24px; }
    .default-text h6 { font-size: 18px; }
    .default-text h1,
    .default-text h2,
    .default-text h3,
    .default-text h4,
    .default-text h5,
    .default-text h6 {
        margin-bottom: 24px;
    }
	
	.text-page-block .title-badge {
		margin-bottom: 65px;
	}
	.text-page-block .default-text h1 { font-size: 60px; }
	.text-page-block .default-text h2 { font-size: 40px; }
	.text-page-block .default-text h3 { font-size: 30px; }
	.text-page-block .default-text h4 { font-size: 22px; }
	.text-page-block .default-text h5 { font-size: 18px; }
	.text-page-block .default-text h6 { font-size: 16px; }
	
	.text-page-block .default-text a,
	.text-page-block .default-text li,
	.text-page-block .default-text p {
        font-size: 18px;
        margin-bottom: 16px;
    }
	.text-page-block .default-text h1,
    .text-page-block .default-text h2,
    .text-page-block .default-text h3,
    .text-page-block .default-text h4,
    .text-page-block .default-text h5,
    .text-page-block .default-text h6 {
        margin-bottom: 20px;
    }
	
	
    .two-images-inner {
        height: 670px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
    }
    .swiper-button-prev {
        left: 35px;
    }
    .swiper-button-next {
        right: 35px;
    }
    .lage-table-container {
        padding: 5px 30px 20px 30px;
    }
    .lage-features p {
        font-size: 30px;
    }

    .footer-logo {
        width: 300px;
    }
    .footer-links-outer {
        gap: 80px !important;
    }
    .footer-links ul a  {
        font-size: 16px;
    }
}
/******** RESPONSIVE CUSTOM ***********/
@media (min-width: 1600px) {}
/******** RESPONSIVE CUSTOM ***********/
@media (min-width: 1800px) {}