
.interior-hero .content-container {
  margin:0 auto;  
}
  

.section-menu {
  position: relative;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 1.5rem;
  z-index: 5;
}
.section-menu__title {
  font-family: "Proxima Nova Light","Open Sans",Arial,sans-serif;
  font-size: clamp(1rem, 3vw, 1rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}
.section-menu__navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  min-height: 40px;
}
.section-menu-show {
  margin-left: auto;
  z-index: 1;
}
.section-menu__navigation-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.section-menu__navigation-list--item a {
  display: flex;
  justify-content: center;  
  padding: .82rem .563rem;
  font-size: .875rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;  
  border-radius: 8px;
  transition: all .3s linear;
}
.section-menu-show-more__button--sub.section-menu-show-more__button {
  position: relative;
  display: flex;
  align-items: center;  
  font-family: "Proxima Nova Light","Open Sans",Arial,sans-serif;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.2;  
  padding: .82rem 1.3rem .82rem .563rem;
  margin-right: 1.563rem;
  background-color: transparent;
  border: none;
}
.section-menu-show-more__button:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3px;
  margin: 0;
  width: 9px;
  height: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: width .3s;								
}  
.section-menu-show-more__button:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3px;
  margin: 0;
  width: 9px;
  height: 0;
  background-image: none;
  transform: translateY(-50%) rotate(0);
  transition: width .3s;	    
}  

.section-menu-show-more {
  display: none;
}
.section-menu-show-more__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.section-menu-show-more.section-menu-show-more--active {
  display: flex;
}
.section-menu-show-more--active .section-menu-show-more__list a {
  display: flex;
  justify-content: start;  
  padding: .82rem 1.563rem;
  font-size: .875rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 0;
  transition: all .3s linear;
}
.section-menu-close__button,
.section-menu-close__button-main--level {
  border: none;
  background-color: transparent;
  padding: 1.3rem 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .5rem .5rem .29rem auto;
  position: relative;
}
.section-menu-close__button-main--level:before,
.section-menu-close__button-main--level:after {
    position: absolute;
    content: " ";
    border-radius: 0;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
}
.section-menu-close__button-main--level:before {
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.section-menu-close__button-main--level:after {
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}

.section-menu-close__button .icon-close-section,
.section-menu-close__button-main--level .icon-close-section {
  width: 24px;
  height: 24px;
  overflow: visible;
}
.section-menu-show-more__button .icon-show-more-section {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 16px;
  height: 16px;
  overflow: visible;
}

.section-menu__title {
  display: none;
}  
.section-menu__title.section-menu__mobile {
  position: relative;
  display: block;
  width: 100%;  
  text-align: left;
  padding-right: 2.5rem;
  border: none;
}
.section-menu__title.section-menu__mobile:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin: 0;
  width: 11px;
  height: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: width .3s;								
}  
.section-menu__title.section-menu__mobile:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin: 0;
  width: 11px;
  height: 0;
  background-image: none;
  transform: translateY(-50%) rotate(0);
  transition: width .3s;	    
}  
.section-menu-show {
  display: none;
}

@media(max-width:63.938rem) {
  .section-menu-show.section-menu-show-more--active {
    border-radius: 12px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,.1);
    display: flex;  
    flex-direction: column;
    padding-bottom: 1.5rem;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;  
  }  
  .section-menu__navigation-list {
    flex-direction: column;
    align-items: start;
  }
  .section-menu__navigation-list--item {
    width: 100%;
  }
  .section-menu__navigation-list--item a {
    justify-content: left;
    padding: .75rem 1.5rem;
    border-radius: 0;
  }
  .section-menu-show-more > .section-menu-close__button {
    display: none;
  }
  .section-menu-show-more__button--sub.section-menu-show-more__button {
    margin-right: 0;
    padding: .75rem 1.5rem;
    border-radius: 0;
    width: 100%;
  }
  .section-menu-show-more__button:after {
    right: 1rem;
  }
  .section-menu-show-more__button--sub.section-menu-show-more__button:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin: 0;
    width: 10px;
    height: 0;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(90deg);
    transition: width .3s;								
  }  
  .section-menu-show-more__button--sub.section-menu-show-more__button:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin: 0;
    width: 10px;
    height: 0;
    background-image: none;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(0);
    transition: width .3s;	    
  }  
  .section-menu-show-more__button--sub.section-menu-show-more__button[aria-expanded="true"]:before {
    width: 0;	
  }
}

