@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");

.no-scroll {
    overflow: hidden;
}

* {
    /*padding: 0;*/
    margin: 0;
    box-sizing: border-box;
}

*::after, *::before {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    font-size: 14px;
    text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

.container {
    padding: 0 15px;
}

@media (min-width: 575.98px) {
    .container {
        max-width: 540px;
        margin: auto;
        padding: 0;
    }
}

@media (min-width: 767.98px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 991.98px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1199.98px) {
    .container {
        max-width: 1140px;
    }
}

.ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.ibg img {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.header {
    font-family: "Roboto", sans-serif;
    background-color: #4547a1;
}

.header__wrapper {
    padding: 15px 0;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 3px solid #2e2f75;
}

.header__logo {
    display: flex;
    align-items: center;
    width: 500px;
}

@media (max-width: 991.98px) {
    .header__logo {
        width: 80%;
    }
}

@media (max-width: 991.98px) {
    .header__logo {
        justify-content: center;
        padding-left: 10px;
    }
}

.header__logo--img {
    width: 70px;
}

.header__logo--img img {
    width: 100%;
}

.header__logo--title {
    border-left: 2px solid #fff;
    font-size: 1.5rem;
    padding: 0 0 0 10px;
    margin-left: 10px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .header__logo--title {
        font-size: 1rem;
    }
}

.header__rnav {
    width: 230px;
}

@media (max-width: 991.98px) {
    .header__rnav {
        display: none;
    }
}

.header__lang {
    display: flex;
    justify-content: flex-end;
}

.header__lang-item {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    padding: 0 10px;
    margin: 0 5px;
    text-transform: uppercase;
}

.header__lang-item a {
    color: #fff;
}

.header__lang-item:nth-child(2) {
    margin: 0 0px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.header__auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.header__auth-item:first-child {
    margin-right: 20px;
}

.header__auth-item {
    font-size: 1rem;
}

.header__auth-item a {
    color: #fff;
}

.header__mobile-btn {
    display: none;
}

@media (max-width: 991.98px) {
    .header__mobile-btn {
        display: block;
        font-size: 2rem;
        margin-right: 10px;
        color: #fff;
        cursor: pointer;
    }
}

.header__bot {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 991.98px) {
    .header__bot {
        display: none;
        margin: 0;
    }
}

.header__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__navigation-item {
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 15px;
    position: relative;
}

@media (max-width: 1199.98px) {
    .header__navigation-item {
        font-size: 0.8rem;
    }
}

.header__navigation-link {
    display: block;
    color: #fff;
    transition: all 0.3s;
    transform: translateY(0);
}

.header__navigation-link:hover {
    color: #7a7a7a;
    transform: translateY(-1px);
}

.header__submenu {
    background-color: #2e2f75;
    padding: 5px 15px;
    display: none;
    position: absolute;
    left: -10px;
    width: 200px;
}

.header__submenu-item {
    margin: 15px 0;
}

.header__submenu-link {
    color: #fff;
}

.header__navigation-item:hover .header__submenu {
    display: block;
}

.header__search input {
    background-color: #2e2f75;
    padding: 10px 15px;
    color: #fff;
}

.header__search input::placeholder {
    color: #fff;
}

.header__search input::after {
    border: 1px solid red;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    content: "HI";
}

.mobile-menu {
    font-family: "Roboto", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2e2f75;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: none;
    overflow-y: auto;
}

@media (max-width: 991.98px) {
    .mobile-menu {
        display: block;
        transform: translateX(-120%);
        transition: all 0.3s;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }
}

.mobile-menu__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: 2px solid #4547a1;
    padding: 20px 0;
}

.mobile-menu__header-auth {
    font-size: 1.2rem;
}

.mobile-menu__header-auth a {
    display: block;
    color: #fff;
    transition: all 0.3s;
}

.mobile-menu__header-auth a:hover {
    color: #5254c9;
}

.mobile-menu__header-auth button {
    font-size: 1.5rem;
    padding: 0px 10px;
    background-color: #4547a1;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    padding-top: 2px;
    margin-left: 10px;
}

.mobile-menu__list {
    margin-top: 30px;
}

.mobile-menu__list-item a {
    display: block;
    color: #fff;
    border-bottom: 2px solid #4547a1;
    padding: 10px 10px;
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu__list-item a:hover {
    padding: 10px 20px;
}

.mobile-menu__list-item span {
    display: block;
    color: #fff;
    border-bottom: 2px solid #4547a1;
    padding: 10px 10px;
    margin: 5px 0;
    cursor: pointer;
}

.home {
    font-family: "Roboto", sans-serif;
}

.home__about-journal {
    border-radius: 20px;
    background-color: #4547a1;
    margin: 50px 0;
    padding: 30px;
}

@media (max-width: 991.98px) {
    .home__about-journal {
        padding: 10px;
        margin: 20px 0;
    }
}

.home__journal-img {
    text-align: center;
}

@media (max-width: 991.98px) {
    .home__journal-img {
        padding: 10px;
    }
}

.home__journal-img img {
    width: 400px;
}

@media (max-width: 991.98px) {
    .home__journal-img img {
        width: 100%;
    }
}

.home__about-content {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
}

@media (max-width: 991.98px) {
    .home__about-content {
        font-size: 0.9rem;
    }
}

.home__about-content p {
    margin: 10px 0;
}

.home__about-content a {
    color: #2fa0df;
}

.home__content {
    font-size: 1.3rem;
}

@media (max-width: 991.98px) {
    .home__content {
        font-size: 1.1rem;
    }
}

.home__content a {
    color: #2fa0df;
}

.home__content a:visited {
    color: #2fa0df;
}

.footer {
    font-family: "Roboto", sans-serif;
    background-color: #4547a1;
    margin-top: 50px;
    padding: 20px 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media (max-width: 991.98px) {
    .footer__wrapper {
        flex-wrap: wrap;
    }
}

.footer__inf {
    border-right: 5px solid #fff;
}

@media (max-width: 991.98px) {
    .footer__inf {
        border: none;
    }
}

.footer__logo {
    width: 700px;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .footer__logo {
        width: 100%;
    }
}

.footer__logo img {
    width: 100px;
}

@media (max-width: 991.98px) {
    .footer__logo img {
        width: 50px;
    }
}

.footer__logo span {
    display: block;
    border-left: 5px solid #fff;
    margin-left: 10px;
    padding-left: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 991.98px) {
    .footer__logo span {
        font-size: 0.9rem;
        border-left: 2px solid #fff;
        margin-left: 5px;
        padding-left: 5px;
    }
}

.footer__visits {
    width: 500px;
    margin-top: 30px;
    border: 2px solid #fff;
    border-radius: 10px;
}

.footer__visits a {
    display: block;
    width: 100%;
}

.footer__visits a img {
    width: 100%;
}

@media (max-width: 991.98px) {
    .footer__visits {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .footer__menu {
        width: 100%;
        margin-top: 30px;
    }
}

.footer__menu-item {
    margin: 15px 0;
    font-size: 1.2rem;
}

@media (max-width: 991.98px) {
    .footer__menu-item {
        font-size: 1rem;
    }
}

.footer__menu-link {
    color: #fff;
    font-weight: 700;
}

.release {
    font-family: "Roboto", sans-serif;
    margin: 50px 0;
}

.release__heading {
    border-bottom: 3px solid #4547a1;
    padding: 10px 5px;
}

.release__heading h1 {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
    color: #4547a1;
}

.release__card {
    background-color: #4547a1;
    border-radius: 20px;
    margin-top: 30px;
    display: flex;
}

@media (max-width: 991.98px) {
    .release__card {
        flex-wrap: wrap;
    }
}

.release__card-img {
    padding: 20px;
}

@media (max-width: 991.98px) {
    .release__card-img {
        text-align: center;
        width: 100%;
    }
}

.release__card-img img {
    width: 200px;
}

.release__card-about {
    width: 100%;
}

.release__about-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 3px solid #2e2f75;
    padding: 20px 0px 10px 5px;
    margin-right: 20px;
}

@media (max-width: 991.98px) {
    .release__about-title {
        font-size: 1.1rem;
        padding: 10px 10px;
        margin: 0 10px;
        text-align: center;
    }
}

.release__about-inf {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991.98px) {
    .release__about-inf {
        flex-wrap: wrap;
    }
}

.release__about-description {
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 991.98px) {
    .release__about-description {
        width: 100%;
        text-align: center;
    }
}

.release__about-description p {
    margin: 20px 0;
}

@media (max-width: 991.98px) {
    .release__about-description p {
        margin: 10px 0;
    }
}

.release__about-link {
    padding: 20px 15px;
    font-size: 1.5rem;
    background-color: #2e2f75;
    border-radius: 0px 0px 0px 15px;
}

@media (max-width: 991.98px) {
    .release__about-link {
        border-radius: 10px;
        margin: 0 auto;
        margin-bottom: 20px;
        font-size: 1.2rem;
        padding: 10px 15px;
        margin-top: 20px;
    }
}

.release__about-link a {
    color: #fff;
    transition: all 0.3s;
}

.release__about-link a:hover {
    color: #4547a1;
}

.archive {
    font-family: "Roboto", sans-serif;
    margin: 50px 0;
}

.archive__heading {
    border-bottom: 3px solid #4547a1;
    padding: 10px 5px;
}

.archive__heading span {
    font-weight: 700;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4547a1;
}

.archive__item {
    display: flex;
    align-items: center;
    background-color: #4547a1;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

@media (max-width: 991.98px) {
    .archive__item {
        flex-wrap: wrap;
    }
}

.archive__item-img {
    margin-right: 20px;
}

@media (max-width: 991.98px) {
    .archive__item-img {
        text-align: center;
        width: 100%;
    }
}

.archive__item-img img {
    width: 120px;
}

.archive__item-inf {
    width: 100%;
}

.archive__item-heading {
    border-bottom: 3px solid #2e2f75;
    padding: 10px 5px;
}

@media (max-width: 991.98px) {
    .archive__item-heading {
        text-align: center;
    }
}

.archive__item-heading span {
    font-weight: 700;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 991.98px) {
    .archive__item-heading span {
        font-size: 1rem;
        text-align: center;
    }
}

.archive__item-description {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 991.98px) {
    .archive__item-description {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.archive__item-about {
    margin-top: 10px;
    color: #fff;
}

@media (max-width: 991.98px) {
    .archive__item-about {
        font-size: 0.9rem;
        text-align: center;
    }
}

.archive__item-about p {
    margin: 5px 0;
}

.archive__item-link a {
    display: block;
    padding: 15px 20px;
    font-size: 1.2rem;
    background-color: #2e2f75;
    border: 1px solid #2e2f75;
    color: #fff;
    transition: all 0.3s;
}

@media (max-width: 991.98px) {
    .archive__item-link a {
        font-size: 1rem;
        padding: 10px 15px;
        margin-top: 10px;
    }
}

.archive__item-link a:hover {
    border: 1px solid #fff;
}

.pagination {
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .pagination {
        flex-wrap: wrap;
    }
}

.pagination__item {
    margin: 0 10px;
}

@media (max-width: 991.98px) {
    .pagination__item {
        margin: 0 5px;
    }
}

.pagination__item:first-child {
    margin-left: 0;
}

.pagination__item:last-child {
    margin-right: 0;
}

.pagination__link {
    display: block;
    padding: 6px 10px 5px 10px;
    border-radius: 3px;
    border: 2px solid #2e2f75;
}

.pagination__link--active {
    display: block;
    padding: 6px 10px 5px 10px;
    border-radius: 3px;
    border: 2px solid #2e2f75;
    background-color: #4547a1;
    color: #fff;
    cursor: not-allowed;
}

.page-heading {
    font-family: "Roboto", sans-serif;
    border-bottom: 3px solid #4547a1;
    padding: 10px 5px;
    margin: 50px 0 30px 0;
}

.page-heading h1 {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
    color: #4547a1;
}

.page-content {
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
}

.page-content a:visited, .page-content a {
    color: #2fa0df;
}
