.intro{
    height: 90vh;
    overflow: hidden;
    position: relative;
    background-color: black;
}

.intro:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.intro-video-waterfall{
    position: relative;
}

.intro-video-waterfall-self{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.intro-information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.intro-title{
    margin: 0;
    font-size: 45px;
    color: #fff;
    text-align: center;

    margin-left: 200px;
    margin-right: 200px;
}

.intro-container{
    max-width: 1200px;
    margin: 0 auto;
}

.intro-author{
    color: white;
    position: absolute;
    right: 50px;
    bottom: 50px;
}




.news{
    width: 100%;
}

.news h1{
    display: flex;
    justify-content: center;
    font-size: 30px;
}
.news-item{
    display: flex;
    gap: 50px;
    margin-top: 25px;
    position: relative;
}


.news-photo{
    width: 100%;
    height: 500px;
     object-fit: cover; 
    border-radius: 15px;
    transform: scaleX(1);
}


.news-text{
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: black;
    border: solid 10px black;
    border-radius: 10px;

    & *{
        &::selection{
            color: black;
            background-color: white;
        }
    }
}

.info-news{
    margin-bottom: 20px;
}

.link-of-news{
    font-style: italic;
    color: white
}
.link-of-news:hover{
    text-decoration: underline;
}

.button-news-previous{
    width: 75px;
    height: 75px;
    position: absolute;
    left: 10px;
    top: calc(50% - 75px/2);
}

.button-news-next{
    width: 75px;
    height: 75px;
    position: absolute;
    transform: scaleX(-1);
    right: 10px;
    top: calc(50% - 75px/2);
}

.button-news{
    cursor: pointer;
    filter: brightness(1.0);
    transition: .25s ease;
}

.button-news img{
    width: 100%;
    height: 100%;
}
.button-news:active{
    filter: brightness(0.5);
}



.information{
    margin-bottom: 30px;
}

.title{
    display: flex;
    justify-content: center;
    font-size: 30px;
}

.main-content{
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    gap: 100px;
}

.content-1{
    margin-top: 25px;
    display: flex;
}

.text-1-information{
    margin-left: 50px;
}

.title-1-information{
    margin-bottom: 10px;
}



.content-1-waterfall{
    width: 700px;
    border-radius: 15px;
    transform: scaleX(1);
    transition: all .25s ease;
}

.content-1-waterfall:hover{
    transition: all .25s easy;
    transform: scale(1.05);
}

.content-1-author{
    font-style: italic;
}
.content-1-author a{
    text-decoration: underline;
}

.content-2{
    margin-top: 50px;

    display: flex;
}

.content-2 img{
    width: 450px;
    height: 450px;
    border-radius: 15px;
    transition: all .25s ease;
    transform: scale(1.0);
}
.content-2 img:hover{
    transition: all .25s easy;
    transform: scale(1.05);
}

.text-2{
    margin-right: 30px;
}

.title-2-information{
    margin-bottom: 10px;
}

.main-information-2{
    margin-bottom: 5px;
}


.page-video-water{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.list-video-water{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.list-two-video{
    padding-top: 10px;
    padding-bottom: 10px;
}

.video-about-water{
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 30px;

    transition: all .5s ease;
    transform: scale(1);
}
.video-about-water:hover{
    transition: all .5s ease;
    transform: scale(1.05);
}