@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: 8vh;
}

.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: 50vh;
}

.slide-image .slide-image-item.with-second-image {
    margin-right: 15vw;
}

.slide-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    max-width: 60vw;
}

.slide-title {
    font-family: 'OtoiwoBlack', Arial, sans-serif;
    font-size: 3vh;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 3vh;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slide-description {
    font-family: 'OtoiwoSemBd', Arial, sans-serif;
    font-size: 2.3vh;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.small-image-container {
    position: absolute;
    bottom: 5vh;
    right: -2vh;
    width: 18vw;
}

.small-image-container .expand-image {
    position: absolute;
    width: 3vw;
    height: auto;
    top: 0.3vh;
    right: 0.3vw;
    pointer-events: none;
}

.slide-small-image {
    width: 18vw;
    height: auto;
    display: block;
}

.small-image-description {
    font-family: 'OtoiwoSemBd', Arial, sans-serif;
    font-size: 1.2vh;
    font-weight: 600;
    color: #000;
    margin-top: 0.5vh;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
}


.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;
}