@charset "UTF-8";
@font-face {
    font-family: "FielmannSans-Bold";
    src: url("./fonts/FielmannSans-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optional but recommended */
}
@font-face {
    font-family: "FielmannSans-Regular";
    src: url("./fonts/FielmannSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optional but recommended */
}
body {
    vertical-align: baseline;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
}
:focus {
    outline: none;
}
::-moz-focus-inner {
    border: 0;
}
#main-container {
    width: 300px;
    height: 600px;
    box-sizing: border-box;
    border: 1px solid #000;
    top: 0;
    position: absolute;
    left: 0;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
}
.slider-container {
    top: 50px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.slider {
    height: 450px;
    position: absolute;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    will-change: transform, opacity;
    flex-direction: column;
    width: 100%;
    transform: translate(0px, -457px);
}
.slide {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    will-change: transform, opacity;
}
.active {
    width: 270px;
    height: 450px;
}
.inactive {
    width: 270px;
    height: 450px;
}
.video-container {
    width: 100%;
    height: 330px;
    position: relative;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text1 {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    font-family: "FielmannSans-Bold", sans-serif;
    font-weight: bold;
    line-height: 27px;
}
.text2 {
    font-family: "FielmannSans-Regular", sans-serif;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    padding-top: 7px;
    line-height: 14px;
    max-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
.slides-content {
    margin: 10px 0px;
    transition: opacity 0.2s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    position: relative;
    height: 120px;
}
.slides-content.visible {
    opacity: 1;
    transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(0px);
}
.logo {
    position: absolute;
    width: 115px;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    height: 32px;
    pointer-events: none;
}
.logo img {
    max-width: 100px;
    margin: auto;
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
}
.banner-click {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: #030304;
    transition: width 0.1s linear;
}
.scroll-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 50px;
    height: 30px;
    z-index: 20000;
}
.arrow-down {
    width: 20px;
    height: 20px;
}
.arrow-down img {
    width: 100%;
}
.bottom-hotpsot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}
/* LOTTIE PLAYER */
.lottie-container {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 8%;
    z-index: 100;
    pointer-events: none;
    transform: translateY(-50%);
    opacity: 0;
}
.lottie-container-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000; /* Circle background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}
dotlottie-player {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    left: 0;
    right: 0;
    position: relative;
    margin: auto;
    top: -12%;
}
.lottie-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: white;
    text-align: center;
    pointer-events: none;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}
