.header,.footer{
    position:relative;
    width:100%;
    z-index:9;
}
.fullContainer{
    position:relative;
    width:100%;
}
@media (max-width:900px){
    .centerContainer{
        position:relative;
        margin:0px auto;
        width:95%;
    }
}
@media (min-width:900px){
    .centerContainer{
        position:relative;
        margin:0px auto;
        width:95%;
    }
}

/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/***Header & Footer***/

.header{
    position:relative;
    padding:15px 0px;
}

.header .logo{
    float:left;
}
.header .menu{
    float:right;
}
.header .lang{
    float:right;
}

.footer{
    position:relative;
    padding:40px 0px;
}

/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/***Collection***/

.collection{
    padding:40px 2.5%;
    overflow:hidden;
}

.collectionWithBorder{
    position:relative;
    width:100%;
    box-shadow: 0px 0px 1px 2px rgba(128, 128, 128, 0.3);
}

.collection .description,.collection .viewAll{
    width:100%;
}


@media(min-width:900px){
    .collection .titleDescription{
        float:left;
        width:48.5%;
    }  
    .collection .viewAll{
        float:right;
        text-align:right;
        width:48.5%;
    }   
}

.collection .featured_entry_mobile{
    position:relative;
}

.collection .featured_entry_mobile .description{
    width:100%;
    padding:25px 15px 15px 15px;
}
.collection .featured_entry_mobile .description .title_or_labels .label{
    float:left;
    margin-right:10px;
    padding:2px 10px;
    color:#000;
    background:#FFF;
}

.collection .featured_entry{
    display: flex;
    align-items: stretch; /* ensures equal height */
}
.collection .featured_entry .featured_info{
    width:50%;
    padding:15px;
}
.collection .featured_entry .featured_image{
    width:50%;
}
.collection .featured_entry .featured_image img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills area nicely */
    display: block;
}
.collection .featured_title_view_all{
    position:absolute;
    top:0px;
    left:0px;
    width:25%;
}

@media(max-width:900px){
    .collection .entries .entry{
        width:100% !important;
        margin-bottom:20px;
    }
}
@media(min-width:900px){
    .collection .entries .entry{
        float:left;
        width:23.5%;
        height:auto;
        margin-right:2%;
        margin-top:2%;
    }
    .collection .entries .entry:nth-child(4n){
        margin-right:0px !important;
    }
}

.collection .entries .entry .description {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    z-index:999;
    padding:15px;
    background:rgba(0,0,0,0.1);
}

.collection .entries .entry .description .title_or_labels , .collection .featured_entry .featured_info .title_or_labels{
    position:absolute;
}
.collection .entries .entry .description .title_or_labels .label , .collection .featured_entry .featured_info .title_or_labels .label{
    float:left;
    margin-right:10px;
    padding:2px 10px;
    color:#000;
    background:#FFF;
}


.collection .swiper-button-prev::after, .collection .swiper-button-next::after {
  display: none; /* hide Swiper’s default icons */
}
.collection .swiper-button-prev, .collection .swiper-button-next {
    position: absolute;
    bottom: 0px;      
    right:0.5%;  
    width: 14px;    
    height: 28px;
    z-index: 10;
    background:url("../images/arrow-right.png") center no-repeat;
    background-size: 14px 28px;
}

/* Position prev button to the left of next button */
.collection .swiper-button-prev {
    left: calc( 99.5% - 40px) !important;
    background:url("../images/arrow-left.png") center no-repeat;
    background-size: 14px 28px;
}


/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/***Section***/

.section{
    padding:40px 2.5%;
    overflow:hidden;
}

.sectionWithBorder{
    position:relative;
    width:100%;
    box-shadow: 0px 0px 1px 2px rgba(128, 128, 128, 0.3);
}

.section .verticalLine{
    position:absolute;
    top:5px;
    left:31px;
    width:2px;
    height:calc(100% - 30px);
    background:#000;
    z-index:999;
}
@media(max-width:900px){
    .section .verticalLine{
        display: none !important;
    }
}
.section .accordionTitle{
    float:left;
    width:calc(100% - 60px);
}
.section .accordionArrow{
    float:right;
    width:30px;
}

.section .coutdown{
    padding:20px 0px;
}

/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/***Timeline***/

.timeline-percentages-wrapper {
    position: relative;
}
.percentage-column {
    position: relative;
}
.percentage-column.d-none {
    display: none !important;
}
.percentage-text {
    transition: transform 0.9s ease-out, opacity 0.9s ease-out;
    will-change: transform, opacity;
    transform: translateY(120px);
    opacity: 0;
}
.percentage-text.slide-up-start {
    transform: translateY(120px) !important;
    opacity: 0 !important;
}
.percentage-text.slide-up-end {
    transform: translateY(0) !important;
    opacity: 1 !important;
}
.diamond-percentage rect {
    transition: fill 0.3s ease-out;
}
.diamonds-grid {
    display: inline-block;
}
.diamond-wrapper {
    position: relative;
    display: inline-block;
    width: 10%;
}
.diamond-percentage {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-out;
}
.percentage-column.exiting .diamond-percentage {
    opacity: 0;
}
.percentage-column.entering .diamond-percentage {
    opacity: 0;
}
.percentage-column.active .diamond-percentage {
    opacity: 1;
}


/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/***General***/

.labels {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically (optional) */
    gap: 10px;               /* space between divs */
}

.label{
    padding:5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#000;
    background:#f2f2f2;
}