* {
    padding: 0;
    margin: 0;
}

:root {
    --white: #fff;
    --blue: #0055cc;
    --dark-blue: #1f2937;
    --gold: #ffc107;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter_18pt-Regular.ttf");
}

body {
    font-family: "Inter";
    font-size: 24px;
    color: var(--dark-blue);
    background-color: var(--white);
}

.container {
    width: calc(100% - 160px);
    padding: 0 80px;
}

.title {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 55px;
}

header {
    height: 80px;
    background-color: var(--blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.logo-link {
    color: var(--white);
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.nav-item:hover {
    border-bottom: var(--white) 1px solid;
}

main {
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.home {
    height: calc(100vh - 80px);
    background-image: url("images/home_background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__content {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home__title {
    font-size: 36px;
}

.home__line {
    margin-top: 10px;
    width: 100%;
    border: none;
    border-bottom: var(--blue) 1px solid;
}

.home__text {
    margin-top: 10px;
    text-align: center;
}

.home__btn {
    margin-top: 40px;
    padding: 16px 55px;
    background-color: var(--blue);
    border: none;
    border-radius: 30px;
    font-size: 24px;
    color: var(--white);
    transition: 0.3s;
    cursor: pointer;
}

.home__btn:hover {
    background-color: #0347a7;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__content {
    width: 85%;
    display: flex;
    gap: 55px;
}

.about__text-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.news {
    padding: 0 60px;
    width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news__slider {
    display: flex;
    gap: 30px;
}

.news__slider-slids {
    display: flex;
    gap: 30px;
}

.news__slider-arrow {
    cursor: pointer;
}

.news__slider-slide {
    display: none;
    flex-direction: column;
}

.news__slider-slide.active {
    display: flex;
}

.news__date {
    margin-top: 19px;
    font-size: 22px;
    color: var(--blue);
}

.news__text {
    width: 90%;
    margin-top: 21px;
}

.publications {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.publications__container {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 66px;
}

.publications__item-line {
    margin-top: 20px;
    width: 100%;
    border: none;
    border-bottom: var(--blue) 1px solid;
}

.publication__item-content {
    margin-top: 20px;
    display: flex;
    gap: 48px;
}

.publication__item-content-text {
    width: 65%;
}

.publications__text {
    margin: 30px 0 20px 0;
}

.publications__link {
    color: var(--blue);
    text-decoration: none;
    border-bottom: var(--blue) 1px solid;
}

footer {
    background-color: var(--blue);
    color: var(--white);
}

.footer__top {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: var(--white) 1px solid;
}

.footer__contacts {
    padding: 40px 0 25px 0;
    width: 100%;
    border-bottom: var(--white) 1px solid;
    display: flex;
    flex-direction: column;
}

.footer__contacts-subtitle {
    margin-top: 15px;
    font-size: 20px;
}

.footer__contact-items {
    margin-top: 20px;
    display: flex;
    gap: 100px;
}

.footer__contact-item {
    font-size: 20px;
}

.footer__contact-title {
    margin-bottom: 10px;
    color: var(--gold);
}

.footer__contact-link {
    color: var(--white);
    text-decoration: none;
    border-bottom: var(--white) 1px solid;
}

.footer__social-media {
    margin-top: 80px;
    display: flex;
    gap: 20px;
    align-self: center;
}

.footer__media-item {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.footer__copyrights {
    padding: 25px 0;
    font-size: 14px;
    text-align: center;
}
