@font-face{
    font-family: "Jost";
    src: url("/static/fonts/Jost-VariableFont_wght.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    background-color:#000;
    font-family: "Jost";
}

.main-container {
    padding-top:53px;
}

/*
img {
    max-width:100%;
    min-width:100%;
    height:auto;
    object-fit: cover;
}*/

.main-container {
    width:1366px;
   /* height:768px;
    overflow:hidden;*/
    margin:auto;
}

.navigation {
    width:258px;
    /*background-color:#cecece!important;*/
    height:100%;
    float:left;
}



#fullscreen-video {
    position: relative;
    height: 100vh;
}

.fullscreen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content img {
    width:unset;
    height:unset;
    object-fit: cover;
}

#fullscreen-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.content {

    width:90%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin-top:5%;
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    text-align: center;
    color: #fff;
    z-index: 4;
}

#slide-2 {
    position: relative;
    height: 100vh;
    background-color: #333;

}

#slide-2 .bgcontent{
    width:100%;
    height:100%;
    margin:0;
    background-image: url('../images/about_us-bg.webp');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    z-index: 3;
}

#slide-2 .bgcontent .wrapper {
    width:90%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin-top:5%;
}

#slide-2 .right-container {
    background-color:#fff;
    width:100%;
    min-height: 100vh;
    padding-top:10%;
    padding-left:10%;
    padding-right:10%;
    text-align: justify;
}

#slide-2 .right-container p {
    margin-bottom:20px;
}


#slide-2 .right-container img {
    width:160px;
    margin-left:60px;
    margin-bottom:60px;
}

#slide-2 .artistbanner {
    width: 467px;
    max-width: 467px;
    height:576px;
    font: normal normal bold 220px/173px Jost;
    float:right;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    overflow-wrap: break-word;


}

#slide-2 .pagecontent .wrapper {


}

/*
#slide-2 .content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
*/

button {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
    color: #fff;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.animated-nav {
    width:100%;
    z-index: 3;
    position: absolute;
    bottom: 80px;
}

.animated-nav svg {
    stroke:#fff;
}

.sticky-footer {
    width:90%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 20px;
    z-index:3;
    color: #fff;
    font-size:12px;
}

.wrapper {
    display: flex;
}

.left-container {
    margin-right: auto;
}

.right-container {
    margin-left: auto;
}

/* Define animation */
@keyframes example {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* Apply animation to SVG elements */
/*#svg_1, #svg_2, #svg_4, #svg_5, #svg_6, #svg_7, #svg_8, #svg_9, #svg_10 {*/
#svg_1, #svg_2, #svg_4 , #svg_5, #svg_6, #svg_7, #svg_8, #svg_9, #svg_10,  #svg_11{
    animation-name: example;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}