@media(max-width:63.938rem) { 
  .section-menu.sticky {
    top: 68px;
  }  
}

@media(min-width:64rem) {
  
  .section-menu.sticky {
    top: 58px;
  }  
  
  .section-menu__navigation-list--item:last-child > a {
    margin-right: 1.188rem;
  }    
  .section-menu-close__button-main--level {
    display: none;
  }
  .section-menu {
    padding: 0;
  }
  .section-menu .section-menu__inner {
    padding: .5rem 0;
  }  
  .section-menu__title {
    display: block;
  }    
  .section-menu__title.section-menu__mobile {
    display: none;
  }
  .section-menu-show {
    display: block;
  }  
  .section-menu-show-more {
    flex-direction: column;
    position: absolute;
    top: -.4rem;
    right: 0;
    width: 100%;
    max-width: 23.375rem;  
    padding-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .1);  
  }  
}

@media(max-width:63.938rem) {
  .background-overlay {
    content '';
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.3);
    z-index: 1;
  }
  body.section-menu-show-more--active .background-overlay {
    display: block;
  }
  body.section-menu-show-more--active {
    overflow-y: hidden;
    width: 100%;
    /*height: 100vh;*/
  }
  body.section-menu-show-more--active .section-menu-show.section-menu-show-more--active {
    overflow-y: auto;
    max-height: 80vh;
  }
}

.sticky {
  position: sticky;
  top: 6px;
  width: 100%;
  z-index: 9;
}
.section-menu.sticky {
  position: fixed;
  left: 0;
  right: 0;
  background-color: transparent !important;
  padding: 0 1.563rem;
  max-width: 120rem;
}

@media(min-width: 85.375rem) {
  .section-menu.sticky {
    padding: 0 4.063rem;
  }
}

.section-menu .section-menu__inner {
    padding: .4rem 0 .4rem 1.563rem;
    border-radius: 12px;
}

@media(max-width:63.938rem) {
  .section-menu .section-menu__inner {
    padding: 0;
  }
}

.interior-hero {
 position:relative;
}

.interior-hero .button {
  margin-top: 10px;
  width: 100%;
}

@media(min-width:48rem) {
  .interior-hero .button {
    margin-top: 0;
    width: fit-content;
  }
}

.interior-hero__wrapper {
  position:relative;  
}

.interior-hero__image-wrap{
  width: 100%;
}

.interior-hero__image-wrap img {
  border-radius:1rem;
}  



@media(max-width:47.938rem) {
  .interior-hero .content-container {
    padding-bottom: 1rem;
  }
  .interior-hero__image-wrap img {
    min-height: 180px;
  }  
}

.interior-hero__content-wrapper {
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:5;
  max-width:none;
  color: #fff;
  width: 100%;
}

.site-pconaca .interior-hero--primary .interior-hero__content-wrapper{
  color: #000;
}
@media(min-width: 62rem){
  .site-pconaca .interior-hero--primary .interior-hero__content-wrapper{
    color: #fff;
  }
}

.interior-hero--full.interior-hero--primary .interior-hero__image-wrap,
.interior-hero--full.interior-hero--white .interior-hero__image-wrap {
   width: 100%;
}

.interior-hero__slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;    
  margin-top: 1rem;
}

