@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #FFFFFF;
    font-weight: 400;
    overflow-x: hidden;
}
.tns-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -65px;
    z-index: 1;
}
@media (max-width:768px) {
    .tns-nav {
        bottom: 15px;
    }
}
.tns-nav button {
    border: 1px solid #3535354D;
    background: #F5F6F4;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
button.tns-nav-active {
    border: 1px solid #3F84F4;
    background: #3F84F4;
}

.tns-prev,
.tns-next {
    transition: opacity 0.3s ease, 0.3s ease;
}
.tns-prev[disabled],
.tns-next[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}