@font-face {
    font-family: 'OtoiwoBlack';
    src: url('fonts/OtoiwoGroteskCompressed-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'OtoiwoSemBd';
    src: url('fonts/OtoiwoGroteskCondensed-SemBd.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'OtoiwoSemBd', Arial, sans-serif;
    background: #f5f5f5;
    overflow: hidden;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.slider-header {
    background: #000;
    color: white;
    text-align: center;
    padding: 3vh 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
}

.slider-header h1 {
    font-family: 'OtoiwoBlack', Arial, sans-serif;
    font-size: 4vh;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    margin-top: 8vh;
    margin-bottom: 0;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
}

.slide {
    min-width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 8vw;
    background: #f5f5f5;
}

.slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
    width: 100%;
    margin-bottom: 4vh;
}

.slide-image .slide-image-item {
    width: auto;
    height: 70vh;
}

.slide-image .slide-image-item.with-second-image {
    margin-right: 15vw;
}

.slide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 60vw;
}

.slide-title {
    font-family: 'OtoiwoSemBd', Arial, sans-serif;
    font-size: 3vh;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 0.5vh;
    text-transform: uppercase;
}


.slider-controls {
    position: fixed;
    bottom: 4vh;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 6vw;
    z-index: 100;
    pointer-events: none;
}

.slider-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider-nav img {
    width: 35px;
    height: 69px;
    display: block;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled img {
    opacity: 0.3;
}