#slider {
    width: 100%;
    height: calc(100vh - 250px);
    position: relative;
    bottom: 0px;
    margin-top: 0px;
    overflow: hidden;
    scrollbar-width: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    border-block: 1px solid rgba(255, 255, 255, 0.075);
}
.slide_link{
    width: 60px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 2px solid rgb(var(--accent-color));
    background: rgb(var(--main-color));
    border-radius: 5px 5px 5px 5px;
    text-decoration: none;
}
.slide_link:hover{
background: rgb(var(--secondary-color));
}
.slide_a{
    color: rgb(var(--accent-color));
    font-size: 24px;
    text-decoration: none;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.controller{
    position: absolute;
    width: 150px;
    height: 46px;
    border-radius: 42px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(var(--main-color), 0.25);
    z-index: 9999999;
}
.playBtn {
    width: 42px;
    height: 42px;
    line-height: 40px;
    background-color: rgba(var(--main-color), 0.5);
    color: rgb(var(--text-color-2));
    border: solid 2px rgb(var(--main-color));
    font-size: 22px;
    text-align: center;
    z-index: 99999999;
    cursor: pointer;
    letter-spacing: 0px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.playBtn:hover{
    background-color: rgb(var(--main-color));
}
#arrowUp {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: rgba(var(--main-color), 0.5);
    color: rgb(var(--text-color-2));
    border: solid 2px rgb(var(--main-color));
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#arrowUp:hover {
    background-color: rgb(var(--main-color));
}

#arrowDown {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: rgba(var(--main-color), 0.5);
    color: rgb(var(--text-color-2));
    border: solid 2px rgb(var(--main-color));
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#arrowDown:hover {
    background-color: rgb(var(--main-color));
}



.left {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
    padding: 4px;
    border-radius: 4px;
    background-color: rgb(var(--accent-color));
    box-sizing: border-box;
}


.block {
    padding: 0;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
}

.blocks {
    display: flex;
    flex-direction: row;
    padding: 0px;
    width: auto;
    height: 100%;
    position: absolute;
    top: 0px;
    transition: all 0.4s ease-in-out;
    box-sizing: border-box;
}
.overlayCont{
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top: 0;
}
.overlay {
    width: 75vw;
    height: 60%;
    background-image: #fff;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
    left: 50%;
    top: -10%;
    transform: translate(-50% , 50%);
    z-index: 9999;
    padding: 14px;
    border-radius: 12px;
    overflow: hidden;
}

.title {
    width: 100%;
    min-height: 40px;
    padding-bottom: 8px;
    font-size:xx-large;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid gray;
    box-sizing: border-box;
    text-shadow: 2px 2px #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    color: #000;
    font-size: medium;
    width: 100%;
    height: auto;
    z-index: 9999999;
    padding: 3px;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: bold;
  
}

.leftImg {
    overflow: visible;
    position: relative;
    width: 100%;
    height: 100%;
    background-color:rgb(var(--bg-color));
    display: flex;
    justify-content: center;
}

.leftImg img {
    width: 100%;
    object-position: center;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
}
@media screen and (max-width:600px) {
.overlay{
    width: 90%;
    height: 260px;
    
}
#slider{
    height: 440px;
}

}