@media(min-width:62rem) {
  .interior-hero__content-wrapper {
    max-width:40%;
  }
  .interior-hero__image-wrap {
    position:absolute;
    border-radius:1rem;
    overflow:hidden;
    top:0;
    left:0;
    width:100%;
    height:100%;
  }  
  .interior-hero__image-wrap:before {
    content:'';
    display:block;
    position:absolute;
    width:100%;
    height:100%;
    border-radius:1rem;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    z-index:4; 
  }
  .interior-slide--light .interior-hero__image-wrap:before {
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%,rgba(2555,255,255,0) 100%);
  }  
  
  .interior-hero__content-wrapper {
    padding:3.25rem 7%;
  }  
  .interior-hero__slide-buttons {
    flex-wrap: nowrap;
  }
  .interior-hero__slide-buttons:has(.button--ghost){
    gap: 32px;
  }
}

.interior-hero__image-wrap img {
  object-fit: cover;
  object-position: top;
  height: inherit !important;
}
.interior-hero--full .interior-hero__image-wrap img {
  object-position: center;
  width: 100%;
}

.interior-hero__slide-buttons .button--ghost{
  padding: 0;
  display: inline-block;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
@media(min-width: 48rem){
  .interior-hero__slide-buttons .button--ghost{
    margin: 0;
  }
}

.interior-hero__slide-buttons .button{
  line-height: 1;
}

.button--ghost .interior-hero__slide-buttons-text{
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: auto;
  padding: 0.75rem 0;
}

.button--ghost .interior-hero__slide-buttons-text::before{
  content: '';
  position: absolute;
  background-color: #000;
  left: calc(0% - 100%);
  bottom: .25rem;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}

.interior-slide--dark .interior-hero__slide-buttons .button--ghost .interior-hero__slide-buttons-text::before{
  background-color: #fff;
}

.interior-hero__slide-buttons .button--ghost:hover,
.interior-hero__slide-buttons .button--ghost:focus{
  background-color: transparent !important;
}

.interior-hero__slide-buttons .button--ghost:hover .interior-hero__slide-buttons-text::before,
.interior-hero__slide-buttons .button--ghost:focus .interior-hero__slide-buttons-text::before{
  left: 0; 
}

.interior-slide--light .interior-hero__content-wrapper {
  color: #000;
}
.interior-slide--light .button--ghost{
  color: #000;
}
.interior-slide--dark .button--ghost{
  color: #fff;
}
.interior-slide--dark .button--ghost:hover,
.interior-slide--dark .button--ghost:focus {
  color: #fff;
}

.interior-hero__controls {
  display:inline-flex;
  align-items:center;
  margin-top: 1rem;
  position: relative;
}

.interior-hero__controls .swiper-button-prev,
.interior-hero__controls .swiper-button-next{
  top: 0;
}

@media(min-width:62rem) {
  .interior-hero__content-wrapper {
    min-height: 635px;
  }
}

.interior-hero__paging {
  position:static !important;
  padding:0 1rem;
  width: auto !important;
}

.interior-hero .swiper-pagination-bullet {
  background-color:#fff !important;
  transition:width .3s;
}
.interior-hero .interior-slide--light .swiper-pagination-bullet {
  background-color:#000 !important;
  opacity: .6;
}
.interior-hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.interior-hero .swiper-pagination-bullet:focus-visible {
  opacity: 1;
}

.interior-hero .swiper-pagination-bullet-active {
  width:25px  !important;
  border-radius:5px !important;
}

.interior-hero__control {
  position:relative !important;
  margin-top:0 !important;
  border:0;
  color:#fff !important;
  background-color:transparent;
}
.interior-slide--light .interior-hero__control {
  color:#000 !important;
}
.interior-slide--light .interior-hero__control:hover,
.interior-slide--light .interior-hero__control:focus {
  color:#fff !important;
}

.interior-hero__control:after {
  font-size:1rem !important;  
}

.interior-hero__video {
  border-radius: 1rem;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.interior-hero__video-container,
.interior-hero__media-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 1rem;
  gap: 1.5rem;
}
@media(min-width: 64rem){
  .interior-hero__video-container,
  .interior-hero__media-container {
    flex-wrap: nowrap;
    gap: 4rem;
    justify-content: space-between;
  }
}

@media(max-width:61.938rem) {
  .interior-hero__video-wrap {
    position: relative;
  }
}

.interior-hero__play-button{
  position: absolute;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  top: 50%;
  left: 50%;
  height: 5rem;
  transform: translate(-50%, -50%);
  z-index: 5;
  border-radius: 0.75rem;
}

.interior-hero__play-button .icon{
  width: 2rem;
  height: 2rem;
  fill: #fff;
}
.interior-hero__play-button .icon-pause{
  display: none;
}
.interior-hero__play-button.banner--video-playing .icon-pause {
  display: block;
}
.interior-hero__play-button.banner--video-playing .icon-play {
  display: none;
}

.interior-hero--video-playing{
  opacity: 0;
}

.interior-hero--video-playing .icon-play{
  display: none;
}

.interior-hero--video-playing .icon-pause{
  display: block;
}

.interior-hero--video-playing:hover,
.interior-hero--video-playing:focus{
  opacity: 1;
}

.interior-hero__info-toggle{
  position: absolute;
  padding: 0;
  background-color: transparent;
  border: none;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 5;
}

@media(min-width: 75rem){
  .interior-hero__info-toggle{
    bottom: 1rem;
  }
}

.interior-hero__info-toggle .icon{
  width: 1.5rem;
  height: 1.5rem;
}

.interior-hero__info-container{
  display: none;
  background-color: #fff;
  padding: 1rem;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 50%;
  width: auto;
  border-radius: 1rem;
  z-index: 5;
}

.interior-hero__info-text{
  color: #000;
}

.interior-hero__info-container.open{
  display: block;
}

.interior-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interior-hero__video-iframe {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    padding: 56.25% 0 0;
    z-index: 1;  
}
@media(min-width: 64rem){
  .interior-hero__video-iframe {
    position: relative; 
  }
}

@media(min-width: 75rem){
  .interior-hero__actions{
    flex-wrap: nowrap;
  }
}

.interior-hero__button{
  display: block;
  width: 100%;
}

@media(min-width: 75rem){
  .interior-hero__button{
    display: inline-block;
    width: auto;
  }
}

@media(max-width:61.938rem) {
  .interior-hero--white .interior-hero__content-wrapper {
    color:#000;
  }
  .interior-hero--primary .interior-slide--light .interior-hero__content-wrapper {
      color: #fff;
  }  
}

/* Swiper Fix */
.interior-hero .swiper-initialized .swiper-slide {
  opacity: 0!important;
}

.interior-hero .swiper-initialized .swiper-slide-active {
  opacity: 1!important;
}

/* Breadcrumbs */
.interior-hero__breadcrumbs {
  display: none;
}

@media(min-width:60rem){
  .interior-hero__breadcrumbs {
    display: block;
    margin-bottom: 1.240rem;
  }
}

.interior-hero__breadcrumbs-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.interior-hero--primary .interior-hero__breadcrumbs-list {
  color: #fff;
}

.interior-hero__breadcrumb {
  position:relative;
  font-size: .875rem;
  line-height: 1.2;  
}

.interior-hero__breadcrumb:last-child {
  text-transform:none;  
}

.interior-hero__breadcrumb:not(:last-child):after {
  content: "/";
  display: inline;
  position: absolute;
  right: 10px;
  top: 0;
}

.image-path {
     display: block;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem; 
}

.interior-hero__breadcrumb-link {
  display: block;
  padding-right: 25px;
  text-decoration: none;
  font-weight: 600;
}
.interior-hero__breadcrumb-link--translated {
  text-transform:none;  
}
.interior-hero--white .interior-hero__breadcrumb-link {
  color: #000;
}
.interior-hero--primary .interior-hero__breadcrumb-link {
  color: #fff;
}

.interior-hero__breadcrumb-link:hover,
.interior-hero__breadcrumb-link:focus {
  text-decoration:underline;
}