section.expert {
    padding: 0 !important;
}

section.expert .expert-left {
    width: 30%;
}

section.expert .expert-right {
    width: 70%;
}

section.expert .expert-content {
    font-weight: 300;
    line-height: 130%;
    font-size: 20px;
    margin-top: 20px;
}

.mySwiper img {
    width: 300px;
    height: 500px;
}
.slide-block {
    position: relative;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    perspective: 1000px;
    padding:0 2rem;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 55%;
    height: 500px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transform-origin: center center;
    transform: translateY(-50%) translateX(-100%) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.position-1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
    left: 0;
    z-index: 8;
}

.slide.position-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(20%) scale(0.9);
    left: 2%;
    z-index: 7;
}

.slide.position-3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(30%) scale(0.8);
    left: 10%;
    z-index: 6;
}

.slide.position-4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(40%) scale(0.65);
    left: 15%;
    z-index: 5;
}
.slide.position-5 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(40%) scale(0.5);
    left: 25%;
    z-index: 4;
}
.slide.position-6 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(40%) scale(0.45);
    left: 30%;
    z-index: 3;
}
.slide.position-7 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(40%) scale(0.4);
    left: 35%;
    z-index: 2;
}
.slide.position-8 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(40%) scale(0.35);
    left: 40%;
    z-index: 1;
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    text-align: left;
    color: #333;
    z-index: 5;
    max-width: 500px;
}

.info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: nowrap;          
    overflow: hidden;             
    text-overflow: ellipsis;      
}

.info p {
    font-size: 18px;
    opacity: 0.9;
}
html {
    scroll-behavior: smooth;
}

section[id^="country_"] {
    padding-top: 80px;
    margin-top: -80px;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

#vertical-menu:not(.hidden) {
    animation: slide-in 0.3s ease-in-out;
}

#vertical-menu.hidden {
    animation: slide-out 0.3s ease-in-out;
}

.opening,
.opening p,
.opening span,
.opening strong {
    color: #4a5568 !important
}

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #4a5568;
    z-index: 10;
}

.swiper-button-next {
    right: -60px;
}

.swiper-button-prev {
    left: -60px;
}
@keyframes sponsors-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee {
    animation: sponsors-marquee 35s linear infinite;
    animation-play-state: running;
}

.marquee:hover {
    animation-play-state: running !important;
}

.pause .marquee {
    animation-play-state: paused !important;
}