#hero-section {
    background-color: rgba(0, 0, 0, 0);
}

#history {
    min-height: 100vh;
    padding: 64px 64px 64px 64px;
}

.experience-container {
    display: grid;
    grid-template-columns: 47fr 53fr;
    gap: 20px;
}
.experience-container-reverse {
    display: grid;
    grid-template-columns: 52fr 48fr;
    gap: 20px;
}

.fade-in-experience {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-experience.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
}

.slide {
    display: none;
    width: 100%;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* Navigation dots */
.dots {

}

.dot {
    cursor: pointer;
    height: 16px;
    width: 16px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active-dot {
    background-color: #717171;
}

.history-card {
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    color: white;
}

#map-stat-section {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 32px;
}

.our-value-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    position: relative;
    color: white;
}

.word-of-leaders-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    position: relative;
    color: white;
}

.experience-year-container {
    /*background-image: url("../../assets/icons/logo-only-leaf.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 75px;
    padding: 0 18px 0 18px;*/
    width: 100px;
    height: 100px;
    border-radius: 0 80px;
    background: linear-gradient(to right, #FED27B 0%, #E7BC67 26%, #FED279 66%, #E4B864 100%);
    transform: rotate(90deg);
    text-align: center;
}

.year-text {
    transform: rotate(270deg);
}

.circle {
    background-color: white;
    width: 16px;
    height: 32px;
}

.half-circle-left {
    border-bottom-left-radius: 64px;
    border-top-left-radius: 64px;
}

.half-circle-right {
    border-bottom-right-radius: 64px;
    border-top-right-radius: 64px;
}

.time-line-vertical-separator {
    position: absolute;
    border-radius: 8px;
    background: linear-gradient(to right, #e4bb74 0%, #dab262 26%, #c8a55e 66%, #ba954e 100%);;
    background-size: 400% 400%;
    animation: time-line-vertical-separator-gradient 2s ease infinite;
    width: 10px;
}

@keyframes time-line-vertical-separator-gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
