@import url(../CSS/header.css);
@import url(../CSS/footer.css);
@import url(../CSS/slider.css);
@import url(../CSS/h-index.css);

body {
    margin: 0 auto;
    background: #D9D9D9;
}

.last-news {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.last-news h2 {
    margin-bottom: 40px;
}
main, .last-videos, .last-foto{
    margin: 40px 0;
    text-align: center;
}
.last-videos {
    iframe {
        padding: 10px;
        border-radius: 22px;
    }
}

.galery {
    display: flex;
    justify-content: center;
    img {
        width: 250px;
        height: 150px;
        margin: 5px;
        border-radius: 16px;
        &:nth-child(2), &:nth-child(6) {
            width: 105px;
        }
    }

}

/* publication section styles  */
.publication{
    margin: 0 auto;
    padding: 16px 30px;
	width: 1300px;
}

.publication-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
	margin-bottom: 30px;
}
.publication-head h2{
    color: #000;
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font-family);
	margin-top: 50px;
	width: 800px;
}
.publication-head a{
    text-decoration: none;
    color: #000;
    font-family: var(--font-family);
}
.publication-head small{
    color: #000;
    font-weight: 600;
    font-family: var(--font-family);
}
.other-publish{
    display: flex;
    justify-content: space-between;
	margin-top: 25px;
}
.other{
    border-radius: 15px;
    width: 250px;
    height: 40px;
    background: #fff;
    cursor: pointer;
    border: none;
    transition: 0.4s;

    &:hover{
        background: #000;
        color: #fff;
    }
}
.clip-text, .title {
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}