.NewsContainer{
    display: flex;
    flex-direction: column;
    margin: 150px 5% 0% 5%;
}
.news-header {
    display: flex;
    margin: 0px;
    flex-direction: column;
}
.news-date{
    margin: 0px;
}
.news-img{
    width: 100%;
    right: 10px;
    top: 10px;
}
.news-title{
    text-transform: uppercase;
    text-align: left;
    font-size: 2vmax;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 15px;
}
.news-header-title-cont{
    display: flex;
    flex-direction: column;
}
.news-textFull{
    font-size: 1.8vmax;
    text-align: justify;
    margin: 15px 0px 45px 0px;
}
.news-textFull a{
    text-decoration: underline;
}
.news-divider{
    display:flex;
    flex-direction: column;
}
.news-otherInfo{
    display:flex;
    flex-direction: column;
    border-top: 1px solid #B40155;
}
.news-contacts{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 45px;
}
.similar-news{
    margin: 45px 0px 0px 0px;
}
.similar-news-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.similar-news-title{
    padding: 0px;
    margin: 0px;
}
.similar-news-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}
.similar-news-img{
    width: 40%;
    max-height: 200px;
    object-fit: contain;
    object-position: top;
}
@media (orientation: landscape){
    .footerImg{
        width: 10%;
    }
    .news-contacts{
        margin-top: 30px;
    }
    .similar-news {
        margin: 20px 0px 0px 0px;
        font-size: 1.3vmax;
    }
    .news-left{
        width: 75%;
    }
    .news-header {
        flex-direction: row-reverse;
    }
    .news-header-title-cont{
        width: 60%;
        padding-left: 30px;
    }
    .news-img{
        height: 100%;
        width: 40%;
        object-fit: contain;
        object-position: top;
    }
    .news-textFull{
        margin: 30px 0px 45px 0px;
    }
    .news-otherInfo{
        width: 25%;
    }
    .news-divider{
        margin-top: 15px;
        flex-direction: row;
        gap: 45px;
        align-items: flex-start;
    }
    .news-otherInfo{
        border-top: none;
        border-left: 1px solid #B40155;
        padding: 0px 0px 0px 45px;
        position: sticky;
        top: 150px;
    }
    .similar-news-title{
        font-size: 1.1vmax;
    }
}

@media (orientation: landscape) and (min-width: 1200px){
	.news-date{
        font-size: 1.3vmax;
    }
    .news-title{
        font-size: 1.7vmax;
    }
    .news-textFull{
        font-size: 1.5vmax;
    }

}