main {
    padding: 0;
    padding-bottom: 90px;
    width: 100vw;
}


.container {
    width: 100%;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    width: 90%;
    transform: translateY(-90px);
}

.content h1 {
    font-size: 75px;
    color: #fff;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 26px;
    color: #fff;
}

.content h3 {
    margin-top: 5px;
    font-size: 20px;
    color: #fff;
}
.background-clip {
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
    filter: contrast(1.2) brightness(35%);
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }

}

@media (max-aspect-ratio:16/9) {
    .background-clip {
        height: 100%;
        width: auto;
    }
}




@media (max-width: 800px) {
    .background-clip {
        top: 0;
        width: 100vw;
        height: auto;
        aspect-ratio: 16/9;
    }
    .container {
        position: relative;
        padding: 0;
        width: 100vw;
    }
    .content {
        transform: translateY(0px);
    }
    .content h1 {
       font-size: 40px;
    }
    .content h2 {
        font-size: 15px;
    }
    .content h3 {
        font-size: 13px;
    }
}


.img {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-flow: row;
    align-items: start;
    gap: 10px;
    justify-items: center;
}

.strelnice_img, .T_a_T_img {
    display: block;
    max-height: 70vh;
    max-width: 100%;
    height: auto;
}



.video-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

#sestrih_vid {
    height: 80vh;
    aspect-ratio: 30/53 !important;
    object-fit: cover;
    width: auto;
    max-width: 100%;
    margin: auto;
    display: block;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111111b3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, transform .4s, scale .5s;
    cursor: pointer;
    z-index: 10;
}

.play-btn svg {
    width: 40px;
    height: 40px;
}

.sections {
    width: 80vw;
    margin: 0 auto;
    padding: 5px;
}

.sections h1 {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
}
.sections h1::before {
    content: "";
    position: absolute;
    display: block;
    top: 55px;
    width: 80px;
    height: 5px;
    background-color: var(--main-color);
}
@media (max-width: 800px) {
    .sections h1 {
        font-size: 40px;
    }
    .sections h1::before {
        top: 45px;
        width: 50px;
    }
}







.animated-on-scroll {
    opacity: 0;
}

.fade-in {
    -webkit-animation: fade-in 1.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in 1.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    transform: translateY(100px);
}

 @-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
}